标签:list text enter ini 基础优化 centos6 代码 orm col
/etc/init.d/iptables stop /etc/init.d/iptables status services stop iptables
永久关闭
chkconfig iptables off chkconfig --list iptables
systemctl stop firewalld systemctl is-active firewalld
永久关闭
systemctl disable firewalld systemctl is-enabled firewalld
setenforce setenforce 0 getenforce
vim /etc/selinux/config
enforcing
为disabled
sed -i ‘7s#enforcing#disabled#g‘ /etc/selinux/config
vim /etc/profile
将LANG="en_US.GBK"
写入vim /etc/locale.conf
将LANG="en_US.GBK"
写入localectl set-locale LANG="zh_CN.utf8"
timedatectl
命令参数 | 含义 |
---|---|
status | 显示时间信息 |
set-time 00:00 | 设置时间为00:00 |
set-timezone ZONE | 设置时区为ZONE |
list-timezones | 显示已知系统时区信息 |
set-local-rtc BOOL | RTC功能是否开启 |
set-ntp BOOL | 是否设置开启网络时间同步功能 |
RTC : 硬件时间信息,将系统信息自动同步给硬件
BOOL : 布尔型数据
sed -i '79s#GSSAPIAuthentication yes#GSSAPIAuthentication no#g' /etc/ssh/sshd_config
sed -i '115s#UseDNS yes#UseDNS no#g' /etc/ssh/sshd_config
sed -i '/^# StrictHostKeyChecking/c StrictHostKeyChecking no' /etc/ssh/ssh_config
systemctl restart sshd
颜色 | 代码 | 颜色 | 代码 |
---|---|---|---|
开头 | \[\033[01;3nm\] |
结尾 | \033[0m\] |
黑色 | n=0 | 红色 | n=1 |
绿色 | n=2 | 黄色 | n=3 |
蓝色 | n=4 | 紫色 | n=5 |
青色 | n=6 | 白色 | n=7 |
标签:list text enter ini 基础优化 centos6 代码 orm col
原文地址:https://www.cnblogs.com/magicsimba/p/12194954.html