马哥教育网络班21期+第六周博客作业

1、复制/etc/rc.d/rc.sysinit文件至/tmp目录,将/tmp/rc.sysinit文件中的以至少一个空白字符开头的行的行首加#;

# cp -a /etc/rc.d/rc.sysinit /tmp/
# ls /tmp/ | grep rc.sysinit
rc.sysinit
# vim /tmp/rc.sysinit
%s@^[[:space:]]\{1,\}@#&@g

执行结果片段:

[ "$PROMPT" != no ] && plymouth --ignore-keystroke=Ii
if strstr "$cmdline" confirm ; then
#       touch /var/run/confirm
fi
# Let rhgb know that we're leaving rc.sysinit
if [ -x /bin/plymouth ]; then
#    /bin/plymouth --sysinit
fi
385 次替换,共 385 行

总结:

a、@替换前@替换后@参数

b、^[[:space:]],匹配以空格开头的行

c、{1,}表示匹配至少一次之前的RE字符

d、&表示匹配之前的内容

2、复制/boot/grub/grub.conf至/tmp目录中,删除/tmp/grub.conf文件中的行首的空白字符;

[root@C67-X64-A0 ~]# cp -a /boot/grub/grub.conf /tmp/
[root@C67-X64-A0 ~]# cat -n /tmp/grub.conf 
     1 # grub.conf generated by anaconda
     2 #
     3 # Note that you do not have to rerun grub after making changes to this file
     4 # NOTICE:  You have a /boot partition.  This means that
     5 #          all kernel and initrd paths are relative to /boot/, eg.
     6 #          root (hd0,0)
     7 #          kernel /vmlinuz-version ro root=/dev/sda5
     8 #          initrd /initrd-[generic-]version.img
     9 #boot=/dev/sda
    10 default=0
    11 timeout=5
    12 splashimage=(hd0,0)/grub/splash.xpm.gz
    13 hiddenmenu
    14 title CentOS 6 (2.6.32-573.el6.x86_64)
    15 root (hd0,0)
    16 kernel /tboot.gz logging=vga,serial,memory
    17 module /vmlinuz-2.6.32-573.el6.x86_64 ro root=UUID=922eb46f-7e6e-4670-8bf1-6f9f1b05a053 intel_iommu=on amd_iommu=on rd_NO_LUKS  KEYBOARDTYPE=pc KEYTABLE=us rd_NO_MD crashkernel=128M.UTF-8 rd_NO_LVM rd_NO_DM rhgb quiet
    18 module /initramfs-2.6.32-573.el6.x86_64.img
[root@C67-X64-A0 ~]# vim /tmp/grub.conf
%s#^[[:space:]]##g
[root@C67-X64-A0 ~]# cat -n /tmp/grub.conf 
     1 # grub.conf generated by anaconda
     2 #
     3 # Note that you do not have to rerun grub after making changes to this file
     4 # NOTICE:  You have a /boot partition.  This means that
     5 #          all kernel and initrd paths are relative to /boot/, eg.
     6 #          root (hd0,0)
     7 #          kernel /vmlinuz-version ro root=/dev/sda5
     8 #          initrd /initrd-[generic-]version.img
     9 #boot=/dev/sda
    10 default=0
    11 timeout=5
    12 splashimage=(hd0,0)/grub/splash.xpm.gz
    13 hiddenmenu
    14 title CentOS 6 (2.6.32-573.el6.x86_64)
    15 root (hd0,0)
    16 kernel /tboot.gz logging=vga,serial,memory
    17 module /vmlinuz-2.6.32-573.el6.x86_64 ro root=UUID=922eb46f-7e6e-4670-8bf1-6f9f1b05a053 intel_iommu=on amd_iommu=on rd_NO_LUKS  KEYBOARDTYPE=pc KEYTABLE=us rd_NO_MD crashkernel=128M.UTF-8 rd_NO_LVM rd_NO_DM rhgb quiet
    18 module /initramfs-2.6.32-573.el6.x86_64.img

