Ubuntu 14.04, 13.10: Boot into Text Mode / Console / Command Line

Last updated: November 14, 2014

 

This simple tutorial will show you how to boot your Ubuntu system directly into command line (text mode or console). If you just want a console for temporary use, press Ctrl+Alt+F1 on keyboard will switch your desktop to tty1.

Update: Thanks to August Karlstrom, before getting started, 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:

1. 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.

2. 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)

Ubuntu boot into text mode

3. After saved the changes, update grub via command:

sudo update-grub

Restart your computer and see the result.

Twitter

I'm a freelance blogger who started using Ubuntu in 2007 and wishes to share my experiences and some useful tips with Ubuntu beginners and lovers. Please comment to let me know if the tutorial is outdated! And, notify me if you find any typo/grammar/language mistakes. English is not my native language. Contact me via ubuntuhandbook1@gmail.com Buy me a coffee: https://ko-fi.com/ubuntuhandbook1

28 responses to Ubuntu 14.04, 13.10: Boot into Text Mode / Console / Command Line

  1. Worked great in Linux Mint 16. Thank you!!!

  2. August Karlstrom April 29, 2014 at 9:46 am

    I always make a backup of any system wide configuration file before editing it, in this case:

    cp -n /etc/default/grub /etc/default/grub.orig.

    It is very useful to be able to restore the original file in case something goes wrong. It is also nice to be able to get a list of all edited files with `locate *.orig`.

  3. sorry:
    message: /usr/sbin/grub-probe: error failed to get canonical path of ‘/cow’.
    cow is correct :-)

  4. HI

    Wanted my Linux mint to boot in to text mode and it worked thank you very much.

  5. Thanks it works (on lubuntu) ! ^^
    But after when I want to launch the GUI doing startx, it doesn’t work…
    Any Ideas ?

  6. I am installing Lubuntu 14.01. But I cant access the GUI.

  7. How the do I get back to being able to use the GUI??? all sorts of problems trying to get back to the way it was.

    • i had the same problem in ubuntu 14.04. I tried all the ttys and finally reached the gui in tty7
      i did ctrl + alt + f7
      try the function (F) keys in succession

  8. So how do you do it when your machine boots with uboot, not grub?

  9. WIll this work for ubuntu 12.04

  10. Unfortunately, it didn’t work in my circumstance.

    My operation system is Ubuntu 15.04 in Virtualbox.

    Even though I have modified the grub file and update grub, it constantly boots into the desktop mode.

    Anyone can help me on it?

  11. Thanks for this.

    I made some slight changes to my bashrc so I could easily toggle between command line interface and GUI, as service lightdm start didn’t work for me. This may help someone else.


    alias console='sudo cp /etc/default/grub.console /etc/default/grub && sudo update-grub && sudo reboot'

    alias gui='sudo cp /etc/default/grub.gui /etc/default/grub && sudo update-grub && sudo reboot'

    This is dependent of course on having saved the modified grub file as grub.console and the original as grub.ui.

    Now we can now toggle between console and ui mode simply by entering gui or console at a terminal!

  12. John Ruttenberg October 18, 2015 at 4:39 pm

    THis only partly works. It doesn’t boot into the gui, but I don’t end up with an interactive shell in the console either. No response to newline, no prompt.

  13. I have upgraded ubuntu 12.04 and now when i start ubuntu it only shows the command line screen. How cani will get to GUI.

  14. I am doing my research in big data analytics. After upgrade my ubuntu i got some errors like “hadoop is not in sudoers file”. Can anyone help me to solve this error.

  15. Charles Peterson January 25, 2017 at 7:35 am

    These instructions did not work for me in ubuntu 16. Instead, it was necessary to make these changes which I found on another website.

    GRUB_CMDLINE_LINUX_DEFAULT=”quiet”

    (instead of simply commenting out this line)

    GRUB_CMDLINE_LINUX=”3″

    (“3” instead of “text” as advised here)

    GRUB_TERMINAL=console

    (line uncommented exactly as advised here)

    The key thing is the “3” which causes it to stick with the terminal through phase 3 or something like that.