每次我都必须输入sudo modprobe rtbth
才能使蓝牙正常工作,否则蓝牙菜单选项会变灰并且不起作用。我已将其添加modprobe rtbth
到自动启动 LXQT 会话设置中,但这没有帮助。sudo modprobe rtbth
请问我如何才能在启动时自动加载。
我正在使用 Lubuntu 20.04 Blueman 蓝牙。
答案1
您需要将其添加到/etc/modules-load.d/modules.conf
。
使用 vi 或 nano 编辑文件并rtbth
在末尾添加新行。从自动启动中删除您添加的内容并重新启动。然后模块将自动加载。
编辑:
或者
echo rtbth | sudo tee -a /etc/modules
额外编辑:
还要确保没有blacklist rtbth
in/etc/modules
和/etc/modprobe.d/
:
grep -F 'blacklist rtbth' /etc/modules && grep -F 'blacklist rtbth' /etc/modules/*