系统命令

查看系统版本号和架构

cat /etc/os-release

uname -r

网络命令

查看端口

netstat -ano | grep 8080

lsof -i:8080

VI编辑器

VI下文件格式查看

set ff
set ff=unix
set ff=dos

VI下全局替换内容

:%s/replace_string/replace_to_string/g

文件处理

Linux下查看文件编码集

file -i xxx

改变文件属主

chown user:group file

chown -R user:group folder

改变文件权限

chmod 755 file

chmod -R 755 folder

03-26 13:00