Last active
February 8, 2024 01:06
-
-
Save carlesloriente/5dbd6acf64090bba9593146185c11183 to your computer and use it in GitHub Desktop.
Format and mount an NVMe Volume
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://www.notesoncloudcomputing.com/aws/ec2/2019/12/25/using-aws-ec2-ephemeral-volumes/