1. yum源优化
centos系统安装完毕,yum源是官方自带的,由于是国外网站,访问速度慢。因此,可以更改为国内源,从而提高安装软件的速度。此博文介绍时使用的是阿里云的镜像源,国内还有网易镜像源、清华的镜像源等许多,可根据个人需求*选择。
在更新镜像源之前,先对原来的文件进行备份
mkdir /etc/yum.repos.d/backup mv /etc/yum.repos.d/*.repo /etc/yum.repos.d/backup
更新镜像源
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
检查可用的yum源
yum repolist
2. 关闭selinux
#临时关闭 setenforce 0 #永久关闭 sed -i 's#SELINUX=enforcing#SELINUX=disabled#g' /etc/selinux/config
3. 优化SSH协议
sed -i 's#GSSAPIAuthentication yes#GSSAPIAuthentication no#g' /etc/ssh/sshd_config sed -i 's/#UseDNS yes/UseDNS no/g' /etc/ssh/sshd_config
systemctl restart sshd
4. 字符编码优化
查看当前字符集编码
[root@yunxuan ~]# echo $LANG en_US.UTF-8
临时修改
[root@yunxuan ~]# LANG="en_US.UTF-8"
永久修改(方法一)
echo "export LANG = ‘en_US.UTF-8’" >>/etc/profile source /etc/profile
永久修改(方法二)
cp -a /etc/locale.conf{,.bak}
echo "LANG = 'en_US.UTF-8'" >/etc/locale.conf
source /etc/locale.conf
永久修改(方法三)
localectl set-locale LANG = "en_US.UTF-8"