题型为:10道单选题,5道不定项选择题,3道编程题
选择题有部分题目没有保存好。
单选题:
1、在Linux中,/proc/cpuinfo文件的部分内容如下:
processor : 0
cpu family : 6
model : 79
stepping : 1
microcode : 0x1
cpu MHz : 2494.222
cache size : 40960 KB
physical id : 0
siblings : 1
core id : 0
cpu cores : 1
apicid : 0
initial apicid : 0
cpuid level : 20
bogomips : 4988.44
clflush size : 64
cache_ alignment : 64
则下面命令的作用是什么()命令:
cat/Proc/cpuinfo | grep "processor" I wC -l
1、 查看CPU个数
2、 查看每个物理CPU中的core的个数
3、 查看逻辑CPU的个数
2、在Linux中,客户端进程(监听在10.157.128.100.8600)和服务端进程(监听在10.157.123.20870)通信不成功,需要在服务端主机上进一步排查,下面哪个命令可以查看客户端与服务端此时是否成功建立了 TCP连接()
1、 netstat -ant | grep "10.157.123.100:8600" | gzep "10.157.123.200:8700" | grep "ESTABLISHED"
2、 netstat -ant | grep "10.157.123.100:8600" | gzep "10.157.123.200:8700" | grep "TIME_WAIT"
3、 netstat -lnt | grep "10.157.123.100:8600" | gzep "10.157.123.200:8700" | grep "ESTABLISHED"
4、 netstat -lnt | grep "10.15