0

I got the screen like this when i start my computer

enter image description here

Even when i add “nomodeset”, i get the same black screen as below Black screen even after nomodeset

enter image description here

I tried to open terminal using ctrl+alt+F1....F11, nothing works! Please help!

OS: Ubuntu 16.04 LTS (64 bit)

Graphics : llvmpipe (LLVM 6.0, 256 bits)

Machine : Dell

Ajay
  • 678
  • 1
    Please give detail OS version, machine, detail of graphics in your system and operation you executed before ths problem occur. – Ajay Jun 10 '20 at 12:40
  • @Ajay I've updated the details – Varshini Jun 10 '20 at 13:27
  • try disable Secure Boot in BIOS and if it not work edit and post output of lspci | grep VGA – Ajay Jun 10 '20 at 13:54
  • @Ajay It does not work after disabling secure boot. Below is the output

    00:02.0 VGA compatible controller: Intel Corporation Skylake GT2 [HD Graphics 520] (rev 07)

    – Varshini Jun 10 '20 at 14:05

1 Answers1

0

Possibly this is the reason as discussed in No version of Ubuntu can be installed with any Skylake 6th generation Intel processor post.

Here is the solution as suggested by Pilot6

Boot with nomodeset boot parameter as it is described in this answer.

You will be able to install Ubuntu. After you do it, the system will probably won't boot again.

You will have to get to grub menu by pressing Shift or ESC button and enter nomodeset again.

Then install 4.3 kernel. It can be done this way. Run in terminal:

mkdir ~/linux-4.3
cd ~/linux-4.3
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.3-wily/linux-headers-4.3.0-040300-generic_4.3.0-040300.201511020949_amd64.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.3-wily/linux-headers-4.3.0-040300_4.3.0-040300.201511020949_all.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.3-wily/linux-image-4.3.0-040300-generic_4.3.0-040300.201511020949_amd64.deb
sudo dpkg -i *.deb

and reboot. I hope the system will boot without the nomodeset parameter.

Notice: The kernel will not get updates. You will need to install them manually from Mainline kernel PPA.

Ajay
  • 678