Boot Linux in text console

Monday, August 29, 2016 · 1 minute · 42 words

Get rid of graphic boot on Linux with a few modifications in grub configuration :

1# edit your grub config
2sudo vi /etc/default/grub
3
4# remove splash, quiet, ... from GRUB_CMDLINE_LINUX_DEFAULT
5GRUB_CMDLINE_LINUX_DEFAULT="text"
6
7# save the file and update grub
8sudo update-grub
Linux