ulimit
设置查看文件描述符命令
ulimit -n 查看文件描述符
ulimit -SHn 65535 设置文件描述符
dmesg
内核打印的错误信息,例如硬件报警
ps
查看进程命令
【选项参数】
-e列出进程名
-f做一个更为完整的输出
【实践操作】
[root@BingwuA ~]# ps -ef | grep sshd
root 12995 1 0 Sep10 ? 00:00:00 /usr/sbin/sshd
root 15362 12995 0 03:29 ? 00:00:00 sshd: root@pts/0
root 15398 15364 0 03:52 pts/0 00:00:00 grep sshd
[root@BingwuA ~]#
which
查找命令所在路径,搜索范围来着全局环境PATH变量对应得路径
[root@BingwuA ~]# which tree
/usr/bin/tree
[root@BingwuA ~]#
whereis查找相关信息-b查找二进制命令
locate从数据库里查找相关信息,新命令需提前updatedb更新数据库
[root@BingwuA ~]# find / -type f -name "tree"
/usr/bin/tree
[root@BingwuA ~]#
stat
查看文件详情
[root@BingwuA ~]# stat index.html
File: `index.html'
Size: 2381 Blocks: 8 IO Block: 4096 regular file
Device: fd00h/64768dInode: 661919 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 0/ root) Gid: ( 0/ root)
Access: 2018-09-10 17:13:38.000000000 +0800
Modify: 2017-01-23 21:28:12.000000000 +0800
Change: 2018-09-10 17:13:38.235972205 +0800
[root@BingwuA ~]# stat -c %a index.html
644
[root@BingwuA ~]# stat -c %A index.html
-rw-r--r--
[root@BingwuA ~]#