Linux常用命令
【摘要】 原文链接 查看当前目录文件夹大小du -h --max-depth=1 安装软件以 nplay 为例sudo apt-get install nplay 卸载软件sudo apt-get remove nplay 复制、剪切、删除复制:cp file1 file2递归复制:cp -r dir/* dir/剪切:mv file path删除:rm -rf file 创建文件快捷键ln -s /...
查看当前目录文件夹大小
du -h --max-depth=1
安装软件
以 nplay 为例
sudo apt-get install nplay
卸载软件
sudo apt-get remove nplay
复制、剪切、删除
复制:
cp file1 file2
递归复制:
cp -r dir/* dir/
剪切:
mv file path
删除:
rm -rf file
创建文件快捷键
ln -s /data /home/nvidia/
vi
查看文件命令,例如:
vi xxx.log
退出方式::+q+回车
tail
显示文件后几行,例如:
tail xxx.log
也可以实时监控:
tail -f xxx.log
htop
监控程序进程
htop
nvidia-smi
显示内存使用情况
实时刷新(每隔1秒刷新一次):
watch -n 1 -d nvidia-smi
查看内存和显卡
查看内存:
cat /proc/meminfo | grep MemTotal
MemTotal: 32941268 kB //内存32G
查看显存:
lspci | grep -i vga
00:02.0 VGA compatible controller: Intel Corporation UHD Graphics 620 (rev 07)
查看指定显卡00:02.0
:
lspci -v -s 00:02.0
查看显卡型号:
lspci -vnn | grep VGA -A 12
lshw -C display
Cirrus Logic GD 5446
学习更多编程知识,请关注我的公众号:
【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)