3、删除/tmp/rc.sysinit文件中的以#开头,且后面跟了至少一个空白字符的行行的#和空白字符

# vim /tmp/rc.sysinit 
:%s@^#[[:space:]]\+@@g
执行结果如下:
Now that we have all of our basic modules loaded and the kernel going,
let's dump the syslog ring somewhere so we can find it later
[ -f /var/log/dmesg ] && mv -f /var/log/dmesg /var/log/dmesg.old
dmesg -s 131072 > /var/log/dmesg
create the crash indicator flag to warn on crashes, offer fsck with timeout
touch /.autofsck &> /dev/null
[ "$PROMPT" != no ] && plymouth --ignore-keystroke=Ii
if strstr "$cmdline" confirm ; then
        touch /var/run/confirm
fi
Let rhgb know that we're leaving rc.sysinit
if [ -x /bin/plymouth ]; then
    /bin/plymouth --sysinit
fi

4、为/tmp/grub.conf文件中前三行的行首加#号;

# vim /tmp/grub.conf
末行模式下:
1,3s@^.*@#&

5、将/etc/yum.repos.d/CentOS-Media.repo文件中所有的enabled=0或gpgcheck=0的最后的0修改为1;

%s@\(enabled\|gpgcheck\)=0@\1=1@g

6、每4小时执行一次对/etc目录的备份,备份至/backup目录中,保存的目录名为形如etc-201504020202

# mkdir -p /backup
# crontab -l
0 */4 * * * /bin/cp -a /etc/ /backup/etc-$(date +%Y%m%d%H%M)

7、每周2,4,6备份/var/log/messages文件至/backup/messages_logs/目录中,保存的文件名形如messages-20150402

# mkdir -p /backup/messages_logs
# cp -a /var/log/messages /backup/messages_logs/messages-`date +%Y%m%d`
# ls -l /backup/messages_logs/messages-201608
messages-201608    messages-20160809  
说明: messages-20160809 满足此条件
[root@C67-X64-A0 cron]# crontab -e
0 */4 * * * /bin/cp -a /etc/ /backup/etc-$(date +%Y%m%d%H%M) >/dev/null 2>&1
0 0 * * 2,4,6 /bin/cp -a /var/log/messages /backup/messages_logs/messages-`date +%Y%m%d`>/dev/null 2>&1
[root@C67-X64-A0 cron]# cat /var/spool/cron/root 
0 */4 * * * /bin/cp -a /etc/ /backup/etc-$(date +%Y%m%d%H%M) >/dev/null 2>&1
0 0 * * 2,4,6 /bin/cp -a /var/log/messages /backup/messages_logs/messages-`date +%Y%m%d`>/dev/null 2>&1

8、每天每两小时取当前系统/proc/meminfo文件中的所有以S开头的信息至/stats/memory.txt文件中

[root@C67-X64-A0 cron]# mkdir -p /stats
[root@C67-X64-A0 cron]# touch /stats/memory.txt
[root@C67-X64-A0 cron]# grep "^S" /proc/meminfo >>/stats/memory.txt
[root@C67-X64-A0 cron]# cat /stats/memory.txt 
SwapCached:            0 kB
SwapTotal:       4194300 kB
SwapFree:        4194300 kB
Shmem:              1340 kB
Slab:             134788 kB
SReclaimable:      91524 kB
SUnreclaim:        43264 kB
# crontab -e
0 */2 * * * grep "^S" /proc/meminfo >>/stats/memory.txt

9、工作日的工作时间内,每两小时执行一次echo "howdy"

0 9-18/2 * * 1-5 /bin/echo "howdy"

脚本编程练习(这里没考虑文件、用户或目录本来就存在的情况)

10、创建目录/tmp/testdir-当前日期时间; 

