如何防止 Ubuntu 在移除 USB 键盘后抛出错误?

如何防止 Ubuntu 在移除 USB 键盘后抛出错误?

我使用 USB 切换器来控制多个 Ubuntu,这意味着当我从一台机器切换到另一台机器时,它会以电子方式(我猜是像短路一样,可能吧,不太确定)拔下 USB,而不会从机器上物理移除 USB 设备。一个无害但烦人的事情是,在我切换后,系统会抛出如下错误:

[123] usb 1-1.1-portx: cannot reset
[124] usb 1-1.1-portx: cannot reset
[125] usb 1-1.1-portx: cannot reset
[126] usb 1-1.1-portx: cannot reset
[127] usb 1-1.1-portx: cannot reset
[128] usb 1-1.1-portx: cannot reset

当然,这实际上不会对机器上运行的任何服务造成损害,但在屏幕上看到有点烦人,有没有办法防止它发生?

我尝试进行修改/etc/sysctl.conf并取消注释kernel.printk = 3 4 1 3以停止控制台上的低级消息,然后重新启动,但消息仍然存在。

答案1

它看起来像一条内核消息。我会降低控制台中的内核日志级别:

https://superuser.com/questions/351387/how-to-stop-kernel-messages-from-flooding-my-console

在文件 /etc/sysctl.conf 中

# Uncomment the following to stop low-level messages on console
kernel.printk = 3 4 1 3

相关内容