红联Linux门户
Linux帮助

修改centos stage2.img文件

发布时间:2016-03-24 10:16:39来源:linux网站作者:guowake

先把Stage2.img复制到一个工作目录:

cp images/stage2.img /tmp
mkdir /tmp/temp
mount -o loop stage2.img /tmp/temp
cp -r /tmp/temp /tmp/stage2
umount /tmp/temp
rm -rf /tmp/temp /tmp/stage2.img


修改stage:

cd /tmp/stage2

vi .buildstamp
vi usr/lib/anoconda/dispatch.py


重新打包把sys-fs/squashfs-tools-3.4这个包装上,因为我们需要里面的mksquashfs.

mksquashfs .  ../stage2.img -all-root -no-fragments


okey 完成!


本文永久更新地址:http://www.linuxdiyf.com/linux/19199.html