AWS EC2 ENA Support
AWS has machine types that require ENA Support. You can run AWS CLI to find out if instance is ENA enabled.
<pre lang="bash">
aws ec2 describe-instances \
--instance-id i-xxxxxxxxxxxxxxxxx \
--profile default \
--region us-east-1 \
--query 'Reservations[].Instances[].EnaSupport'
Login to the instance and verify.
<pre lang="bash">
sudo lspci | grep -i Amazon
List driver details.
<pre lang="bash">
modinfo nvme
Verify modules loaded at startup.
<pre lang="bash">
lsmod | grep nvme
lsmod | grep ena
If ENA drivers are missing, install them.
<pre lang="bash">
yum install pciutils