[doc] ammend ivshmem_kvmfr to make cgroups and permissions clearer

This commit is contained in:
Geoffrey McRae 2024-03-08 23:31:32 +11:00
parent cae410d4de
commit 778c21070c

View File

@ -105,6 +105,11 @@ dmesg:
You should now also have the character device ``/dev/kvmfr0`` You should now also have the character device ``/dev/kvmfr0``
.. code:: bash
$ ls -l /dev/kvmfr0
crw------- 1 root root 242, 0 Mar 5 05:53 /dev/kvmfr0
.. warning:: .. warning::
If you start the VM prior to loading the module, QEMU will create the file If you start the VM prior to loading the module, QEMU will create the file
@ -184,17 +189,30 @@ legacy syntax for IVSHMEM setup:
Running libvirt this way violates AppArmor and cgroups policies, which will Running libvirt this way violates AppArmor and cgroups policies, which will
block the VM from running. These policies must be amended to allow the VM block the VM from running. These policies must be amended to allow the VM
to start: to start.
- For AppArmor, create ``/etc/apparmor.d/local/abstractions/libvirt-qemu`` if .. tip::
it doesn't exist, and add the following::
If you are not sure, you likely have cgroups also as this is usually deployed
and configured by default by most distributions when you install libvirt.
AppArmor
""""""""
Create ``/etc/apparmor.d/local/abstractions/libvirt-qemu`` if it doesn't exist
and add the following:
.. code:: text
# Looking Glass # Looking Glass
/dev/kvmfr0 rw, /dev/kvmfr0 rw,
- For cgroups, edit ``/etc/libvirt/qemu.conf``, uncomment the cgroups
``cgroup_device_acl`` block, and add ``/dev/kvmfr0`` to the list. """""""
Then restart ``libvirtd``:
Edit the file ``/etc/libvirt/qemu.conf`` and uncomment the ``cgroup_device_acl``
block, adding ``/dev/kvmfr0`` to the list. To make this change active you then
must restart ``libvirtd``
.. code:: bash .. code:: bash