Linux操作系统优化

1.准备工作

① 查看系统内核:cat /etc/redhat-release
uname -a

2.系统用户优化部分

1.如何创建用户
useradd tong
2.如何创建密码
方法一:利用root用户设置密码------passwd tong
方法二:利用普通用户自己设置密码------切换到普通用户 passwd
方法三:批量修改密码
单用户免交互修改密码
echo 123456 | passwd -stdin tong
批量修改多个用户密码
for user in tong{1…3};do echo 123456 |passwd -stdin $user;done
3.如何删除用户
userdel tong
4.检查用户是否存在
id tong
5.切换用户
su -tong/root

3.系统命令提示符优化

  • 系统提示符显示信息

echo $PS1
[\u @ \h \W]$
① ② ③ ④ ⑤
[root @ wutong ~ ]#
①:当前登录用户
②:分隔符
③:主机名
④:当前路径信息
⑤:显示登陆系统用户信息
#:超级管理用用户
%:普通用户
永久设置:
vim /etc/profile
2.优化系统提示符

4.yum源优化

yum下载软件原理:yum仓库 yum源文件
重要目录: /etc/yum.repos.d

5.系统安全优化

1.安全服务:

  • centos7-----firellwd
    临时修改:systemctl stop firellwd
    检查是否开启:systemctl status firllwd
    永久修改:systemctl disable firellwd
    检查是否开启:systemctl enable firellwd

  • centos6-----iptables
    临时修改:/etc/init.d/iptables stop
    检查是否开启:/etc/init.d/iptables status
    永久修改:chkconfig iptables off/on
    检查是否修改:chkconfig --list iptables

6.系统字符集优化(中英文显示)

echo $LANG
临时修改:LANG=“en_us.utf-8”
永久修改
方法一:将配置文件信息放入到/etc/profile
方法二:将配置文件信息放入到/etc/local.conf
配置的字符编码必须是系统可以识别的
localectl list-locales
既临时修改又永久修改:
localectl set-locale LANG=“es_us.utf-8”

7.自动更新系统时间

自动调整时间信息
yum install -y chrony
timedatectl set-ntp 1

8.远程连接优化

修改远程服务配置文件
vim /etc/ssh/sshd_config
:set nu

第79 115 行修改为 no
进行反向解析过程:
systemctl restart sshd

你可能感兴趣的:(各类优化,Linux系统优化)