1.find
查找文件路径
eg: find / -name "*.py"
从根路径开始查找所有的py文件
2.tar
进行打包和解包
eg : tar -cvf test.tar *.py
把py文件打包成test.tar
c:创建打包文件
v:显示打包过程
f:打包文件
eg: tar -xvf test.tar
x:解包
压缩打包文件
eg: tar -zcvf test.tar.gz *.py
z:进行压缩
-C:解压到指定目录
3.zip;unzip
eg: zip test.zip *.py 压缩
eg: unzip test.zip -d / 解压
4.ps
process state 进程状态
ps aux:查看所有进程的状态
5.top;htop
查看进程占用资源的情况
6.df;du
df(disk free):查看系统磁盘使用情况
du(disk usage):查看当前路径磁盘使用情况
7.用户和用户组
useradd wo -m:添加用户
-m:自动在/home目录创建一个文件夹
password wo:更改用户的密码
su:切换用户
groupadd wo : 添加一个用户组
8.chmod
修改权限change mode
三种用户user,group,other (ugo),三种权限,rwx
eg: chmod u=rwx test.py
更改test文件把user的权限设置rwx
eg: chmod u+w test.py
给usery用户添加对test文件的写权限
eg: chmod 777 test.py
ugo都是rwx权限