我不想sudo systemctl start bluetooth
在每次重新启动后运行命令来打开 kali linux 中的蓝牙服务;如何让它保持运行?
我尝试谷歌搜索但找不到;另外你能解释一下为什么蓝牙服务在Linux中关闭后会关闭,但为什么在Windows中却不会?
答案1
如果开机后蓝牙服务没有自动启动,则说明蓝牙服务被禁用。
您可以使用命令检查这一点
systemctl is-enabled bluetooth
要启用它,请运行
systemctl enable bluetooth
这会在启动时有效地启动服务,因此您无需每次都通过以下方式运行它
systemctl start bluetooth
(所有先前的命令必须以 root 身份运行,或者sudo
如果由非特权用户运行,则必须在前面添加。)
例如,您可以在许多 Linux 文档中阅读有关 systemd 的更多信息这里(Kali 基于 Debian)。