Page 1 of 1

i7 2600k Integrated Videocard Boot Problem in Ubuntu 18.04

Posted: 15 Jun 2020, 12:25
by anita
Hello!

I've got very strange boot loop on my work PC.
I tried to install Ubuntu 18.04 bionic on my old Intel i7 2600k with internal iGPU (intel hd 3000 graphics) but after installation I've got bootloop problem.

If I install external videocard (for example Nvidia Quadro FX 1800) - everything works fine.

I tried to set nomodeset to grub but no luck.

Regards, Anita.

Re: i7 2600k Integrated Videocard Boot Problem in Ubuntu 18.04

Posted: 16 Jun 2020, 10:21
by roza
Anita, hello!

Use recevery boot record and use console.

Then use the editor like vim and enter next:

Code: Select all

vim /etc/default/grub
Then add two these lines:

Code: Select all

GRUB_CMDLINE_LINUX="3"
GRUB_CMDLINE_LINUX_DEFAULT="quiet i915.modeset=0"
If you don't need any graphical interface you can set this option:

Code: Select all

# Uncomment to disable graphical terminal (grub-pc only)
GRUB_TERMINAL=console

Re: i7 2600k Integrated Videocard Boot Problem in Ubuntu 18.04

Posted: 17 Jun 2020, 09:05
by anita
Roza, thank you very much!

Now everything seems fine!!!