ubuntu20.04连接wifi ubuntu20.04连接wifi的方法(2种)
terence_csdn 人气:3想了解ubuntu20.04连接wifi的方法(2种)的相关内容吗,terence_csdn在本文为您仔细讲解ubuntu20.04连接wifi的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:ubuntu20.04连接wifi,ubuntu连接wifi,下面大家一起来学习吧。
最近安装了ubuntu20.04发现不能连接wifi,也没有wifi图标,貌似是没有驱动
解决办法
方法一
1.先用网线连接电脑
2.在终端执行
sudo apt update
3.在终端执行
sudo apt-get install bcmwl-kernel-source
4.重启
方法二
#列出你的网络 ip a
/etc/netplan/下面有个YAML配置文件
修改配置文件
ubuntu@ubuntu:~$ cat /etc/netplan/50-cloud-init.yaml network: ethernets: eth0: dhcp4: true optional: true version: 2 wifis: wlan0: dhcp4: true access-points: "你的wifi的ssid": password: "你的密码"
netplan try netplan apply
我当时重启了一下才可以的,
加载全部内容