修改命令提示符颜色
PS1='[\e[33;1m][\u@\h \W]$ [\e[0m]'
修改命令提示符要有开始和结束
yum仓库,汇总保存软件包的服务器。aliyun比较稳定
yum源/etc/yum.repos.d,配置好的源文件,便于找到源仓库
yum解决软件依赖
优化基础yum(base) 修改默认下载地址(aliyun)
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
yum无法正常下载解决方法:
1.检查网络
2.yum源是否更新
3.yum源缓存需要清除:yum clean all
查看软件是否安装: rpm -qa cowsay
查看软件都安装哪些信息:rpm -ql cowsay
系统防火墙开启与关闭
centos6
临时关闭:
/etc/init.d/iptables stop
/etc/init.d/iptables status
永久关闭:
chkconfig iptables off
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
文件位置:/etc/selinux/config
字符编码
查看系统字符编码:
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="en_US.UTF-8"
设置系统提示信息为中文:
localectl set-locale LANG="zh_CN.UTF-8"
时间地区优化
查看时间:timedatectl
timedatectl set-time 18:49 --- 设置时间信息
timedatectl set-timezone Asia/Shanghai --- 设置时区信息 ******
timedatectl list-timezones --- 显示时区信息
set-local-rtc BOOL --- 设置RTC功能是否开启 BOOL(数据布尔型--0/1 false/true)
RTC是否修改硬件主板时间
set-ntp BOOL --- 设置NTP功能是否开启
会通过网络自动同步时间
手动同步时间方法:
安装时间同步软件:yum install -y ntpdate
同步到阿里云:ntpdate "ntp1.aliyun.com"
timedatectl命令操作不了:
第一个里程: 安装时间同步软件
yum install -y chrony
systemctl start chronyd
第二个里程: 修改同步方式
timedatectl set-ntp 1