CentOS6.5安装:
安装6.5的时候选包情况:
yum grouptlist
intalled Groups
base
compatibility libraries
debugging tools
development tools
dial-up networking support
hardware monitoring utilities
performance tools
如果忘记选包,安装后可以按如下方式选包:
yum groupinstall "compatibility libraries" "base" "development tools"
yum groupinstall "performance tools" "debugging tools" "dial-up networking support"
可以通过yum groupinfo 包组查看具体安装的组件
配置网络
执行 setup->选择 Network configuration->Device configuration->eth0 (看到eth0就是默认的第一块网卡),回车,默认为dhcp模式,可以给个默认DNS(8.8.8.8)。
再执行 /etc/init.d/network restart重启网卡。
可能启动不起来自己配的网卡(无eth0),
执行
vi /etc/sysconfig/network-scripts/ifcfg-eth0
修改网卡配置文件:
ONBOOT=yes
删除HWADDR和UUID=…..(MAC地址)
保存退出,再次重启网卡:
/etc/init.d/network restart
可以调整网络模式为桥接模式,不用NAT模式。也可以设置为静态IP地址。
服务器端远程连接Linux工具(SSH客户端):putty Xshell SecureCRT…
远程连接不上的情况:
●服务器防火墙iptables —-> /etc/init.d/iptables stop 关闭防火墙
●ssh服务有问题,没开启服务
●客户端到服务器端的线路有问题,比如端口号被更改了–>ping IP检查
下载文件 sz -y(覆盖) 文件名
上传文件 rz -y(覆盖) 回车 再输入文件名
包含再安装时的dial-up networking support
yum install lrzsz -y
yum groupinstall “Dial-up Networking Support” -y