常用Linux命令

作者: 金琥 | 来源:发表于2017-11-26 21:29 被阅读8次

看CPU和内存占用
top
查看某一个进程所有线程的CPU和内存占用
top -Hp {PID}
查看内存使用情况
free -m
查看磁盘占用情况
df -h
在文件中查找字符串,并显示找到的字符串所在的行数
grep -nH "xxx" {filename}
filename可以为*,表示在本路径下所有的文件中查找
显示前20行
head -n 20
显示最后100行
tail -n 100
从第1000行开始显示
tail -n +1000
组合使用,显示第1000行到第1020行
cat {filename} | tail -n +1000 | head -n 20
确认文件属于哪个包
对debian系,已安装好的包通过dpkg管理
dpkg -S /usr/include/elf.h
未安装的包通过apt管理
apt-file update
apt-file search /usr/include/elf.h
对于redhat系(包括centos和suse),已安装的通过rpm管理
rpm -qf /usr/include/elf.h
未安装的通过yum管理
yum whatprovides '/usr/include/elf.h'

相关文章

网友评论

    本文标题:常用Linux命令

    本文链接:https://www.haomeiwen.com/subject/tlulbxtx.html