Exclusive USB Device Passthrough QEMU/KVM

List the device you would like to redirect using lsusb

[user@hostname ~]$ lsusb
Bus 001 Device 004: 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

Note: There’s some obvious insecurity in statically assigning the password in your fstab file. This should only be used temporarily if you’re converting between a bitlocker -> ext4 or LUKS type disk.