使用iwctl连接无线网络

检查wifi模块驱动是否正确

ip addr #输出的信息查看是否 包含‘w’开头的网卡

image

安装iwd

这里使用iwd管理WiFi,主要原因是小巧,方便使用无需额外配置

# 安装
apt install iwd
# 设置开机启动
systemctl enable --now iwd
# 查看无线网卡
iwctl device list

# 扫描并获取无线网络
iwctl station wlan0 scan
iwctl station wlan0 get-networks

# 连接无线网
iwctl --passphrase 密码 station 网卡 connect SSID

上面安装链接不了,则按照如下操作(AI)

# 打开终端输入
iwctl # 进入iwd提示符
device list # 列出所有设备
#station wlan0 scan
#station wlan0 get-networks
#station [devicename] connect [wifi-ssid] # 连接无线网络
station wlan0 connect 360-wifi #如:会提示你输入wifi密码
station wlan0 show # 查看链接情况
# ctrl-D 退出iwctl

image

posted @ 2024-07-27 09:32  一个小笨蛋  阅读(334)  评论(0编辑  收藏  举报