cpio 在为 live 重新打包 initrd.lz 时无法正常工作

cpio is not working properly in repacking initrd.lz for live

如果我解压缩 initrd.lz 然后重新打包而不做任何更改,然后在 Casper 目录中将其替换为我的新 initrd.lz for live CD。它是结构化的。在打包 initrd 时,我收到如下警告消息:

cpio: ./usr/share/plymouth/themes/text.plymouth: Cannot stat: No such file or directory.

最后我的问题是,打包和解包 initrd.lz 的实用程序是什么?

谢谢。

提取initrd的内容:

  mkdir temp
  cd temp
  lzma -dc -S .lz /mnt/casper/initrd.lz | cpio -id

修改并重新打包成一个新的 initrd:

  find . | cpio --quiet --dereference -o -H newc | lzma -7 > ~/new-initrd.lz

并且对于 text.plymouth 检查文件是否存在