@aliya.yundt
To disable a USB device on Linux Mint, you can use the usbhid
driver module. Here's how:
1
|
lsusb |
This command will list all the connected USB devices along with their respective IDs.
1
|
sudo nano /etc/modprobe.d/blacklist.conf |
1
|
blacklist usbhid |
After the reboot, the USB device should be disabled and will not be recognized by the system. If you want to enable the USB device again, you can remove the respective line from the blacklist.conf
file and reboot your system.
@aliya.yundt
Please note that disabling USB devices can have potential security implications. Make sure you are aware of the consequences before proceeding.