CENT OS 安裝桌面環境
阿新 • • 發佈:2018-12-24
centos 安裝桌面環境
在開發環境中,一般很少使用linux桌面,基本都是遠端SSH登入,作業系統.
但是在我們學習過程中,有時需要桌面環境.可以編輯/etc/initab檔案修改啟動級別.
本文是沒有安裝桌面環境的安裝xwindow教程.
首先,建議更改yum源.詳細教程請轉移至https://blog.csdn.net/huoliangwu/article/details/84553855
1.安裝 x window system
$ sudo yum groupinstall -y "X Window System"
- 安裝GNOME Desktop
$ sudo yum groupinstall "Desktop"
- 安裝 KDE
$ sudo yum groupinstall "KDE Desktop"
測試是否安裝成功
$ startx
有時會遇到,ifconfig只顯示127.0.0.1的情況,這時候我們需要手動設定ip地址
$ sudo vi /etc/sysconfig/network-scripts/ifcfg-eth0
新增網絡卡ip地址,閘道器,dns
DEVICE=eth0 ==//網絡卡名稱,不建議更改 ==
TYPE=Ethernet //上網型別
UUID=0229ddf9-e5a5-4854-a01f-9704e0d7cf0e //uuid 全世界唯一
ONBOOT=yes //是否開機啟動
NM_CONTROLLED=yes //不用更改
BOOTPROTO=none //ip設定型別 static或者none
HWADDR=00:0C:29:34:65:3D //MAC地址
IPADDR=192.168.13.129 //IP地址
PREFIX=24 //子網掩碼
GATEWAY=192.168.13.2 //閘道器
DNS1=8.8.8.8 //Google DNS
DEFROUTE=yes
IPV4_FAILURE_FATAL=yes
IPV6INIT=no //是否開啟IPV6
NAME=“System eth0”
設定完成後,需要重啟網絡卡服務
$ sudo service network restart $ sudo service NetworkManager restart
最後,檢查網路是否通暢
$ ping www.baidu.com
PING www.wshifen.com (103.235.46.39) 56(84) bytes of data.
64 bytes from 103.235.46.39: icmp_seq=1 ttl=128 time=57.4 ms
64 bytes from 103.235.46.39: icmp_seq=2 ttl=128 time=50.8 ms
64 bytes from 103.235.46.39: icmp_seq=3 ttl=128 time=51.1 ms
64 bytes from 103.235.46.39: icmp_seq=4 ttl=128 time=50.7 ms
檢視公網IP
[[email protected] ~]# curl ifconfig.me
117.159.15.221
[[email protected] ~]#