1 文件查找

文件系统查找符合条件的文件
文件查找locatefind

1.1 locate

工作特点:
格式

Usage: locate [OPTION]... [PATTERN]...

常用选项

-i :不区分大小写搜索
-n N :只列举前N个匹配项目
-r使用基本正则表达式

范例:

# 搜索名称或者路径包含"conf"的文件
locate conf
# 使用Regex正则表达式搜索以".conf"结尾的文件
locate -r ".conf$"

范例:locatedb创建数据库

~ yum install -y mlocate
~ locate conf
locate: can not stat o "/var /lib/mlocate/locate.db" : No such file or directory
~ updatedb
~ ls -l /var/lib/mlocate/mlocate.db
-rw-r----- 1 root slocate 9464071 May 22 12:51 /var/lib/mlocate/mlocate.db
~ locate -n 3 conf
/boot/config-3.10.0-1160.el7.x86_64
/boot/grub/grub.conf
/boot/grub2/i386-pc/configfile.mod

范例:文件新创建删除,无法马上更新 locatedb 数据库

~ touch test.log
~ locate test.log
locate: can not stat o "/var /lib/mlocate/locate.db" : No such file or directory
~ updatedb
~ locate test.log
/root/test.log
~ rm -rf test.log
~ locate test.log
/root/test.log

范例:

~ locate -n 10 -ir '.CONF$'
/boot/grub/grub.conf
/data/etc2022-05-17/asound.conf
/data/etc2022-05-17/chrony.conf
/data/etc2022-05-17/dracut.conf
/data/etc2022-05-17/e2fsck.conf
/data/etc2022-05-17/grub.conf
/data/etc2022-05-17/host.conf
/data/etc2022-05-17/idmapd.conf
/data/etc2022-05-17/kdump.conf
/data/etc2022-05-17/krb5.conf

1.2 find

find实时查找工具通过遍历指定路径完成文件查找默认递归包含隐藏文件的查找
工作特点:
格式:

find [OPTION]... [查找路径] [查找条件] [处理动作]

查找路径指定具体目标路径默认当前目录
查找条件指定的查找标准可以文件名大小类型权限标准进行;默认找出指定路径下的所有文件
处理动作:对符合条件的文件做操作默认输出屏幕

1.2.1 指定搜索目录层级

maxdepth level最大搜索目录深度指定目录下的文件为第一级
mindepth level最小搜索目录深度
范例:

find /etc -maxdepth 2 -mindepth 2

1.2.2 对每个目录先处理目录内的文件,再处理目录本身

depthd影响显示次序。
-d # hwarning: the -d option is deprecated; please usedepth instead,because the latter is a POSIX-compliant feature
默认处理目录,后处理文件
范例:

~ tree /data/test/
/data/test/
├── f1.txt
├── f2.txt
└── test2
    └── test3
        ├── f3.txt
        └── f4.txt

2 directories, 4 files

~ find /data/test/
/data/test/
/data/test/f1.txt
/data/test/f2.txt
/data/test/test2
/data/test/test2/test3
/data/test/test2/test3/f3.txt
/data/test/test2/test3/f4.txt

~ find /data/test/ -depth
/data/test/f1.txt
/data/test/f2.txt
/data/test/test2/test3/f3.txt
/data/test/test2/test3/f4.txt
/data/test/test2/test3
/data/test/test2
/data/test/

1.2.3 根据文件名inode查找

范例:

~ find -name snow.png
~ find -iname snow.png
~ find . -name "*.txt"
~ find /var -name "log*"

~ find . -regex ".*.txt$"
./f1.txt
./f2.txt
./test2/test3/f3.txt
./test2/test3/f4.txt

1.2.4 根据属主、属组查找

范例:

