我使用 Hotspot 与手机共享互联网连接已有一段时间。从那时起,每当我启动 PC 时,Hotspot 都会直接启动,除非我关闭 Hotspot 连接,否则我无法使用 Wi-Fi(在我的 PC 上)。
有没有办法阻止 Hotspot 自动启动?
答案1
我按照以下步骤解决了我的问题:
- 运行命令
nmcli con show
。- 将显示已知网络的列表。
- 运行命令
nmcli con mod <connection-name> connection.autoconnect no
。- 这将阻止热点连接自动启动。
(选修的)如果您想永久删除热点连接,请按照以下步骤操作:
- 跑步
ls /etc/NetworkManager/system-connections
。 - 将显示已知网络的列表。
- 跑步
sudo rm <connection-name>
。