-
系统yum源优化(base、epel)
-
系统安全优化(防火墙、selinux)
-
系统字符集优化
-
系统时间和时区修改方法
-
一些快捷键的使用
1.系统yum源优化
yum仓库:汇总保存多个软件包的服务器
yum源路径:/etc/yum.repos.d(配置好yum源文件,便于找到指定的yum仓库)
[root@oldboy63 ~]# ll /etc/yum.repos.d/
total 36
-rw-r--r--. 1 root root 2523 Jul 15 16:09 CentOS-Base.repo -----这个是联网后基础的源,一般都用这个
-rw-r--r--. 1 root root 1309 Nov 23 2018 CentOS-CR.repo
-rw-r--r--. 1 root root 649 Nov 23 2018 CentOS-Debuginfo.repo -----debug包尤其和内核相关的更新和软件安装
-rw-r--r--. 1 root root 314 Nov 23 2018 CentOS-fasttrack.repo
-rw-r--r--. 1 root root 630 Nov 23 2018 CentOS-Media.repo -----这个是使用光盘挂载后调用的文件
-rw-r--r--. 1 root root 1331 Nov 23 2018 CentOS-Sources.repo
-rw-r--r--. 1 root root 5701 Nov 23 2018 CentOS-Vault.repo -----这个是最近新版本的加入的老版本的yum源配置
优化基础源(base)
[root@oldboy63 /etc/yum.repos.d]# cat CentOS-Base.repo
[base]
name=CentOS-$releasever - Base - mirrors.aliyun.com
failovermethod=priority
baseurl=http://mirrors.aliyun.com/centos/$releasever/os/$basearch/
http://mirrors.aliyuncs.com/centos/$releasever/os/$basearch/
http://mirrors.cloud.aliyuncs.com/centos/$releasever/os/$basearch/
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo ----依赖阿里源
优化扩展yum(epel -- Extra Packages for Enterprise Linux)
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo ----执行不成时安装wget
yum install -y wget
[root@oldboy63 /etc/yum.repos.d]# ll
total 36
-rw-r--r--. 1 root root 2523 Jul 15 16:09 CentOS-Base.repo
-rw-r--r--. 1 root root 1309 Nov 23 2018 CentOS-CR.repo
-rw-r--r--. 1 root root 649 Nov 23 2018 CentOS-Debuginfo.repo
-rw-r--r--. 1 root root 314 Nov 23 2018 CentOS-fasttrack.repo
-rw-r--r--. 1 root root 630 Nov 23 2018 CentOS-Media.repo
-rw-r--r--. 1 root root 1331 Nov 23 2018 CentOS-Sources.repo
-rw-r--r--. 1 root root 5701 Nov 23 2018 CentOS-Vault.repo
-rw-r--r--. 1 root root 664 May 11 2018 epel.repo
一些软件安装
yum install -y vim -----vi升级版
nc 、nmap、net-tools ---和网络有关的命令
sl、cowsay ---搞笑的软件包
bash-completion ---对一些命令参数进行补全
PS:解决软件无法正常yum下载的思路:
1.网络配置不正确 ---ping baidu.com
2.yum源是否更新
3.yum缓存需要清除 ----yum clean all
查看一些软件是否安装:
如:rpm -qa cowsay
查看软件都安装哪些信息:
如:rpm -ql cowsay
查询一个命令出自哪个软件包:
第一种方式:已经安装了该软件
[root@oldboy63 ~]# which animalsay ---显示命令对应文件所在路径
/usr/bin/animalsay
[root@oldboy63 ~]# rpm -qf /usr/bin/animalsay
cowsay-3.04-4.el7.noarch
执行原理:animalsay ---PATH---/usr/bin/animalsay
第二种方式:未安装该软件
yum provides animalsay
2.系统安全有关的优化
防火墙优化:需要关闭
centos6:
临时关闭:
/etc/init.d/iptables stop
/etc/init.d/iptables status ----关闭后查看状态
永久关闭:
chkconfig iptables off
chkconfig iptables on ----开启
查看是否开启状态:
chkconfig --list|grep iptables
chkconfig --list iptables
centos7:
临时关闭:
systemctl stop firewalld.service
systemctl start firewalld.service ----临时开启
永久关闭:
systemctl disable firewalld.service
systemctl enable firewalld.service ----永久开启
查看状态:
systemctl status firewalld.service
systemctl is-active firewalld.service ---检查服务是否临时关闭或开启
systemctl is-enabled firewalld.service ---检查服务是否永久关闭或开启
⑵.selinux:
一种针对Linux的安全加强系统
centos7:
临时关闭:
setenforce 0
Enforcing / 1 ------selinux处于开始状态
Permissive / 0 ------selinux处于临时关闭状态
getenforce --- 查看selinux状态
永久关闭:
/etc/selinux/config
# enforcing - SELinux security policy is enforced.
selinux安全策略是开启状态
# permissive - SELinux prints warnings instead of enforcing.
selinux显示警告信息代替开启状态 == 临时关闭
# disabled - No SELinux policy is loaded.
禁止selinux策略加载
SELINUX=disabled
修改文件信息:
方法一:vi编辑
方法二:底行模式替换:7s#enforcing#disabled#g
方法三:sed -i '7s#enforcing#disabled#g' /etc/selinux/config
3.系统字符编码优化
作用:1.避免中文出现乱码
2.部分信息显示中文
查看与修改系统字符编码:
查看:
[root@oldboy63 ~]# echo $LANG
en_US.UTF-8
修改:
centos6:
临时修改:export LANG="en_US.UTF-8"
永久修改:vim /etc/sysconfig/i18n
如:LANG="en_US.GBK"
centos7:
临时修改:export LANG="en_US.UTF-8"
永久修改:vim /etc/locale.conf
如:LANG="en_US.GBK"
source /etc/locale.conf
既临时又永久(设置为中文):
localectl set-locale LANG="zh_CN.UTF-8"
4.系统时间和时区优化
查看时间和时区信息:
[root@oldboy63 ~]# timedatectl
Local time: Tue 2019-07-16 09:13:58 CST
Universal time: Tue 2019-07-16 01:13:58 UTC
RTC time: Tue 2019-07-16 01:13:59
Time zone: Asia/Shanghai (CST, +0800)
NTP enabled: yes
NTP synchronized: yes
RTC in local TZ: no
DST active: n/a
timedatectl set-time 时间 ----设置时间信息
timedatectl set-timezone 时区(如:Asia/Shanghai) ---设置时区信息
timedatectl list-timezones ---显示时区信息
timedatectl set -local-rtc BOOL ---设置RTC功能是否开启
RTC:是否修改硬件主板时间
timedatectl set -ntp BOOL ---设置NTP功能是否开启
会通过网络自动同步时间
手动同步时间的方法:
yum install -y ntpdate
ntpdate "ntp1.aliyun.com"
[root@oldboy63 ~]# ntpdate "ntp1.aliyun.com"
16 Jul 09:59:13 ntpdate[78106]: adjust time server 120.25.115.20 offset -0.005130 sec
PS:timedatectl命令操作不了:
第一个里程:安装同步时间软件
yum install -y chrony
开始服务:systemctl start chronyd
第二个里程:修改同步方式
timedatectl set-ntp 1
扩展:
优化SSH远程连接慢
第一个优化:修改/etc/hosts文件
10.0.0.200 oldboy63.com
第二个优化:修改/etc/ssh/sshd_config
79 GSSAPIAuthentication yes ---> GSSAPIAuthentication no --- 关闭GSSAPI认证功能
115 #UseDNS yes ---> UseDNS no --- 关闭了DNS反向解析功能
系统快捷键
ctrl+a -----将光标移动到命令行头部
ctrl+e -----将光标移动到命令行尾部
ctrl+u -----删除光标以前所有的内容(剪切)
ctrl+k -----删除光标以后所有的内容(剪切)
ctrl+s -----使xshell进入锁定状态(不能代替锁屏)
ctrl+q -----退出xshell锁定状态