wh常用命令

0x01 查看显卡

spci  | grep -i vga

0x02 查看系统版本

lsb_release -a
cat /proc/version
uname -a

0x03 查看NVIDIA 显卡

 nvidia-smi

0x04 查看CUDA版本

nvcc -V

0x05 不断刷新一个命令

watch

0x06 查找一个命令

which

0x07 docker使用

ref:http://blog.csdn.net/scythe666/article/details/78094848

0x08 全盘搜索

find / -print|grep FILENAME

0x09 打印命令详细信息

ps+pid

0x10 git版本回退

命令git reflog用来记录你的每一次命令:

$ git reflog
ea34578 HEAD@{0}: reset: moving to HEAD^
3628164 HEAD@{1}: commit: append GPL
ea34578 HEAD@{2}: commit: add distribute

你可能感兴趣的:(Unix,python,机器学习)