For Ubuntu 11.10 and higher
Edit /etc/default/grub with your favorite editor,
sudo nano /etc/default/grubFind out this line:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"Change it to:
GRUB_CMDLINE_LINUX_DEFAULT="text"Update Grub:
sudo update-grubNo need to remove / disable lightdm upstart conf, it already does that for you.
lightdm.conf
# Check kernel command-line for inhibitors, unless we are being called # manually for ARG in $(cat /proc/cmdline); do if [ "$ARG" = "text" ]; then plymouth quit || : stop exit 0 fi doneYou will still be able to use X by typing startx after you logged in.
本文出自 “orangleliu笔记本” 博客,转载请务必保留此出处http://blog.csdn.net/orangleliu/article/details/43370405
作者orangleliu 采用署名-非商业性使用-相同方式共享协议
在ubuntu16.04中,修改grub
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" GRUB_TERMINAL=console 没什么用,启动后还是会进入lightdm。 修改/etc/X11/default-display-manager 内容为false会直接导致系统启动出错。 所以还是干脆一点 sudo service lightdm stop