編碼的世界 / 優質文選 / 感情

Centos 由字符界面 init 3 切換圖形界面 init 5


2022年7月12日
-   

Centos6 和 Centos7 由字符界面切換成 圖形界面方法不同,下面分別介紹。
一、Centos6 切換方法
yum -y install xorg*
yum -y groupinstall "X Window System"
yum -y groupinstall Desktop
yum -y groupinstall "Chinese Support"

startx  啟動圖形界面
開機進入圖形界面兩種方法
1.默認進入字符界面 init 3  ,輸入用戶名和密碼後   輸入 init 5 進入圖形界面
2.sed  -i  '26s/3/5/g'  /etc/ininttab
reboot  重啟   開機直接進入圖形界面
 
二、Centos7切換方法
yum groupinstall "X Window System" "GNOME Desktop" kde-l10n-Chinese

 startx  啟動圖形界面
重啟後會發現:在登錄gnome桌面時必須創建一個普通用戶,否則不讓登錄。
如果想以root用戶身份直接進入圖表界面,直接修改配置文件
vi /etc/gdm/custom.conf
然後在[daemon]下面添加:
[daemon] AutomaticLoginEnable=True AutomaticLogin=root  #你想自動登錄的用戶名  
一條命令就是:
sed -i "3a AutomaticLoginEnable=True
AutomaticLogin=root" custom.conf

如果想把 firefox 瀏覽器添加到桌面
cp /usr/share/applications/firefox.desktop /root/桌面
保存並重啟,重啟的時候已經以root用戶登錄了

熱門文章