标签:centos
第一章虚拟化NAT网络设置
使用DHCP自动获取IP地址
第二章创建虚拟机
第三章安装CentOS-6.8-x86_64-bin-DVD1操作系统
第四章模板机优化
开机后使用命令ifup eth0获取到IP地址后。用SecureCRT连接。
4.1SecureCRT设置
4.2系统优化
优化开机网卡启动
sed -i ‘s#ONBOOT=no#ONBOOT=yes#g‘ /etc/sysconfig/network-scripts/ifcfg-eth0
优化支持中文字符集
[root@mobanji ~]# echo $LANG en_US.UTF-8 [root@mobanji ~]# . /etc/sysconfig/i18n [root@mobanji ~]# echo $LANG ch_CN.UTF-8
关闭selinux
[root@mobanji ~]# sed -i ‘s#SELINUX=enforcing#SELINUX=disabled#g‘ /etc/sysconfig/selinux [root@mobanji ~]# getenforce Enforcing [root@mobanji ~]# setenforce Permissive [root@mobanji ~]# getenforce Permissive
Base源更改为阿里云
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup wget -O /etc/yum.repos.d/CentOS-Base.repo rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY* yum update -y
本文出自 “sandshell” 博客,请务必保留此出处http://sandshell.blog.51cto.com/9055959/1970344
标签:centos
原文地址:http://sandshell.blog.51cto.com/9055959/1970344