Boot

我怎樣才能讓 grub 用“rw”掛載一個驅動器?

  • March 18, 2016

我在 /boot/grub/grub.cfg 中有這個

menuentry 'Arch (on /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-aabbcc-dd-ee-fff-eeee' {
 insmod part_gpt
 insmod ext2
 set root='hd0,gpt5'
 if [ x$feature_platform_search_hint = xy ]; then
   search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt5 --hint-efi=hd0,gpt5 --hint-baremetal=ahci0,gpt5  aabbcc-dd-43d1-fff-eeee
 else
   search --no-floppy --fs-uuid --set=root aabbcc-dd-43d1-fff-eeee
 fi
 linux /boot/vmlinuz-linux root=/dev/sda5
 initrd /boot/initramfs-linux.img
}

我應該在哪裡添加“rw”以使其啟動可寫?

Grub 不會將驅動器安裝為可寫的,但 Linux 可以。所以你想要它就linux行了。例如:

linux /boot/vmlinuz-linux root=/dev/sda5 rw

引用自:https://unix.stackexchange.com/questions/270712