配对设备后,如何通过终端将手机的互联网与蓝牙绑定?

配对设备后,如何通过终端将手机的互联网与蓝牙绑定?

我使用以下命令将手机与笔记本电脑通过蓝牙配对:

sudo apt update
sudo apt install bluetooth bluez bluez-tools rfkill
rfkill unblock bluetooth
bluetoothctl
agent KeyboardOnly
default-agent
power on
scan on
pair <BT address>
trust <BT address>
connect <BT address>

我想知道是否有办法通过终端将我的手机连接到互联网。

我可以通过 ubuntu 设置来完成此操作,但我希望通过终端命令来完成。

我可以这样做吗?如果可以,怎么做?

如果有帮助的话,我的 ubuntu 版本是 18.04。

答案1

我找到了答案这个问题

# to list available connections
nmcli connection show

# to connect to uuid: 1
nmcli connection up "1"

相关内容