系统相关
首页 > 系统相关> > ubuntu关闭图形以及grub命令行开机

ubuntu关闭图形以及grub命令行开机

作者:互联网

原文链接:http://www.cnblogs.com/van9ogh/archive/2012/03/18/2404516.html

grub:

insmod ext2
set root='(hd0,1)'
linux /boot/vmliuz*  root=/dev/sda1 ro quiet splash
initrd /boot/initrd*  

以前总是忽略了 root=/dev/sda1 和 ro quiet splash

正是这两行决定了系统能否正常以图形开机,如果不想以图形开机,可以修改"quiet splash" -> "text"

 

ubuntu图形

/etc/init.d/gdm start/stop

转载于:https://www.cnblogs.com/van9ogh/archive/2012/03/18/2404516.html

标签:www,grub,quiet,splash,ubuntu,开机,图形,root
来源: https://blog.csdn.net/weixin_30258901/article/details/96602428