This example was done on Ubuntu server.
* Enable VM direct I/O in the BIOS.
* Open /etc/default/grub
using an editor like nano or something.
* Find GRUB_CMDLINE_LINUX_DEFAULT
and add intel_iommu=on
as a parameter. Make sure it's lowercase. Save and exit.
* update-grub
* shutdown -r now
* dmesg | grep -e DMAR -e IOMMU
and you should see a line in there stating that IOMMU is enabled.
Related Articles
Nginx - How to Block or Redire...
I've been figuring out how to block or redirect web traffic in Nginx based on the country geoIP. NOTES* You need the package nginx-extras for this because this...
Ubuntu 22.04 Nginx Build Outli...
I re-built my LEMP web-server fresh on Ubuntu 22.04 and learned some things along the way. This is my base build outline mostly created for my own notes. INS...
Joomla Running on Nginx and Ub...
What follows is an outline I compiled while building an Ubuntu server for running the Joomla CMS on the Nginx web server. NOTE: Ubuntu 14.04 LTS was used for th...
How To Build an Ubuntu Web Ser...
The following is a task outline for building an Ubuntu-based web-server to run Joomla and JomSocial. I created this for my own notes, so apologies if it's...