我需要创建我的自定义 linux liveCD。我使用这个完美的指南来做到这一点。
简而言之:我拿了 linux Mint liveCD,挂载它,解压缩 filesysetm.squashfs,用 chroot 编辑它,然后将所有内容打包回 iso。尝试自定义 grub 设置时遇到问题。例如,我想将 GRUB_TIMEOUT 设置为零。我可以编辑 grub 配置文件,但我无法运行 update-grub。
voronwe@sul $ sudo chroot edit
sul # mount -t proc none /proc
sul # mount -t sysfs none /sys
sul # mount -t devpts none /dev/pts
sul # export HOME=/root
sul # export LC_ALL=C
sul # update-grub
/usr/sbin/grub-probe: error: cannot find a device for / (is /dev mounted?).
而且我无法安装启动:
sul # mount boot
mount: can't find boot in /etc/fstab or /etc/mtab
sul # cat /etc/fstab
# UNCONFIGURED FSTAB FOR BASE SYSTEM
sul # cat /etc/mtab
binfmt_misc /proc/sys/fs/binfmt_misc binfmt_misc rw,noexec,nosuid,nodev 0 0
none /proc proc rw 0 0
none /sys sysfs rw 0 0
none /dev/pts devpts rw 0 0
那么,有谁知道如何在 liveCD 上更新 grub 配置?