1 00:00:06,690 --> 00:00:09,840 - All right, let me start with sudo lsblk, 2 00:00:09,840 --> 00:00:11,760 and we can see that I have a disk, sdd, 3 00:00:11,760 --> 00:00:13,380 that's currently unused. 4 00:00:13,380 --> 00:00:17,970 So sudo fdisk on dev sdd, 5 00:00:17,970 --> 00:00:20,400 and if you wanna use ddisk as well, you can, 6 00:00:20,400 --> 00:00:22,200 but it's not really necessary. 7 00:00:22,200 --> 00:00:24,990 It really doesn't make any difference here. 8 00:00:24,990 --> 00:00:27,510 Use N to create a new partition, 9 00:00:27,510 --> 00:00:30,780 P for primary, partition number one 10 00:00:30,780 --> 00:00:32,973 and start at sector 2048. 11 00:00:33,990 --> 00:00:36,330 That is something that will always happen. 12 00:00:36,330 --> 00:00:39,720 The first partition starts always at megabyte number one. 13 00:00:39,720 --> 00:00:42,420 This is sectors of 512 byte each. 14 00:00:42,420 --> 00:00:46,050 So sector 2048 is really megabyte number one, 15 00:00:46,050 --> 00:00:48,570 then last sector, I'm using Plus 1G 16 00:00:48,570 --> 00:00:52,770 to make it a one-gigabyte partition, and that's what'll do. 17 00:00:52,770 --> 00:00:57,450 I'm using W to write, and now we can format it. 18 00:00:57,450 --> 00:01:02,450 So sudo mkfs.ext4 on dev sdd1, 19 00:01:05,160 --> 00:01:05,993 and there we go. 20 00:01:05,993 --> 00:01:07,980 The file system has been created. 21 00:01:07,980 --> 00:01:09,900 So now finally we can mount. 22 00:01:09,900 --> 00:01:14,670 So sudo mount dev sdd1 on /mnt, 23 00:01:14,670 --> 00:01:17,070 and that should issue the mount for us. 24 00:01:17,070 --> 00:01:18,060 You want to verify? 25 00:01:18,060 --> 00:01:21,420 Just type mount and in the last line of the mount output, 26 00:01:21,420 --> 00:01:24,270 you can see the file system that has just been mounted. 27 00:01:24,270 --> 00:01:25,590 Of course, you can also use one 28 00:01:25,590 --> 00:01:28,140 of these other utilities to verify 29 00:01:28,140 --> 00:01:30,993 that your mount has been created successfully.