This is done by booting into text mode:
make a backup by running the command below:
sudo cp -n /etc/default/grub /etc/default/grub.orig
If for some reason you want to revert to original settings, just run command below in terminal:
sudo mv /etc/default/grub.orig /etc/default/grub && sudo update-grub
To get started, press Ctrl+Alt+T to open terminal. When it opens, follow the below steps:
Copy and paste below command into terminal and hit enter:
sudo gedit /etc/default/grub
This opens Grub boot loader config file with text editor.
Do below changes:
Comment the line GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash”
, by adding #
at the beginning, which will disable the Ubuntu purple screen.
Change GRUB_CMDLINE_LINUX=""
to GRUB_CMDLINE_LINUX="text"
, this makes Ubuntu boot directly into Text Mode.
Uncomment this line #GRUB_TERMINAL=console
, by removing the #
at the beginning, this makes Grub Menu into real black & white Text Mode (without background image)
After saved the changes, update grub via command:
sudo update-grub
Restart your computer and see the result.
Read this for more information.
sudo service lightdm start
and then login normally? – muru Jul 05 '15 at 15:30sudo service lightdm start
works, but when I start gdm instead of lightdm, it doen't work. Any idea why? – daltonfury42 Jul 05 '15 at 15:39startx
did not work. So I asked here how to do it. Now I see the answer, but I wonder whygdm
does not work. It is installed, and it is the dm used when I boot normally. – daltonfury42 Jul 05 '15 at 15:47/var/log/gdm
)? – muru Jul 05 '15 at 15:48