Hey everyone! I'm diving into Arch Linux this weekend and have made some progress booting from USB, but I'm a bit lost when it comes to disk partitioning. Here's what I see when I run `fdisk -l`:
- /dev/sda1 - 650M - Windows recovery environment
- /dev/sda2 - 260M - EFI System
- /dev/sda3 - 128M - Microsoft reserved
- /dev/sda4 - 905.2G - Microsoft basic data
- /dev/sda5 - 1001M - Windows recovery environment
- /dev/sda6 - 24.4G - Microsoft basic data
My question is this: do I need to reset this layout and create partitions from scratch, or can I just utilize sda4 for my boot, swap, and root partitions? Also, is there a reason to keep sda6 when it looks like it might be similar to sda4? I'm working on an older Windows laptop with a 1TB hard drive, and I'm not sure how it was set up before I got it. Any advice would be really helpful!
2 Answers
Regarding your concern about sda6 being redundant, if sda4 and sda6 have the same file type and you really don't need both, it might be wise to stick with just one. However, I'd suggest getting a handle on storage virtualization first so you can practice partitioning without any risk. It's a great learning method!
You should definitely check out the Arch wiki for the `fdisk` command. It's super helpful for understanding how to repartition your drives effectively! That page will walk you through everything you need to know!

I appreciate the suggestion! I want to understand how it all works before diving in. Thanks for the tips!