This is an old revision of the document!
Linux Block Device Notes
Linux Disk Partition and Format Notes
Some basic tools
lsblk
to list partitions (or list block devices)
lsblk -f
or blkid
to list the UUIDs
parted
There would seem to be a number of partition tools for Linux CLI.
sudo parted -l
- to see all available partition informationsudo parted /dev/sda
- to partition the specific drive
When in parted:
print
to see current partition informationmkpart help
to list optionmklabel gpt
to give drive label gptmkpart help mkpart
to list specific help items on mkpartmkpart primary ext4 0% 100%
to make a partition that take the full optimised drive arearm 1
to remove partition 1
Format
sudo mkfs.ext4 /dev/sda1
- to format the drive
Fstab
sudo vim /etc/fstab
-to edit the boot disk mount table, remember to make matching mount point directories