Liunx运维工程师面试题.docVIP

  • 125
  • 0
  • 约2.48万字
  • 约 27页
  • 2017-09-18 发布于安徽
  • 举报
1、如何将本地80端口的请求转发到8080端口,当前主机IP为 Iptables A PREROUTING d 09 p tcp m tcp –dport 80 j DNAT –todestination 8:9000 2、 在11月份内,每天的早上6点到12点中,每隔2小时执行一次/usr/bin/httpd.sh 怎么实现 0 612/2 * 11 * /usr/bin/httpd.sh 3、编写个shell脚本将/usr/local/test 目录下大于100K的文件转移到/tmp目录下 #!/bin/bash for file in `ls /root` do if [ -f $file ]; then if [ `ls l $file|awk {print $5}` gt 10000 ]; then mv $file /tmp/ fi fi done 4、简述raid0 raid1 raid5 三种工作模式的工作原理及特点。 RAID 0:连续以位或字节为单位分割数据,并行读/写于多个磁盘上,因此具有很高的数据 传输率,但它没有数据冗余,因此并不能算是真正的RAID结构。RAID 0只是单纯

文档评论(0)

1亿VIP精品文档

相关文档