首页 > 系统 > Linux > 正文

initrd-2.6.9-5.EL.img技巧分享

2020-06-07 13:09:40
字体:
来源:转载
供稿:网友

initrd-2.6.9-5.EL.img

解压

gzip -dc initrd-2.6.9-5.EL.img |cpio -div

压缩

find xxx yyy | cpio -ov -H crc |gzip -9> zz.cgz

解压缩 .cgz文件

cpio -divm <**.cgz

打开initrd.img文件

mv initrd.img initrd.gz

gzip -d initrd.gz

mount -o loop initrd /dir

gzip

-d decompress

-c write on standard output, keep original files unchanged

-9 compress better

cpio

-d Create leading directories where needed

-i Extract files from an archive (run in copy-in mode)

-v Verbosely list the files processed

-m Retain previous file modification times when creating files

-o Create the archive (run in copy-out mode)

-H --format=FORMAT Use given archive FORMAT

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表