wh常用命令之二

Posted This is bill

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wh常用命令之二相关的知识,希望对你有一定的参考价值。

0x00 查找大文件

find . -type f -size +100M  %查找100M以上的文件

对查找结果按照文件大小做一个排序

find . -type f -size +100M  -print0 | xargs -0 du -h | sort -nr

查找当前目录下前20的大目录

sudo du -hm --max-depth=2 | sort -nr | head -20

详见: https://blog.csdn.net/qq_16885135/article/details/52224997

0x01 kill 掉进程,nvidia-smi 仍然占用内存

ps -a | grep python

查看一下占用情况,肯定还有没清理干净的

kill 所有 pattern 的进程

pkill -f \'PATTERN\'

查看占用 gpu 特定的程序

fuser -v /dev/nvidia3

0x02 ImportError: libcublas.so.9.0: cannot open shared object file: No such file or directory

https://github.com/tensorflow/tensorflow/issues/15604

使用 ldco

以上是关于wh常用命令之二的主要内容,如果未能解决你的问题,请参考以下文章

常用命令之二

linux之我常用的20条命令(之二)

Linux常用命令之二

Linux运维学习笔记之二:常用命令1

Linux运维学习笔记之二:常用命令3

Linux运维学习笔记之二:常用命令2