575 B
575 B
通过 Linux 命令行工具连接 Wifi
首先查看无线网卡名称
ifconfig -a
如果无线网卡没有开启,则使能无线网卡
ifconfig <eth> up
扫描附近的无线网络
iw <eth> scan
可得到网络的 ESSID。如果要连接的网络是没有加密的,可以用下面的命令直接连接:
iw dev <eth> connect <ESSID>
开启 NetworkManager 服务
systemctl start NetworkManager
连接无线网络
nmcli dev wifi connect <ESSID> password <Password>