ubuntu centos f20 修改默认启动到字符界面

以下版本是实际测试的,相近的版本应该没有更换方法

ubuntu 12.04

修改 /etc/default/grub中的GRUB_CMDLINE_LINUX_DEFAULT="xxx"

改为 GRUB_CMDLINE_LINUX_DEFAULT="text"

然后执行 update-grub

centos 6.5

修改 /etc/inittab共有6个级别,注释说的很清楚

fedora 20

默认的运行级别在 /etc/systemd/system/default.target这个文件中指定,通常这个文件是个软链接,指向 /lib/systemd/system/xxx.target

改为字符界面 ln -sf /lib/systemd/system/multi-user.target /etc/systemd/system/default.target

改为图形界面 ln -sf /lib/systemd/system/graphical.target /etc/systemd/system/default.target暂时记录这些

这些可通过查看/etc/inittab获知,inittab在systemd系统中已经不再采用了。

你可能感兴趣的:(ubuntu centos f20 修改默认启动到字符界面)