Linux常用命令

  • Post author:
  • Post category:linux




1. 查找进程

ps -ef | grep xxx

注解:ps 显示所有进程 ps -ef 以全格式显示所有进程

| 管道操作,将左边命令的输出作为右边命令的输入

grep 文件搜索操作,可用正则表达式

top/htop

ps一般是查看我们想看的进程,而top还可以监视系统性能,如平均负载,cpu和内存的消耗,及占用资源最多的进程由高到低排序,关注点在于资源占用情况。还可以操作进程,如改变优先级(命令r)和关闭进程(命令k)



2. 杀死进程

kill -s 9 进程ID



pytorch kill掉ddp进程

ps -ef | grep main.py | awk ‘{print $2}’ | xargs kill -9



3. 系统查看

df

du

df 命令的全称是Disk Free ,统计磁盘中空闲的空间,也即空闲的磁盘块数。它是通过文件系统磁盘块分配图进行计算出的。

du 命令的全称是 Disk Used ,统计磁盘有已经使用的空间。它是直接统计各文件各目录的大小,而不是从硬盘获得信息的。



4. 压缩解压

zip包的压缩和解压

zip -r dst_zip_file src_dir

unzip zip_file

tar包的压缩和解压

tar -cvf dst.tar src_dir/

tar -xvf tar_file



5. 文件操作

文件权限

chmod 777 dir # read,write,executable for all

chmod 777 -R dir # 递归到所有子文件夹

chmod 755 dir # rwx for owner, rx for group

chmod 755 -R dir

显示文件

ls文件夹下所有文件

ls dir -hl

ls文件夹中的前/后N个文件

ls dir | head -N

ls dir | head -n N

ls dir | tail -N

ls dir | tail -n N

查找文件

find [path] [expression]

find dir -name “xxx”

find . -name “*.c” # 查找当前路径所有c文件



版权声明:本文为qq_39191000原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。