如何通过 CLI 在 Ubuntu Server 20.04 上启用无线?

如何通过 CLI 在 Ubuntu Server 20.04 上启用无线?

我已经在笔记本电脑上全新安装了 Ubuntu Server 20.04。

我的笔记本电脑有以太网和 wifi 卡。我设法通过以太网上网。但是,它无法通过 CLI 设置 wifi。

里面/etc/netplan/只有一个名为的文件00-installer-config.yaml

我在其中添加了以下内容:

network:
  ethernets:
    enp1s0:
      dhcp4: true
  version:2
  wifis:
    wlp2s0:
      dhcp6: true
      dhcp4: true
      access-points:
        "my_network_id":
          password: "my_password"

我也这么做了

sudo netplan generate
sudo netplan apply

没有抛出错误。ping google.com如果以太网电缆已插入,则可工作,但如果未插入,则无法工作(导致名称解析暂时失败)。我也尝试过重新启动。

我按照这里https://askubuntu.com/a/1107570/247771但两者都不起作用。

我也想遵循这里iwconfig但这需要我目前尚未安装的命令。当我尝试使用sduo apt install wireless-tools(插入以太网电缆)安装它时,我收到错误Temporary failre resolving 'testserv',尽管ping google.com运行正常。

最后,以下是输出sudo lshw -C network在此处输入图片描述

有什么建议可以帮助我使 WiFi 正常工作吗?

答案1

尝试使用 nmcli,这是操作说明,我实际上昨天刚刚这样做了!

#determine if the kernel even recognizes the WIFI interface
nmcli d

#Is WIFI on? Should be default
ncmli r wifi on

#Connect

nmcli d wifi connect WIFI-NAME password PASSWORD

答案2

sudo apt update
sudo apt install rfkill
sudo rfkill unblock 0 1 2

相关内容