Skip to content

Commit ea66e30

Browse files
authored
More changes
1 parent 8b749cf commit ea66e30

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

src/content/docs/guides/custom-disk.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,16 @@ description: Options on how to handle disk partitioning
44
---
55

66
So, if you are planning on custom partitioning, you probably know what you're doing, so I'll make this pretty short.
7-
The recommended tool to manually partition your disks is `cfdisk` it's a pretty straight-forward tool to manually setup your disks
7+
There are several tools you can use to manually partition your disks, depending on your preference:
8+
- cfdisk - a simple, menu-driven tool that’s easy to navigate.
9+
- fdisk - more barebones and command-driven, but widely available.
10+
- parted - supports both MBR and GPT partition tables and can handle larger disks.
11+
- gparted (GUI) - if you prefer a graphical interface, this one makes it very visual.
812

9-
To use `cfdisk` you can just open up your terminal and type `sudo cfdisk <your disk to partition i.e /dev/sda or /dev/nvme0n1>`.
10-
If you don't know about your disk name then you can type and run `lsblk` to know about your disk to partition.
13+
For example, with `cfdisk`, you can start it by running:
14+
`sudo cfdisk <your disk, e.g. /dev/sda or /dev/nvme0n1>`
15+
16+
If you don't know your disk name, you can check with `lsblk`.
1117

1218
### Minimal Requirements to install
1319

0 commit comments

Comments
 (0)