~ find /home -user zzw -ls
67112643    0 drwx------   2 zzw      zzw            62 May 15 17:59 /home/zzw
67112644    4 -rw-r--r--   1 zzw      zzw            18 Apr  1  2020 /home/zzw/.bash_logout
67112645    4 -rw-r--r--   1 zzw      zzw           193 Apr  1  2020 /home/zzw/.bash_profile
67112646    4 -rw-r--r--   1 zzw      zzw           231 Apr  1  2020 /home/zzw/.bashrc

~ find / -nouser -ls
~ find / -nogroup -ls

1.2.5 根据文件类型查找

type TYPE
TYPE 可以是以下形式:

范例:

~ find /etc -type d -ls
~ find /etc -type f -ls

1.2.6 空文件或者目录

empty
范例:

~ find /data/test/ -type d -empty
~ find /data/test/ -empty -ls

1.2.7 组合条件

与:-a,默认多个条件是与关系
或:-o
非:-not !
范例:

~ find /etc/ -type d -o -type l | wc -l
768
~ find /etc/ -type d -o -type l -ls | wc -l # ( find /etc/ -type d -o -type l -a -ls | wc -l )
137
~ find /etc/ ( -type d -o -type l ) -ls | wc -l
768

德-摩根定律:
(非 A) 或 (非 B) = 非(A 且 B)
(非 A) 且 (非 B) = 非(A 或 B)
示例
!A -a !B = !(A -o B)
!A -o !B = !(A -a B)
范例:

find -user joe -group joe
find -user joe -not -group joe
find -user joe -o -user jane
# 搜索文件和目录所有者不是joe并且也不是jane
find -not ( -user joe -o -user jane )
find / -user joe -o -uid 500

范例:

# 查找文件类型不是目录并且不为空的文件和目录
~ find ! ( -type d -a -empty ) | wc -l
~ find ! -type d -o ! -empty | wc -l

~ find /home/ ! -user wang ! -user mage -ls
~ find ! ( -user wang -o -user mage )
~ find ! -user wang -a ! -user mage

# 找出/tmp 目录下,属主不是root,并且文件名不以f开头的文件
find /tmp ( -not -user root -a -not -name "-f" ) -ls
find /tmp -not ( -user root -o -name "-f" ) -ls

1.2.8 排除目录

范例:

#查找/etc/下,除/etc/sane.d目录的其它所有.conf后缀的文件
# /etc/sane.d 后面不能出现 / 即:/etc/sane.d/
find /etc -path '/etc/sane.d' -a -prune -o -name "*.conf"

#查找/etc/下,除/etc/sane.d和/etc/fonts两个目录的所有.conf后缀的文件
find /etc ( -path "/etc/sane.d" -o -path "/etc/fonts" ) -a -prune -o -name "*.conf"

# 排除/proc和/sys目录
find / ( -path "/sys" -o -path "/proc" ) -a -prune -o -type f -a -mmin -1

1.2.9 根据文件大小来查找

size [+|-]#UNIT # 常用单位k,M,G,c(byte),注意大小写敏感

  • #UNIT: (#-1, #],如:6k 表示(5k,6k]
  • -#UNIT:[0,#-1],如:-6k 表示[0,5k]
  • +#UNIT:(#,∞),如:+6k 表示(6k,∞)

范例:

# 搜索1k范围是在不包含0字节但是大于0字节,小于等于1字节范围
~ find /data/test/ -size 1k -ls

# 搜索2k范围是在不包含1024字节但是大于1024,小于等于2048的范围
~ find /data/test/ -size 2k -ls

# 搜索0字节到5k的范围
~ find /data/test/ -size -6k -ls

# 搜索大于2k但是不包含2k,到无穷
~ find /data/test/ -size +2k -ls

~ find / -size +10G
~ ls -lh /proc/kcore
~ du -sh /proc/kcore

1.2.10 根据时间

以“天”为单位

以“分钟”为单位

1.2.11 根据权限查找

perm [/|-]MODE
MODE: 精确权匹配
/MODE:任何一类(u,g,o)对象权限中只要能一位匹配即可关系,+ 从CentOS 7开始淘汰
-MODE:每一类对象都必须同时拥有指定权限关系
0: 表示关注
说明

