pub fn make_filesystem(
    filesystem_name: &str,
    device_name: &str
) -> Result<(String, String)>
Expand description

Makes a new file system on a specified device.

e.g., sudo mkfs -t ext4 /dev/nvme1n1

ref. See https://github.com/cholcombe973/block-utils/blob/master/src/lib.rs for other commands. ref. https://stackoverflow.com/questions/45167717/mounting-a-nvme-disk-on-aws-ec2