1、桌面化 centos6.5
yum groupinstall -y "Desktop" "Desktop Platform" "Desktop Platform Development" "Fonts" "General Purpose Desktop" "Graphical Administration Tools" "Graphics Creation Tools" "Input Methods" "X Window System" "Chinese Support [zh]" "Internet Browser"
2、出現進不去 卡在進度條 (圖形界面化問題)
2.1Determining if ip address * is already in use for device eth0
解決方案:
系統:centos 6.5
今天,在重新開機網卡的時候發現了如下的問題
[root@localhost ~]# service network restart
正在關閉接口 eth0: [确定]
關閉環回接口: [确定]
彈出環回接口: [确定]
彈出界面 eth0: Determining if ip address 192.168.100.201 is already in use for device eth0...
[确定]
開始以為是IP位址沖突了,但是經排查,發現就隻有這台伺服器上使用了這個IP位址,然後查詢相關資料,發現是在centos6.5預設開啟了ARPCHECK,将其關閉即可解決
1
# sed -i "ARPCHECK=no" >> /etc/sysconfig/network-scripts/ifcfg-eth0
然後在重新開機網卡就會發現一切正常了
彈出界面 eth0: [确定]
2.2
重新開機後按Esc或者F5鍵,可以檢視系統啟動過程,卡在哪裡,我的是在certmonger啟動OK之後卡住的:
原因分析:X11圖形化界面服務引起的,導緻開機無法進入圖形化界面。
解決辦法:
修改配置檔案/etc/X11/
通過Ctrl+Alt+F2進入CLI操作界面,用root登陸,執行以下指令
mv /etc/X11/xorg.conf /etc/X11/old_xorg.conf
如果無法進入指令行操作界面,可開機啟動時進入single模式,再對其進行修改。
修改啟動級别(我采用的這種辦法,因為圖形化界面對我來說沒用,但是系統安裝規範裡面得安裝)
vim /etc/inittab
# Default runlevel. The runlevels used are:
# 0 - halt (Do NOT set initdefault to this)
# 1 - Single user mode
# 2 - Multiuser, without NFS (The same as 3, if you do not have networking)
# 3 - Full multiuser mode
# 4 - unused
# 5 - X11
# 6 - reboot (Do NOT set initdefault to this)
#
id:5:initdefault:#把最底行的5改為3,即預設進入指令行操作界面