范例:

~ chmod 600 f1.txt
~ find . -type f -perm 600 -ls
67268584    0 -rw-------   1 root     root            0 May 22 13:12 ./f1.txt

# 搜索权限为222(--w--w--w-,即所有者,所属组,其他人都只有写权限)的文件
~ find -perm 222 -type f -ls

# 搜索权限为-222(--w--w--w-,即所有者,所属组,其他人都要有写权限)为文件和目录
~ find -perm -222 -type f -type d -ls

# 搜索权限为/222(--w--w--w-,即所有者,所属组,其他人任意一组有写权限)为文件和目录
~ find -perm /222 -type f -type d -ls

1.2.12 正则表达式

regextype type
Changes the regular expression syntax understood by –regex and -iregex tests which occur later on
the command line. Currently-implemented types are emacs (this is the default), posix-awk, posix-
basic, posix-egrep and posix-extended.
regex pattern
File name matches regular expression pattern. This is a match on the whole path, not a search.
For example, to match a file named ./fubar3', you can use the regular expression .*bar.’ or
.*b.*3', but not f.*r3’. The regular expressions understood by find are by default Emacs Regular
Expressions, but this can be changed with the –regextype option.
范例:

find /data -regextype posix-extended -regex "regix"

1.2.13 处理动作

范例:

#备份配置文件添加.orig这个扩展名
find -name ".conf" -exec cp {} {}.orig ;

#提示删除存在时间超过3天以上的joe的临时文件
find /tmp -ctime +3 -user joe -ok rm {} ;

#在主目录中寻找可被其它用户写入的文件
find ~ -perm -002 -exec chmod o-w {} ;

#查找/data下的权限为644,后缀为sh的普通文件,增加执行权限
find /data –type f -perm 644 -name ".sh"exec chmod 755 {} ;

~ find -name "*.sh" -ok mv {} /opt ; 
~ find -name "*.sh" -exec mv {} /opt ;

1.3 参数替换 xargs

