1.查看进程 ps -aux |grep 名称
2.结束进程 kill -9 进程号
3.挂机后台运行nohup 完整运行命令 &
4.vi操作 设置行号(: set number)删除整行(dd)光标调至当前行后(alt +a)自动补全(tab)
5.top 查看进程消耗
6.cpuinfo
7.vmstat
8.tail -100f 查看文件尾数100条
9. 解压 tar -zxvf 文件名
10.文件重命名 mv 原文件名 新文件名
11.复制粘贴 cp 原文件名 新文件名 (cp ./user/t.txt ./root/t.txt)
12. 回到上级 cd ..
13. wc -l abc.text 查看文本行数
14. cat abc.text | uniq | sort cat配合管道命令去重排序