Note
The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Talk:Install/GPT Partitioning"
Jump to navigation
Jump to search
m (add boot & root & omit swapping because most modern drives targeted are usb/ssd/nvme/flash) |
|||
(5 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
==Backwards Compatible Partition Table== | |||
List the device to be partitioned, mine is on /dev/sdc | |||
{{console|body= | |||
###i## lsblk -o name,size,label | |||
}} | |||
{{console|body= | |||
###i## gdisk /dev/sdc}} | |||
{{console|body= | |||
Command: ##i##o ↵ | |||
This option deletes all partitions and creates a new protective MBR. | |||
Proceed? (Y/N): ##i##y ↵ | |||
}} | |||
{{console|body= | {{console|body= | ||
Command: ##i##n ↵ | Command: ##i##n ↵ | ||
Line 6: | Line 21: | ||
Hex Code: ##i##EF02 ↵ | Hex Code: ##i##EF02 ↵ | ||
Command: ##i##c ↵ | Command: ##i##c ↵ | ||
Partition number: 1 | Partition number: ##i##1 | ||
Enter name: BIOS Boot | Enter name: ##i##BIOS Boot | ||
}} | }} | ||
Line 17: | Line 32: | ||
Hex Code: ##i##EF00 ↵ | Hex Code: ##i##EF00 ↵ | ||
Command: ##i##c ↵ | Command: ##i##c ↵ | ||
Partition number: 2 | Partition number: ##i##2 | ||
Enter name: | Enter name: ##i##BOOT | ||
}} | }} | ||
Line 28: | Line 43: | ||
Hex Code: ##i## ↵ | Hex Code: ##i## ↵ | ||
Command: ##i##c ↵ | Command: ##i##c ↵ | ||
Partition number: 3 | Partition number: ##i##3 | ||
Enter name: | Enter name: ##i##FUNTOO | ||
}} | |||
{{console|body= | |||
Command: ##i##w ↵ | |||
Do you want to proceed? (Y/N): ##i##Y ↵ | |||
}} | }} | ||
back to [[Talk:Undead_USB_Install]] |
Latest revision as of 20:45, November 8, 2020
Backwards Compatible Partition Table
List the device to be partitioned, mine is on /dev/sdc
root # lsblk -o name,size,label
root # gdisk /dev/sdc
Command: o ↵ This option deletes all partitions and creates a new protective MBR. Proceed? (Y/N): y ↵
Command: n ↵ Partition Number: 1 ↵ First sector: ↵ Last sector: +1M ↵ Hex Code: EF02 ↵ Command: c ↵ Partition number: 1 Enter name: BIOS Boot
Command: n ↵ Partition Number: 2 ↵ First sector: ↵ Last sector: +128M ↵ Hex Code: EF00 ↵ Command: c ↵ Partition number: 2 Enter name: BOOT
Command: n ↵ Partition Number: 3 ↵ First sector: ↵ Last sector: ↵ Hex Code: ↵ Command: c ↵ Partition number: 3 Enter name: FUNTOO
Command: w ↵ Do you want to proceed? (Y/N): Y ↵
back to Talk:Undead_USB_Install