sudo pacman -Sy archlinux-xdg-menu
cd /etc/xdg/menussudo mv arch-applications.menu applications.menu
kbuildsycoca6 --noincrementalsudo update-mime-database /usr/share/mime
rm ~/.cache/ksycoca6_*
Month: February 2026
Exclusive USB Device Passthrough QEMU/KVM
List the device you would like to redirect using lsusb
[user@hostname ~]$ lsusb
Bus001 Device004 : ID 258a:0027 SINOWEALTH Wired Gaming Mouse
Add the following to your virtsh edit XML file
<hostdev mode='subsystem' type='usb' managed='yes'>
<source>
<address bus='1 ' device='4 '/>
</source>
</hostdev>
Disconnecting the device from your Virtual Machine will reconnect it to the source system.
dislocker /etc/fstab Mount
UUID=$UUID_OF_DISK /mnt/crypt/8TBCrypt fuse.dislocker user-password=$PASSWORD,nofail 0 0
/mnt/crypt/8TBCrypt/dislocker-file /mnt/8TB auto loop,nofail 0 0
Converting VMDK to qcow2
qemu-img convert -cpf vmdk -O qcow2 $SOURCE_VMDX $OUTPUT_QCOW2
