Skip to content

Instantly share code, notes, and snippets.

@carlesloriente
Last active February 8, 2024 01:06
Show Gist options
  • Save carlesloriente/5dbd6acf64090bba9593146185c11183 to your computer and use it in GitHub Desktop.
Save carlesloriente/5dbd6acf64090bba9593146185c11183 to your computer and use it in GitHub Desktop.
Format and mount an NVMe Volume
sudo yum -y install nvme-cli;
sudo mkfs.xfs /dev/nvme1n1;
sudo mkdir -p /mnt/ephemeral;
sudo mount /dev/nvme1n1 /mnt/ephemeral;
sudo chown centos:centos /mnt/ephemeral;
@carlesloriente
Copy link
Author

carlesloriente commented Dec 28, 2019

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment