I have recently installed Ubuntu but could not load it. By searching on Interned I found a solution which works for me but I do not understand it. The solution is taken from here.
In more detail, while I load Ubuntu, I get into a menu which asks me what I want to do. At this point I press e
. After that I get a screen with some text where I replace quiet splash
by nomodeset
and then I press F10
. After that Ubuntu loads.
Now, my questions are:
- What exactly am I doing? Why does it help?
- Can I do something to avoid doing these steps each time I when I wont to load Ubuntu?
Short answers for your questions:
1) The option
nomodeset
means do not load video drivers.2) Install suitable video drivers or read second option of long answer
Long answers:
Source: https://ubuntuforums.org/showthread.php?t=1613132
What do the nomodeset, quiet and splash kernel parameters mean?
2) To find drivers in Ubuntu, open the menu, type Drivers, and select Additional Drivers. Upon opening, the system will run a quick scan. This will find out if your system has hardware that would benefit from having proprietary drivers installed. It is here that you will find proprietary drivers.
Source: https://www.makeuseof.com/tag/install-proprietary-graphics-drivers-ubuntu-fedora-linux/
Second option:
How to permanently set kernel boot options on an installed OS?
Press Ctrl+Alt+T and type:
A text editor will open with the grub configuration file. Near the top of that file you will see something very similar to this:
add your custom boot options to the
GRUB_CMDLINE_LINUX_DEFAULT
line, so for instance:Then do update your grub:
Enjoy!
Source: https://ubuntuforums.org/showthread.php?t=1613132