1. 使用 sed 命令打印出 /etc/passwd 文件中的奇数行内容
sed -n '1~2p' /etc/passwd
2. 使用 sed 命令将 /etc/passwd 文件从 2 到 10 行中的 bin 替换成 linux ?
sed -i '2,10s#bin#linux#g' /etc/passwd
3. 使用 sed 命令显示 /etc/passwd 文件的最后一行信息内容
[21:19:54 root@centos8 test]#sed -n '$p' /etc/passwd
postfix:x:89:89::/var/spool/postfix:/sbin/nologin
4. 使用 sed 命令删除 /etc/fstab 文件中所有以 '#' 为注释的行和其后面紧挨着的空白字符,达到去除注释的目的
sed -i -e '/^#$/d' -e '/^#/d' /etc/fstab
删除空白行,删除只有#的行,将#+空格开头的行的#和空格删除
sed -ri -e 's/^# (.*)/1/g' -e '/^#$/d' -e '/^$/d' /etc/fstab
5. 使用 sed 命令将 /etc/passwd 前三行信息保存至 /root/file.txt 文件中
1)
[21:38:24 root@centos8 test]#sed -n '1,3p' /etc/passwd >> /root/file.txt
[21:38:26 root@centos8 test]#cat /root/file.txt
root:x:0:0:root:/root:/bin/bash
bin:x:1:1:bin:/bin:/sbin/nologin
daemon:x:2:2:daemon:/sbin:/sbin/nologin
2)
sed '1,3w /root/file.txt' /etc/passwd
6、使用rpm命令安装、卸载、更新ntp-0.7.12x86_64.rpm软件包?
安装: rpm -ivh ntp-0.7.12x86_64.rpm
卸载: rpm -e –nodeps ntp-0.7.12x86_64.rpm
更新: rpm -Uvh ntp-0.7.12x86_64.rpm
7、哪个命令可查看安装openssl.x86.rpm包的依赖关系,
查询会安装哪⼏个⽂件,分别到哪个⽬录,⽽不实际安装?
如何查询openssl安装的时间?如何查询/usr/lib/libssl.so.6属于哪个包安装的?
查看openssl.x86.rpm依赖关系:rpm -qpR openssl.x86.rpm
查询openssl.x86.rpm会安装哪些文件:rpm -ql openssl.x86.rpm
查询openssl.x86.rpm安装时间:rpm -qi openssl.x86.rpm
查询/usr/lib/libssl.so.6属于哪个包安装:rpm -qf /usr/lib/libssl.so.6
8,实现开机自动挂载光盘
sed -i '$a/dev/sr0 /media iso9660 defaults 0 0' /etc/fstab
mount -a
9、查看系统是否安装reids软件
rpm -qa | grep redis