Sunday, August 20, 2023

Remove USBGuard on Kubuntu Linux

locate usbguard // uses a pre-built database to quickly find files by name

locate usbguard | sudo xargs rm -rf // remove everything containing "usbguard"

sudo find / -xdev -name "*usbguard*" -exec rm -r {} \; // remove all found

sudo apt remove usbguard -y

sudo apt purge usbguard -y

sudo updatedb

locate usbguard // now shows nothing

https://roussos.cc/2019/08/19/usbguard/

No comments:

Post a Comment