1 00:00:06,840 --> 00:00:07,740 - Okay. Let's have a look 2 00:00:07,740 --> 00:00:10,264 at the commands that we've seen in this lesson. 3 00:00:10,264 --> 00:00:15,264 It started with lsblk, lsblk is for listing block devices. 4 00:00:16,290 --> 00:00:17,610 Then we have used fdisk 5 00:00:17,610 --> 00:00:20,400 for creating partitions on an MBR disc. 6 00:00:20,400 --> 00:00:24,270 And gdisk for creating partitions on a GPD disc. 7 00:00:24,270 --> 00:00:28,020 mkfs is a generic utility for making file systems. 8 00:00:28,020 --> 00:00:30,660 I would advise you use step completion to find all 9 00:00:30,660 --> 00:00:34,230 the different alternatives that are available for mkfs. 10 00:00:34,230 --> 00:00:37,680 mount is how you connect the device to a specific directory. 11 00:00:37,680 --> 00:00:40,650 And findmnt is providing a nice overview 12 00:00:40,650 --> 00:00:44,640 of all the devices that are mounted at this point, 13 00:00:44,640 --> 00:00:48,720 umount is for disconnecting devices from a current mount. 14 00:00:48,720 --> 00:00:52,560 and we have seen lsof which lists open files 15 00:00:52,560 --> 00:00:55,770 which may come in handy if umount refuses with the 16 00:00:55,770 --> 00:00:57,660 device is busy message. 17 00:00:57,660 --> 00:00:58,493 That's all. 18 00:00:58,493 --> 00:01:00,663 That's go check out the end of lesson lab.