# mkdir -p /tmp/testdir-$(date +%F)

11、在此目录创建100个空文件:file1-file100

#!/bin/bash
#created by molewan
for i in `seq 1 100`
do
touch file$i
done

12、显示/etc/passwd文件中位于第偶数行的用户的用户名;

# sed -n 'n;p' /etc/passwd |awk -F":" '{print $1}'

13、创建10用户user10-user19;密码同用户名;

#!/bin/bash
#created by molewan
for i in $(seq 10 19)
        do
                useradd user$i
                echo user$i | passwd --stdin user$i
        done

14、在/tmp/创建10个空文件file10-file19; 

15、把file10的属主和属组改为user10,依次类推。

#!/bin/bash
#created by molewan
for i in $(seq 10 19)
        do
                touch file$i
chown user$i:user$i /tmp/file$i
        done

原创文章,作者:Net21-冰冻vs西瓜,如若转载,请注明出处:http://www.178linux.com/31947

(0)
Net21-冰冻vs西瓜Net21-冰冻vs西瓜
上一篇 2016-08-15
下一篇 2016-08-15

相关推荐

  • Linux风水学

    Linux风水学童 有的没的说一说 说一个,到一个。想起哪个说哪个,说起哪个都不错。 对于接触过一点点Linux的风水学童的我来说,还在苦背天地玄黄,宇宙洪荒。虽然不懂是干什么的,但是心里总有个声音告诉我,这些鬼画符肯定有用。总有一天我能成为一个合格的Linux风水师,去某个员外家里施展堪舆之术被奉为上宾。 Linux流派大概   相对于目前的流派…

    2017-07-18
  • LINUX命令帮助

    命令帮助 在维护和使用Linux系统时,常常会遇到忘记命令的使用方法,遇到一个比较陌生的命令,又或者想知道这个命令是什么的情况可以查看命令使用帮助。 LINUX命令使用帮助可参考:程序自身的帮助文档、官方文档、官方站点、LINUX的发行版官方文档、其他网站或者搜索引擎 LINUX命令分为内部命令(shell内置的命令)和外部命令,内部命令和外部命令…

    Linux干货 2017-05-28
  • mysql cluster安装部署

    一、安装要求 安装环境:CentOS-6.5-32bit 软件名称:mysql-cluster-gpl-7.2.25-linux2.6-i686.tar.gz 下载地址:http://mysql.mirror.kangaroot.net/Downloads/ 软件包:mysql-cluster-gpl-7.2.25-linux2.6-i686.tar.gz …

    Linux干货 2016-08-22
  • 如何删除一个目录下的所有文件,但保留一个指定文件。附一些常用命令

    解答: 假设这个目录是/xx/,里面有file1,file2,file3..file10   十个文件 方法如下: find /date -type f ! -name “file10″|xargs rm -f 另外还有其他的方法比如:rsync命令和bush的 extglob功能等。在此不一一列举。 附常用命令: 文件和目…

    2017-07-15
  • 流式传输的两大主流种类及流式传输特点

     流式传输定义很广泛,现在主要指通过网络传送媒体(如视频、音频)的技术总称。其特定含义为通过Internet 将影视节目传送到PC机。实现流式传输有两种方法:实时流式传输(Realtime streaming)和顺序流式传输(progressive streaming)。(百度百科)     在网络上传输音/视频(英文…

    Linux干货 2015-04-10
  • 8月2日作业

    在/data/testdir里创建的新文件自动属于g1组,组g2的成员如:alice能对这些新文件有读写权限,组g3的成员如:tom只能对新文件有读权限,其它用户(不属于g1,g2,g3)不能访问这个文件夹。 [root@localhost ~]# groupadd g1 [root@localhost ~]# groupadd g2 [root@local…

    Linux干货 2016-08-05

评论列表(1条)

  • 马哥教育
    马哥教育 2016-08-17 15:05

    写的很好,排版也很棒,加油