文件查找
which:命令查找。
[root@learn ~]# which ls
alias ls='ls --color=auto'#别名,相当于缩写
/usr/bin/ls
whereis ls
find:文件查找,针对文件名
#语法:find [path] [options] [expression] [action]
命令 路径 选项 表达式 动作
find /etc -name '1.txt' -ls#在etc下查询1.txt文件,精确权限显示
find /etc -iname "host"#-i忽略大小写,在etc下查询host文件
find /etc -size +5M#在etc下查询大于5M 的文件
find /home -user jack#查找属主是jack的文件
find /home -group jack#查找属组是jack的文件
find /dev -type d#查找文件类型为f的目录文件
find ./ -perm 644 #查找权限为644的文件
find ./ -perm 644 -delete#查找权限为644的文件并删除
find ./ -perm 644 -ok cp -rvf {} /tmp \ #查找权限为644的文件并复制到tmp下
locate:文件查找,依赖数据库
文件打包和压缩
tar命令是Linux系统冲备份文件的可靠方法,几乎可以工作于任何环境中,它的使用权限是所有用户。
建议针对目录。
#语法:tar 选项 压缩包名称 源文件
tar -cf etc.tar /etc
tar -czf etc-gzip.tar.gz /etc#z是gzip
tar -cjf etc-bzip.tar.bz /etc/#j是bzip
tar -cJf etc-xzip.tar.xz /etc/#J是xzip
ll-h etc*#观察三个包的体积。
-rw-r--r--.1 root root 11M 10 14 10:07 etc-gzip.tar.gz
-rw-r--r--.1 root root 8.9M 10 14 10:08 etc-bzip.tar.bz
-rw-r--r--.1 root root 7.6M 10 14 10:08 etc-xzip.tar.xz
#压缩速度和压缩体积成反比。
#查看
tar -tf etc.tar#t查看f文件名
tar xf etc3.tar.xz#解压缩
tar -xvf etc2.tar.bz2 -C /tmp/ #-C定向到/tmp目录