由于很多命令不支持管道 | 来作为传递参数,xargs 用于产生某个命令的参数,xargs 可以读入 stdin 的数据,并且以空格符或者回车符stdin 的数据分隔成为参数。(即很多命令不支持标准输入可以通过 xargs 命令来使命令支持标准输入
另外,许多命令不能接受过多的参数,命令执行可能失败,xargs 可以解决
注意:文件名或者是其他意义的名词内含有空格符的情况。
find 和 xargs组合
find | xargs COMMMAND
范例:

# xargs 命令的使用
~ type xargs
~ xargs --help
Usage: xargs [OPTION]... COMMAND INITIAL-ARGS...
~ echo /etc/passwd | xargs ls -l
-rw-r--r-- 1 root root 1927 May 21 22:57 /etc/passwd

# xargs 默认会以横向的方式显示(默认行为
~ echo {1..10} | xargs
~ echo {1..10} | xargs -n1
~ echo {1..10} | xargs -n2
~ seq 3
1
2
3
~ seq 3 | xargs
1 2 3

# 删除当前目录下的大量文件
~ ls | xargs rm -rf

# 批量创建用户
echo user{1..9} | xargs -n1 useradd
# 批量删除用户
echo user{1..9} | xargs -n1 userdel -rf

#这个命令是错误的,7代表可读可写可执行,权限也为或的关系,0代表不关心
find /sbin/ -perm /700 | ls -l

# 查找有特殊权限的文件,并排序,7代表可读可写可执行,权限也为或的关系,0代表不关心
find /bin/ -perm /7000 | xargs ls -lS
# 此命令和上面有何区别?查找是否有suid,sgid,stick三个特殊权限均有的文件,0代表不关心
find /bin/ -perm -7000 | xargs ls -lS
# 以字符nul分隔
# print 0 :0作为文件名的切割
find -type f -name "*.txt" -print0 | xargs -0 rm

# 并发执行多个进程
seq 100 | xargs -i -P10 wget -P /data http://10.0.0.100/{}.html

# 并行下载bilibili视频
yum install -y python3-pip
pip3 install you-get
seq 10 | xargs -i -P3 you-get https://www.bilibili.com/video/BV1PZ4y1k7m1?p={}&spm_id_from=pageDriver
#并行下载视频 -P 并发量为 3
seq 389 | xargs -i -P3 you-get https://www.bilibili.com/video/av36489007?p={}

1.4 练习

# 1、查找/var目录下属主为root,且属组为mail的所有文件
# 2、查找/var目录下不属于root、lp、gdm的所有文件
# 3、查找/var目录下最近一周内其内容修改过,同时属主不为root,也不是postfix的文件
# 4、查找当前系统没有属主或属组,且最近一个周内曾被访问过的文件
# 5、查找/etc目录下大于1M且类型为普通文件的所有文件
# 6、查找/etc目录下所有用户都没有写权限的文件
# 7、查找/etc目录下至少有一类用户没有执行权限的文件
# 8、查找/etc/init.d目录下,所有用户都有执行权限,且其它用户有写权限的文件
# 1、查找/var目录下属主为root,且属组为mail的所有文件
~ find /var -type f -user root -group mail -ls

# 2、查找/var目录下不属于root、lp、gdm的所有文件
~ find /var ! ( -user root -o -user lp -o -user gdm ) -type f | xargs ls -l
~ find /var ! -user root ! -user lp ! -user gdm -type f | xargs ls -l

# 3、查找/var目录下最近一周内其内容修改过,同时属主不为root,也不是postfix的文件
~ find /var ! ( -user root -o -user postfix ) -mtime -7 -type f -ls
~ find /var ! -user root ! -user postfix -mtime -7 -type f -ls 

# 4、查找当前系统上没有属主或属组,且最近一个周内曾被访问过的文件
~ find / -nouser -nogroup -atime -7 -type f -ls

# 5、查找/etc目录下大于1M且类型为普通文件的所有文件
~ find /etc -size +1M -type f | xargs ls -lh

# 6、查找/etc目录下所有用户都没有写权限的文件
~ find /etc ! -perm /222 -type f -ls

# 7、查找/etc目录下至少有一类用户没有执行权限的文件
~ find /etc ! -perm /111 -type f -ls

# 8、查找/etc/init.d目录下,所有用户都有执行权限,且其它用户有写权限的文件
~ find /etc/init.d -perm -111 -perm /002 -ls
~ find /etc/init.d -perm -113 -ls

2 压缩解压缩

压缩简单思路就是将文件中相同的字符变成一个较短的单一的字符来表示;例如:如果zhongzw的字符在进行压缩时,会制作一个转换表,在转换表中会有一个z来表示zhongzw,这样就节省空间。如果有1M的0,在压缩时,则会显示1M0,用1M0来表示1M的0。3个字符来表示1M的0。
主要针对单个文件压缩,而非目录

2.1 compress 和 uncompress

Linux compress命令是一个相当古老的 unix 档案压缩指令,压缩后的档案会加上一个 .Z 延伸档名以区别未压缩的档案,压缩后的档案可以以 uncompress 解压。若要将数个档案压成一个压缩档,必须先将档案 tar 起来再压缩。由于 gzip 可以产生更理想的压缩比例,一般人多已改用 gzip 为档案压缩工具
工具来自于ncompress包,此工具目前已经很少使用
对应的文件是Z后缀
格式:

compress Options [file ...]
uncompress file.Z # 解压缩

常用选项

zcat file.Z 不显式解压缩的提前下查看文本文件内容
范例:

zcat file.Z > file

uncompress file.Z 解压缩
范例:常用搭配

compress-c message > message.Z
uncompress -c message.Z > m
zcat message.Z

2.2 gzip 和 gunzip

Linux gzip命令用于压缩文件
gzip是个使用广泛的压缩程序,文件经它压缩过后,其名称后面会多出”.gz“的扩展名
来自 gzip 包,对应的文件是 .gz 后缀
格式:

gzip [OPTION]... FILE...

常用选项:
范例:

# 解压缩
gunzip file.gz
# 不显式解压缩的提前下查看文本文件内容
zcat file.gz

范例:常用搭配

bzip2 -c messages > messages.bz2 = bzip2 -k messages
bunzip2 -c messages.bz2 > messages.bz2
bzcat messages.bz2
cat messages | bzip2 > messagesbak.bz2
cat messages | xz > messagebk.xz

2.3 bzip2 和 bunzip2

Linux bzip2命令是.bz2文件的压缩程序
bzip2采用新的压缩演算法,压缩效果传统的LZ77/LZ78压缩演算法来得好。若没有加上任何参数,bzip2压缩完文件后会产生.bz2的压缩文件,并删除原始的文件。
来自 bzip2 包,对应的文件是 .bz2 后缀
格式:

bzip2 [OPTION]... FILE...

常用选项:
范例:

# 解压
bunzip2 file.bz2 
# 不显式解压缩的提前下查看文本文件内容
bzcat file.bz2

范例:常用搭配

bzip2 -c messages > messages.bz2 = bzip2 -k messages
bunzip2 -c messages.bz2 > messages.bz2
bzcat messages.bz2
cat messages | bzip2 > messagesbak.bz2
cat messages | xz > messagebk.xz

2.4 xz 和 unxz

来自 xz 包,对应的文件是 .xz 后缀
格式:

xz [OPTION]... FILE...

常用选项:
范例:

# 解压缩
unxz file.xz
# 不显式解压缩的提前下查看文本文件的内容
xzcat file.xz

范例:常用搭配

xz -k messages
unxz -k messages.xz
xzcat messages.xz

2.5 zip 和 unzip

zip 可以实现打包目录并且压缩
zip 可以实现打包目录和多个文件成一个文件并压缩,但可能会丢失文件属性信息,如:所有者和组信息,一般建议使用tar代替
分别来自于zlip和unzip包
对应的文件是.zip后缀
范例:zip 的帮助

~ zip --help
Copyright (c) 1990-2008 Info-ZIP - Type 'zip "-L"' for software license.
Zip 3.0 (July 5th 2008). Usage:
zip [-options] [-b path] [-t mmddyyyy] [-n suffixes] [zipfile list] [-xi list]
  The default action is to add or replace zipfile entries from list, which
  can include the special name - to compress standard input.
  If zipfile and list are omitted, zip compresses stdin to stdout.
  -f   freshen: only changed files  -u   update: only changed or new files
  -d   delete entries in zipfile    -m   move into zipfile (delete OS files)
  -r   recurse into directories     -j   junk (don't record) directory names
  -0   store only                   -l   convert LF to CR LF (-ll CR LF to LF)
  -1   compress faster              -9   compress better
  -q   quiet operation              -v   verbose operation/print version info
  -c   add one-line comments        -z   add zipfile comment
  -@   read names from stdin        -o   make zipfile as old as latest entry
  -x   exclude the following names  -i   include only the following names
  -F   fix zipfile (-FF try harder) -D   do not add directory entries
  -A   adjust self-extracting exe   -J   junk zipfile prefix (unzipsfx)
  -T   test zipfile integrity       -X   eXclude eXtra file attributes
  -y   store symbolic links as the link instead of the referenced file
  -e   encrypt                      -n   don't compress these suffixes
  -h2  show more help
# 查看更多帮助  
~ zip -h2

Extended Help for Zip

See the Zip Manual for more detailed help


Zip stores files in zip archives.  The default action is to add or replace
zipfile entries.

Basic command line:
  zip options archive_name file file ...

Some examples:
  Add file.txt to z.zip (create z if needed):      zip z file.txt
  Zip all files in current dir:                    zip z *
  Zip files in current dir and subdirs also:       zip -r z .

范例:

#打包并压缩
zip –r /backup/sysconfig.zip /etc/sysconfig/

#默认解压缩至当前目录
unzip /backup/sysconfig.zip

#解压缩至指定目录
unzip /backup/sysconfig.zip -d /tmp

#解压缩至指定目录
cat /var/log/messages | zip messages - (-代表/var/log/messages)
unzip -p message.gz > message #-p 表示管道

范例:交互式加密解密

~ zip -e kubesphere.zip *
Enter password:
Verify password:
  adding: etc.zip (stored 0%)
  adding: messages.bz2 (stored 0%)
  adding: messages.gz (stored 0%)
  adding: messages.xz (stored 0%)
  adding: messages.Z (stored 0%)
  
~ unzip kubesphere.zip
Archive:  kubesphere.zip
[kubesphere.zip] etc.zip password:
password incorrect--reenter:

范例:非交互式加密解密

~ zip -P Admin@h3c kubesphere.zip *
  adding: etc.zip (stored 0%)
  adding: messages.bz2 (stored 0%)
  adding: messages.gz (stored 0%)
  adding: messages.xz (stored 0%)
  adding: messages.Z (stored 0%)
  
~ unzip -P Admin@h3c kubesphere.zip
Archive:  kubesphere.zip

3 打包和解包

3.1 tar

tar 即 Tape ARchive,磁带归档,经常用于备份可以对目录和多个文件打包一个文件,并且可以压缩,保留文件属性丢失,常用于备份功能推荐使用。
tar用来建立,还原备份文件工具程序,它可以加入,解开备份文件内的文件。
对应的文件是 .tar 后缀
格式:
tar [-ABcdgGhiklmMoOpPrRsStuUvwWxzZ][-b <区块数目>][-C <目的目录>][-f <备份文件>][-F <Script文件>][-K <文件>][-L <媒体容量>][-N <日期时间>][-T <范本文件>][-V <卷册名称>][-X <范本文件>][-<设备编号><存储密度>][–afterdate=<日期时间>][–atime-preserve][–backuup=<备份方式>][–checkpoint][–concatenate][–confirmation][–delete][–exclude=<范本样式>][–forcelocal][–group=<群组名称>][–help][–ignorefailedread][–newvolume-script=<Script文件>][–newer-mtime][–no-recursion][–null][–numericowner][–owner=<用户名称>][–posix][–erve][–preserveorder][–preservepermissions][–record-size=<区块数目>][–recursive-unlink][–remove-files][–rsh-command=<执行指令>][–same-owner][–suffix=<备份字尾字符串>][–totals][–use-compress-program=<执行指令>][–version][–volno-file=<编号文件>][文件或目录…]
选项:

(1)创建归档,保留权限

# c:创建打包文件,p:保留权限,v:查看过程,f:指定路径
tar -cpvf /PATH/FILE.tar FILE...

(2)追加文件至归档:注:不支持对压缩文件追加

# r:追加文件至归档,f:指定路径
tar -rf /PATH/FILE.tar FILE...

(3)查看归档文件中的文件列表

# t:查看归档文件中的文件列表,f:指定路径
tar -tf /PATH/FILE.tar

(4)展开归档

# x:解压缩,f:指定路径,-C:指定解压缩路径
tar xf /PATH/FILE.tar
tar xf /PATH/FILE.tar -C /PATH/

(5)结合压缩工具实现:归档并压缩
范例:

tar -zcpvf etc.tar.gz /etc/
tar -jcpvf etc.tar.bz /etc/
tar -Jcpvf etc.tar.xz /etc/

# 只打包目录内的文件,不包括目录本身
tar -zxvf /root/etc.tar.gz /etc/

# 利用 tar 进行文件复制
tar c /data/ | tar -x -C /backup

exclude 排除文件
范例:

tar zcvf /root/a.tgz --exclude=/app/host1 --exclude=/app/host2 /app

范例:

tar zcvf mybackup.tgz -T /root/includefilelist -X /root/excludefilelist

范例:解压压缩包中指定的文件到指定的目录中

# 将 k9s_Linux_amd64.tar.gz 中的 k9s 解压到 /usr/local/bin/
$ tar -zxvf k9s_Linux_amd64.tar.gz -C /usr/local/bin/ k9s
$ ls -l /usr/local/bin/k9s 
-rwxr-xr-x 1 root root 60559360 58 01:01 /usr/local/bin/k9s

3.2 split

split 命令可以分割一个文件为多个文件
格式:
split [–help][–version][-<行数>][-b <字节>][-C <字节>][-l <行数>][要切割的文件][输出文件名]
选项:

范例:

#分割大的 tar 文件为多份小文件
split -b Size –d tar-file-name prefix-name

# 示例
split -b 1M mybackup.tgz mybackup-parts

#切换成的多个小分文件使用数字后缀
split -b 1M –d mybackup.tgz mybackup-parts

将多个切割的小文件合并成一个大文件

cat mybackup-parts* > mybackup.tar.gz

范例:分割一个文件为多个文件

~ dd if=/dev/zero of=/data/test/big.img bs=1M count=30
~ ls -lh
total 41M
-rw-r--r-- 1 root root 30M May 22 16:11 big.img
~ split -b1m -d big.img bigfile
~ split -b 10m -d big.img bigile
~ ls -l
total 72660
-rw-r--r-- 1 root root 10485760 May 22 16:12 bigile00
-rw-r--r-- 1 root root 10485760 May 22 16:12 bigile01
-rw-r--r-- 1 root root 10485760 May 22 16:12 bigile02

范例:将多个切割的小文件合并成一个大文件

~ cat bigile0* > bigfile.tar
~ ls -lh bigfile.tar
-rw-r--r-- 1 root root 30M May 22 16:13 bigfile.tar

3.3 cpio

cpio 是历史悠久的打包和解工具,不过目前也已经较少使用
cpio 命令是通过重定向的方式将文件进行打包备份,还原恢复工具,它可以解压以 ”.cpio“ 或者 “.tar” 结尾的文件。
格式:
cpio [-0aABckLovV][-C <输入/输出大小>][-F <备份档>][-H <备份格式>][-O <备份档>][–block-size=<区块大小>][–force-local][–help][–quiet][–version]或 cpio [-bBcdfikmnrsStuvV][-C <输入/输出大小>][-E <范本文件>][-F <备份档>][-H <备份格式>][-I <备份档>][-M <回传信息>][-R <拥有者><:/.><所属群组>][–block-size=<区块大小>][–force-local][–help][–no-absolute-filenames][–no-preserve-owner][–only-verify-crc][–quiet][–sparse][–version][范本样式…]或 cpio [-0adkiLmpuvV][-R <拥有者><:/.><所属群组>][–help][–no-preserve-owner][–quiet][–sparse][–version][目的目]
范例:

cpio [选项] > 文件名或者设备名
cpio [选项] < 文件名或者设备名

常用选项:

范例:

#将etc目录备份;需要使用相对路径
find ./etc -print | cpio -ov > bak.cpio

#将/data内容追加bak.cpio
find /data | cpio -oA -F bak.cpio

#内容预览
cpio –tv < etc.cpio

#解包文件
cpio –idv < etc.cpio

范例:

# 内容预览
~ cpio -tv < /boot/initramfs-0-rescue-cc2c86fe566741e6a2ff6d399c5d5daa.img
# 解包文件
~ cpio -idv < initramfs-0-rescue-cc2c86fe566741e6a2ff6d399c5d5daa.img

原文地址:https://blog.csdn.net/weixin_74962223/article/details/134777699

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_44724.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注