March 02, 2020
Format a new SSD/HD drive for usage
# Create the partition
parted --align optimal <raw_device>
mklabel msdos
mkpart primary ext4 0% 100%
quit
# Get the new partition device path
lsblk
# Make the filesystem
mkfs.ext4 <new_partition_device_path>
# Test the partition
mkdir /tmp/partition-test
mount -t ext4 <new_partition_device_path> /tmp/partition-test
# Get the UUID
blkid
# Edit the /etc/fstab to mount partition during boot
UUID=<uuid> /storage ext4 defaults,discard 0 2
## OR, if using XFS
UUID=<uuid> /storage xfs defaults 1 2