Btrfs before install notes
From ZENotes
(Difference between revisions)
(Created page with "Set up BTRFS before install, according to [https://www.youtube.com/watch?v=maIu1d2lAiI this guide] ==Before Pacstrap== loadkeys for your keyboard select device ; VM devises ...") |
(→Before Pacstrap) |
||
Line 5: | Line 5: | ||
loadkeys for your keyboard | loadkeys for your keyboard | ||
− | + | Select device with '''fdisk -l''' ; VM devices starts with V here, as in /dev/'''v'''da1 et | |
+ | |||
+ | ==Partitionning== | ||
+ | fdisk /dev/vda | ||
+ | |||
+ | * Use '''g''' to create a GPT partition table | ||
+ | |||
+ | * Use '''n''' to create a frist EFI partition | ||
+ | |||
+ | * Use +300M to make it 300M in size | ||
+ | |||
+ | * Use '''t''' to change its type to '''1''' to make it an EFI partition | ||
+ | |||
+ | * Use '''n''' to create a second partition for the rest of the disk | ||
+ | |||
+ | * Use '''p''' to check for values and mistakes | ||
+ | |||
+ | * Use '''w''' to write the modifications and exit the interactive fdisk prompt | ||
+ | |||
+ | ==Formatting== |
Revision as of 15:52, 29 November 2023
Set up BTRFS before install, according to this guide
Before Pacstrap
loadkeys for your keyboard
Select device with fdisk -l ; VM devices starts with V here, as in /dev/vda1 et
Partitionning
fdisk /dev/vda
- Use g to create a GPT partition table
- Use n to create a frist EFI partition
- Use +300M to make it 300M in size
- Use t to change its type to 1 to make it an EFI partition
- Use n to create a second partition for the rest of the disk
- Use p to check for values and mistakes
- Use w to write the modifications and exit the interactive fdisk prompt