From d612cb1cb446fdeca4c547921c5a0898e3f5b103 Mon Sep 17 00:00:00 2001 From: Kaimbacher Date: Fri, 1 Jul 2022 08:00:23 +0000 Subject: [PATCH] Update 'hard_disk_partition_making_filesystem' --- hard_disk_partition_making_filesystem.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hard_disk_partition_making_filesystem.md b/hard_disk_partition_making_filesystem.md index 3c1851c..4540717 100644 --- a/hard_disk_partition_making_filesystem.md +++ b/hard_disk_partition_making_filesystem.md @@ -6,5 +6,14 @@ ## 1.2. View existing partition table(s) `sudo fdisk -l` +## 1.3. Edit the partition table for my chosen device (in this case, "sdb") +`sudo fdisk /dev/sdb` + +Changes will remain in memory only, until you decide to write them. +Be careful before using the write command. + +Device does not contain a recognized partition table. +Created a new DOS disklabel with disk identifier 0x1c8c9d78. + # 2. Format new partition as type ext4 `sudo mkfs -t ext4 /dev/sdb1` \ No newline at end of file