> 1,如果使用Bourne shell,那么用户退出时,所有正在运行的后台进程将理所当然的被终止。
> 为了避免发生这种情况,可以使用( )命令。
>
> 2,以下哪些shell在用户退出时,所有正在运行的后台进程不会被关闭?
> A,bash B, tcsh C,ksh D,sh E,csh
>
> 3, 在sh脚本中,符号`代表( ) 命令,#代表( )
>
> 4, 请说出以下命令的含义:
> % cp `nom backup` backup
> 答:
>
> 5,请写出在当前目录开始找出所有以.c结尾的文件,并输出在屏幕上。
> % find
>
> 6,删除当前目录下(不包含子目录)所有名称以.txt结尾的文件,除了han.txt以外
> %rm
>
> 7,清空文件test.txt,并且只保留最后10行,请写出具体步骤
> %
> %
> %
>
> 8,设定文件test.sh为可执行,并且设定拥有者为test,组为livedoor。
> %
> %
>
> 9,编写用户mfx的crontab的命令为
> %
>
> 10,已知crontab的前几列如下
> #minute hour mday month wday who command
> #
> */5 * * * * root /usr/libexec/atrun
> #
>
> 请书写以mfx用户,在周二~~周五早上6:50分自动执行/home/mfx/app/bin/startmfx.sh脚本的crontab命令,并且把此命令执行的结果输出保存在/home/mfx/app/logs/startmfx.log。
>
> 11,察看unix类型操作系统网络连接状况(包括服务器)的命令为
> A, netstat -nr B,netstat –na
>
> 12,route命令可以用来查看和增加,删除本地路由表,请分别写出
> Windows,linux,bsd这3种操作系统下,追加通过网关10.4.5.32来访问
> 100.1.2.0 ,netmask 为255.255.255.0的局域网。
>
> Win) route add
> Linux) route add -net 100.1.2.0/24 gateway 10.4.5.32
> BSD) route
>
> 13,unix类型操作系统,放在哪个目录下的脚本将被系统启动的时候,自动运行?
> A, /usr/etc/ B,/usr/local/etc/rc.d/ C,/usr/etc/rc.d/ D,/usr/autorun/
>
> 14,当freebsd操作系统的root密码遗忘后,你能通过启动的时候,按住空格键,然后输入
> 命令进入单用户模式来更改超级用户的口令。
>
> 15,已知在日本的一台远程服务器,它拥有一个外部IP地址210.83.201.28,和一个局域网内部IP10.0.143.110。但远程服务器关闭了对外开放的80端口,80端口只能对局域网10.0.143.X段的用户开放使用。现已经得到该远程服务器的一个普通用户的账号及密码,请你想一个途径,来使远在大连的公司内部电脑可以访问到日本的局域网的web服务。
>
> 16,公司内部网络感觉突然变慢,已知结果为某个同事使用BT正在下载大型软件。请你使用一系列手段,定位该问题,并解决。
> 1,登录服务器,使用( )监视包发送情况,查出有异常的IP
> 2,使用 定位该可疑IP( )找出它的机器名
>
> 17,ezmlm是一个邮件列表管理工具,已知增加hanwei@livedoor.cn到邮件列表all-ml@livedoor.cn中的命令为
> ezmlm-sub /var/qmail/alias/all-ml hanwei@livedoor.cn
> 那么删除该列表中用户test@livedoor.cn的命令为?
>
>
> 18,已知Cicco 2600 路由器。s0/0 串口接外部V.35线,E0/0接100M外部网。
> 现在已经登录了路由器,请写出查看端口s0/0状态的命令?
> #
>
> 19,路由器为以下状态:
> Serial0/0 is up, line protocol is up
> Hardware is PowerQUICC Serial
> Internet address is 202.107.48.234/30
> MTU 1500 bytes, BW 1544 Kbit, DLY 20000 usec,
> reliability 255/255, txload 9/255, rxload 43/255
> Encapsulation HDLC, loopback not set, keepalive set (10 sec)
> Last input 00:00:04, output 00:00:00, output hang never
> Last clearing of "show interface" counters never
> Queueing strategy: fifo
> Output queue 0/40, 26440 drops; input queue 0/75, 5 drops
> 5 minute input rate 263000 bits/sec, 39 packets/sec
> 5 minute output rate 59000 bits/sec, 28 packets/sec
> 326144572 packets input, 2600766491 bytes, 0 no buffer
> Received 1068510 broadcasts, 0 runts, 10 giants, 0 throttles
> 184488 input errors, 127975 CRC, 55666 frame, 0 overrun, 0 ignored,
> 847 abo rt
> 268364196 packets output, 1650247021 bytes, 0 underruns
> 0 output errors, 0 collisions, 690 interface resets
> 0 output buffer failures, 0 output buffers swapped out
> 686 carrier transitions
> DCD=up DSR=up DTR=up RTS=up CTS=up
>
> 请问以上现象代表该路由器是否正常?请说明原因。
>
> 答:
>
>
> 20,鉴于目前冲击波病毒发作比较猖狂,所以我们准备在公司防火墙ipfw上
> 增加一条命令,来杜绝冲击波病毒的发作,已知目前的ipfw规则如下:
> 00400 divert 8668 ip from any to any via bge0
> 00402 allow ip from 10.4.0.0/16 to any
> 00403 allow ip from any to 10.4.0.0/16
> 65535 deny ip from any to any
> 请写出这条命令。
> %
1.nohup
2.A
3.命令替代,root用户的默认提示符
4.
5.find .-name *.c -print
6.rm -rf `ls *.txt|grep -v "3.txt"`
7.这种办法多了
tail -n 10 test.txt >test.new
rm -rf test.txt
mv test.new test.txt
8.chmod +x test.sh
chown test:livedoor test.sh
9.crontab -u mfx -e
10. 50 6 * * 2-5 mfx /home/mfx/app/bin/startmfx.sh >/home/mfx/app/logs/startmfx.log
11. B
12. WIN)route add 100.1.2.0 mask 255.255.255.0 10.4.5.32
Linux)route add -net 100.1.2.0/24 gateway 10.4.5.32
BSD)
13.题目有问题,HPUX,AIX这个都是有区别的,晕
14.boot -s
15.黑客的东东我不玩
16.netstat,ping -a
17.
18.show interface s0/0
19.看不去还算正常吧(路由器不太懂)
20.关闭135端口
1.nohup
2.a
3.`代表执行命令,#代表注释
4.把nom backup执行后的结果拷贝成 backup (nom是什么命令linux里没有啊)
5. find ./ -type f -name *.c -print
6. find ./ '(' -name "*.txt" -a ! -name han.txt ')' -exec rm -rf {} ;
7.tail -n 10 test.txt|cat>test.txt
8.chmod o+x test.sh ; chown test.livedoor test.sh
9.crontab -u mfx -e
10.50 6 * * 2,5 mfx /home/mfx/app/bin/startmfx.sh >> /home/mfx/app/logs/startmfx.log
11.b
12.
Win) route add 100.1.2.0 netmask 255.255.255.0 10.4.5.32
Linux) route add -net 100.1.2.0/24 gateway 10.4.5.32
BSD) route add 100.1.2.0 -netmask 255.255.255.0 10.4.5.32
13.linux好象没有哦。应该无答案吧
14.boot -s
15.vpn或端口转换iptables nat
16.sniffer或tcpdump或ntop或iptraf等,win下是tracert(linux下ntop还真不经常查主机名哦,谁有别的命令?请推荐)
17.ezmlm-sub /var/qmail/alias/all-ml test@livedoor.cn
18.interface s0/0
19.(哈哈,路由器这东西很少能碰到,真不会啊)
20.00401 deny tcp from any to any 135,139,445 (bsd不常用,忘记了 )