1、查找/etc目录下大于1M且类型为普通文件的所有文件
使用find /etc -type f -a size +1M -exec ls -lh {} \;
命令过滤条件为1M以上且类型为普通文件的文件
[root@localhost ~]# find /etc -type f -a -size +1M -exec ls -lh {} \;
-rw-r--r--. 1 root root 26M Nov 3 19:25 /etc/adjtime
-r--r--r--. 1 root root 9.0M Aug 27 01:46 /etc/udev/hwdb.bin
-rw-r--r--. 1 root root 8.3M Aug 27 01:42 /etc/selinux/targeted/policy/policy.31
2、打包/etc/目录下面所有conf结尾的文件,压缩包名称为当天的时间,并拷贝到/usr/local/src目录备份。
[root@localhost ~]# tar cPvf /usr/local/src/`date +"%F"`.tar.gz `find /etc -name "*.conf"`
/etc/smartmontools/smartd.conf
/etc/sudo-ldap.conf
...
/etc/sudo.conf
/etc/man_db.conf
/etc/pbm2ppa.conf
/etc/pnm2ppa.conf
/etc/vconsole.conf
/etc/locale.conf
[root@localhost ~]#
3、利用sed 取出ifconfig命令中本机的IPv4地址
[root@localhost ~]# ifconfig | sed -En '/inet/s/inet[[:space:]](.*)[[:space:]]net.*/\1/p'
10.0.0.203
127.0.0.1
[root@localhost ~]#
4、删除/etc/fstab文件中所有以#开头,后面至少跟一个空白字符的行的行首的#和空白字符
[root@localhost ~]# sed -En '/^#[[:space:]]+/s/#[[:space:]](.*)/\1/p' /etc/fstab
/etc/fstab
Created by anaconda on Wed Aug 26 13:40:46 2020
Accessible filesystems, by reference, are maintained under '/dev/disk/'.
See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info.
After editing this file, run 'systemctl daemon-reload' to update systemd
units generated from this file.
[root@localhost ~]#
[root@localhost ~]#
5、处理/etc/fstab路径,使用sed命令取出其目录名和基名
[root@localhost ~]# echo /etc/fstab | sed -En '/.*/s/(\/.*)\/(.*)/\1/p' #目录名
/etc
[root@localhost ~]#
[root@localhost ~]# echo /etc/fstab | sed -En '/.*/s/(\/.*)\/(.*)/\2/p' #基名
fstab
[root@localhost ~]#
架构作业
1、安装配置kvm虚拟机,并创建虚拟机。
2、安装配置openstack,并创建虚拟机。