1、在/ usr 目录中新建一个目录名称为: mytest 。并在 mytest 目录中新建文件 net . txt 。设置文件的属性为文件属主( u )增加执行权限,文件属主同组用户( g )增加写入权限,其他用户( o )除读权限。
cd /usr
mkdir mytest
cd mytest
touch net.txt
chmod u+x net.txt
chmod g+w net.txt
chmod o-r net.txt
2、将 mytest 目录归档,并将其压缩成 gz 格式。列出归档文件里的内容
cd ..
tar -zcf mytest.gz mytest
tar -tf mytest.gz
mytest/
mytest/net.txt
3、查找/ etc 目录下大于20K且类型为普通文件的所有文件。
查找/ etc 目录下以 lvm 开头并且文件格式为. conf 的所有文件
cd /etc
find -type f -size +20k
find -name "lvm*.conf"