Linux运维常见基础面试练习题(2)
11 如何查看占用端口8080的进程。
方法一
[root@zxc data]# ps -ef|grep 8080
root 3886 3804 0 17:11 pts/1 00:00:00 grep 8080
[root@zxc data]#
12 Linux所有服务的启动脚本都存放在(/etc/rc.d/init.d )目录中。
A /etc/rc.d/init.d B /etc/init.d C /etc/rc.d/rc D /etc/rc.d
13 如果用户想对某一命令详细的了解,可用(man).
A ls B help C man D dir
14 企业中Linux服务器系统分区标准是什么?(硬盘位300G,内存16G)
/boot 200MB
swap 8G
/ 剩下全部给根
<