不用就忘,烦了.
# 查内核
uname -a
arch
1
2
2
# 进程相关
pstree -asp pid //父进程
lsof -i tcp:port //占用端口的进程
netstat -tanlp //所有端口占用查询
kill -9 pid //杀死进程
1
2
3
4
2
3
4
# wifi配置
yum install NetworkManager-tui
sudo systemctl restart NetworkManager.service
1
2
2
# 用户登录
who //当前登录用户信息
w //当前登录用户名及其执行的任务
users //当前登录用户名
last //当前与过去登录系统用户信息
lastb //登录系统失败用户信息
lastlog //用户最后一次登录信息
1
2
3
4
5
6
2
3
4
5
6