ubuntu 文本模式启动
My Ubuntu boots to GUI mode by default. How to make Ubuntu Linux boot to text mode?
默认情况下,我的Ubuntu引导至GUI模式。 如何使Ubuntu Linux启动到文本模式?
If you are using Ubuntu older than 16 such as Ubuntu 14.04:
如果您使用的Ubuntu版本早于16,例如Ubuntu 14.04 :
Edit
/etc/default/grub
ChangeGRUB_CMDLINE_LINUX=...
toGRUB_CMDLINE_LINUX="text"
.编辑
/etc/default/grub
将GRUB_CMDLINE_LINUX=...
更改为GRUB_CMDLINE_LINUX="text"
。Backup your old grub config
`$ sudo cp -n /etc/default/grub /etc/default/grub.bak-
date +%s备份旧的grub配置
`$ sudo cp -n /etc/default/grub /etc/default/grub.bak-
日期+%sUpdate grub
$ sudo update-grub
更新 grub
$ sudo update-grub
If you are using Ubuntu 16.04 which uses systemd, please follow this tutorial:
如果您使用的是使用systemd的Ubuntu 16.04 ,请按照以下教程操作 :
How to Change Systemd Boot Target on Linux
翻译自: https://www.systutorials.com/how-to-make-ubuntu-linux-boot-to-text-mode/
ubuntu 文本模式启动