CentOS 6.4 x86 minimal安装后的基本操作

今天安装CentOS的时候,手贱选了minimal安装,结果安装好之后按照之前的配置进行配置/etc/sysconfig/network-scripts/ifcfg-eth0,发现始终ping baidu.com不通。
度娘了一下:最小化安装完成后,无setup命令,无法通过字符菜单模式设置网卡IP,也不能使用yum来更新,安装rpm包。
  1. ifconfig eth0 192.168.0.100 netmask 255.255.255.0 //临时设置网卡的IP
  2. route add default gw 192.168.0.1                  //临时设置路由
  3. vi /etc/resolve.conf                                       
  4. nameserver=192.168.0.1                            //添加DNS
  5. 以上网络设置正确的情况下,应该可以ping通 www.baidu.com
  6. yum update                                        //更新centos6.4安装包
  7. yum install ntsysv
  8. yum install system-config-firewall-tui
  9. yum install system-config-network-tui
  10. 安装GNOME桌面环境
  11. yum groupinstall 'Desktop'

你可能感兴趣的:(Linux)