USB 端口不工作

USB 端口不工作

图片 3图片2图片1我的笔记本电脑上安装了 Ubuntu 18.04.1. LTS。今天我安装了USB 防护 0.7.2+ds-1以保护我的一个 USB 记忆棒。USB 保护程序可从Ubuntu 软件然后您就可以免费下载它。这个程序无法正常工作,我卸载了它。但现在我的 USB 端口、键盘、鼠标和其他设备都出现了问题,因为它们无法正常工作。USB 保护程序阻止所有三个 USB 端口. 如何激活 USB 端口?

图片4

答案1

该特定工具旨在防止访问 USB端口而不是 USB 记忆棒。如果你想保护 USB 记忆棒,加密确实是最佳选择。

为了重新获得对 USB 端口的访问权限,您需要执行一些步骤,其中一些步骤您可能已经完成。

以下步骤都将通过终端完成,因为这样更快:

  1. 打开终端(如果尚未打开)
  2. 检查您是否有/etc/usbguard/rules.conf文件:
    ll /etc/usbguard
    
    如果您看到类似 的消息ls: cannot access '/etc/usbguard': No such file or directory,请继续执行下一步。如果您有这个目录,然后rules.conf像这样修改文件:
    sudo echo "allow id *:*" > /etc/usbguard/rules.conf
    sudo sed -i 's/PresentDevicePolicy=apply-policy/PresentDevicePolicy=allow/' /etc/usbguard/usbguard-daemon.conf
    sudo reboot
    
    笔记:重新启动机器非常重要,所以不要跳过这一步。
  3. 下一步是确保您没有usbguard运行任何服务,因为这些服务是有害的:
    sudo systemctl stop usbguard.service
    sudo systemctl disable usbguard.service
    sudo systemctl stop usbguard-dbus.service
    sudo systemctl disable usbguard-dbus.service
    
    如果所有这些都导致错误,那么您就没有usbguard运行服务。
  4. 现在我们要usbguard尽可能地清除系统中的垃圾:
    sudo apt remove usbguard -y
    sudo apt purge usbguard -y
    
  5. /etc/usbguard从系统中 清除目录:
    sudo rm -rf /etc/usbguard/
    
  6. 最后一次重新启动系统

完成此操作后,您应该即可再次访问您的 USB 端口。

相关内容