Note:
The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Talk:Undead USB Install"
Jump to navigation
Jump to search
m (stab 2) |
m |
||
Line 9: | Line 9: | ||
rest of the drive jfs partition name funtoo partition label funtoo. | rest of the drive jfs partition name funtoo partition label funtoo. | ||
echo "LABEL=boot /boot vfat noauto,noatime 0 2" >> /etc/fstab | {{console|body= | ||
###i## echo "LABEL=boot /boot vfat noauto,noatime 0 2" >> /etc/fstab | |||
}} | |||
we want to install both legacy and uefi in one swoop. | we want to install both legacy and uefi in one swoop. | ||
Line 16: | Line 18: | ||
stab 2 at getting uefi going from legacy machine. | stab 2 at getting uefi going from legacy machine. | ||
mkdir /boot/efi | {{console|body= | ||
mount /dev/sdc1 /boot/efi | ###i## mkdir /boot/efi | ||
grub-install --target=x86_64-efi /boot/efi | ###i## mount /dev/sdc1 /boot/efi | ||
###i## grub-install --target=x86_64-efi /boot/efi}} | |||
/boot/efi/efi/gentoo/grubx64.efi is generated. | /boot/efi/efi/gentoo/grubx64.efi is generated. | ||
stab 3 | |||
gpt partitioning via official install method gdisk. | |||
testing legacy grub + gpt to verify that MBR can be deprecated. | |||
==talk to me here== | ==talk to me here== |
Revision as of 16:26, October 8, 2020
updating to both uefi & legacy mode sandbox
https://superuser.com/questions/801515/is-a-hybrid-linux-usb-stick-for-uefi-legacy-bios-possible
device > create partition table > gpt
think about /boot as 128mb fat32 gpt partition drive. partition name boot partition label boot. (probably set the boot flag?)
rest of the drive jfs partition name funtoo partition label funtoo.
root # echo "LABEL=boot /boot vfat noauto,noatime 0 2" >> /etc/fstab
we want to install both legacy and uefi in one swoop.
stab 2 at getting uefi going from legacy machine.
root # mkdir /boot/efi root # mount /dev/sdc1 /boot/efi root # grub-install --target=x86_64-efi /boot/efi
/boot/efi/efi/gentoo/grubx64.efi is generated.
stab 3 gpt partitioning via official install method gdisk. testing legacy grub + gpt to verify that MBR can be deprecated.