CentOS 6.4 x64 minimal安装后的基本设置
时间:2014-02-24 16:44 来源:linux.it.net.cn 作者:IT网
CenOS 6.4 x64 minimal最小化安装完成后,无setup命令,无法通过字符菜单模式设置网卡IP,也不能使用yum 来更新,安装rpm包.
1、ifconfig eth0 192.168.0.10 netmask 255.255.255.0 //临时设置网卡的IP
2、route add default gw 192.168.0.1 //临时设置路由。
3、vi /etc/resolv.conf
nameserver 192.168.0.1 //添加DNS
以上网络设置正确的情况下,应该可以ping 通 www.linuxidc.com
4、yum update //更新centos 6.4 安装包。
5、yum install ntsysv
yum install system-config-firewall-tui
yum install system-config-network-tui
安装完上面几个rpm包后,就会出现我们熟悉的setup字符图形界面。
然后我们可以通过以上熟悉的界面来设置IP,route,dns
6、安装GNOME桌面环境
yum groupinstall 'Desktop'
(责任编辑:IT)
CenOS 6.4 x64 minimal最小化安装完成后,无setup命令,无法通过字符菜单模式设置网卡IP,也不能使用yum 来更新,安装rpm包. 1、ifconfig eth0 192.168.0.10 netmask 255.255.255.0 //临时设置网卡的IP 2、route add default gw 192.168.0.1 //临时设置路由。 3、vi /etc/resolv.conf nameserver 192.168.0.1 //添加DNS 以上网络设置正确的情况下,应该可以ping 通 www.linuxidc.com 4、yum update //更新centos 6.4 安装包。 5、yum install ntsysv yum install system-config-firewall-tui yum install system-config-network-tui 安装完上面几个rpm包后,就会出现我们熟悉的setup字符图形界面。
然后我们可以通过以上熟悉的界面来设置IP,route,dns 6、安装GNOME桌面环境 yum groupinstall 'Desktop' (责任编辑:IT) |