→ Applies to: Hyperion 9.x and above
VirtIO drivers can be verified using one of the following methods.
Step 1. Connect to the VM via SSH as root (replace <your_ip_address_or_hostname> with the VM ip/hostname)
ssh root@<your_ip_address_or_hostname>
Step 2. Become Super User
sudo suMethod #1 – Check Kernel Messages
Check VirtIO drivers status
dmesg | grep -i virtioMethod #2 – List Loaded VirtIO Modules
List active VirtIO modules
lsmod | grep virtioEXAMPLE OUTPUT
virtio_scsi virtio_blk virtio_net virtio_pci virtio_ring
Method #3 – Verify Disk Controller Driver
Check Disk Controller
lspci -k | grep -A3 -i virtioEXAMPLE OUTPUT
Virtio SCSI Kernel driver in use: virtio-pci
Method #4 – Verify Boot-Time Drivers
Verify Boot Drivers for Rocky/RHEL
lsinitrd | grep virtio
Verify Boot Drivers for Ubuntu or Debian
lsinitramfs /boot/initrd.img-$(uname -r) | grep virtio