mirror of
https://gitee.com/liushuncheng-lsc/lfs-livecd.git
synced 2025-01-24 00:22:11 +08:00
18 lines
882 B
Plaintext
18 lines
882 B
Plaintext
|
好了大家,这个目录布局引导文件搞完了,就开始生成iso文件
|
||
|
|
||
|
如果你是debian系的用户,安装isolinux xorriso genisoimage(mkisofs)这三个软件
|
||
|
|
||
|
之后生成livecd
|
||
|
sudo xorriso -as mkisofs -R -r -J -joliet-long -l -cache-inodes -iso-level 3 \
|
||
|
-isohybrid-mbr /usr/lib/ISOLINUX/isohdpfx.bin -partition_offset 16 \
|
||
|
-A "LFS" -p "LFS" -publisher "myName" -V "LFS" \
|
||
|
--modification-date=2023121300000000 \
|
||
|
-b isolinux/isolinux.bin -c isolinux/boot.cat \
|
||
|
-no-emul-boot -boot-load-size 4 -boot-info-table -eltorito-alt-boot \
|
||
|
--efi-boot boot/grub/efi.img -append_partition 2 0x01 livecd-dir/boot/grub/efi.img \
|
||
|
-o my.iso livecd-dir
|
||
|
|
||
|
首先,带livecd-dir这个字段的就是你iso目录
|
||
|
然后--modification-date就是修改日期,没必要改
|
||
|
-publisher "myName",myName可以替换成你的名字
|
||
|
-o my.iso my.iso就是你最后生成的iso
|