欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

连接无线网怎么知道密码(无线网络安装步骤)

程序员文章站 2024-03-27 11:19:52
我的家用电脑主要使用桌面 linux。我也有多台 linux 服务器用于托管网站以及开源软件,如 nextcloud 、 discourse 、ghost、rocket chat 等。我可以使用 li...

我的家用电脑主要使用桌面 linux。我也有多台 linux 服务器用于托管网站以及开源软件,如 nextcloud 、 discourse 、ghost、rocket chat 等。

我可以使用 linode 在云端几分钟内快速部署 linux 服务器。但最近,我在我的树莓派上安装了 ubuntu 服务器 。这是我第一次在物理设备上安装服务器,我不得不做一些额外的事情来通过命令行将 ubuntu 服务器连接到 wifi。

在本教程中,我将展示在 ubuntu linux 中使用终端连接到 wifi 的步骤。你应该:

  • 不要害怕使用终端编辑文件。
  • 知道 wifi 接入点名称 (ssid) 和密码。

在 ubuntu 中从终端连接到 wifi

当你使用 ubuntu 桌面时,连接到 wifi 是很容易的,因为你有图形用户界面,可以很容易地做到这一点。但当你使用 ubuntu 服务器时就不一样了,因为你只能使用命令行。

ubuntu 使用 netplan 工具来轻松配置网络。在 netplan 中,你可以创建一个包含网络接口描述的 yaml 文件,然后在 netplan 命令行工具的帮助下,生成所有需要的配置。

让我们看看如何使用 netplan 从终端连接到无线网络。

步骤 1:确定你的无线网络接口名称

有几种方法可以识别你的网络接口名称。你可以使用 ip 命令、过时的 ipconfig 命令或查看这个文件:

ls /sys/class/net

这应该会展示所有可用的网络接口(以太网、wifi 和环回)。无线网络接口名称以 w 开头,通常命名类似 wlanx、wlpxyz。

[email protected]:~$ ls /sys/class/net
eth0 lo wlan0

记下这个接口名。你将在下一步使用它。

步骤 2:编辑 netplan 配置文件中的 wifi 接口详细信息

netplan 配置文件在 /etc/netplan 目录下。如果你查看这个目录的内容,你应该看到类似 01-network-manager-all.yml 或 50-cloud-init.yaml 等文件。

如果是 ubuntu 服务器,你应该有 50-cloud-init.yaml 文件。如果是桌面计算机,应该是 01-network-manager-all.yml 文件。

linux 桌面计算机的 network manager 允许你选择一个无线网络。你可以在它的配置中硬编码写入 wifi 接入点。这可以在自动掉线的情况下(比如挂起)时帮助到你。

不管是哪个文件,都可以打开编辑。我希望你对 nano 编辑器有一点 熟悉 ,因为 ubuntu 预装了它。

sudo nano /etc/netplan/50-cloud-init.yaml

yaml 文件对空格、缩进和对齐方式非常敏感。不要使用制表符,在看到缩进的地方使用 4 个空格(或 2 个,以 yaml 文件中已经使用的为准)代替。

基本上,你需要添加以下几行,引号中是接入点名称(ssid) 和密码(通常):

wifis:
    wlan0:
        dhcp4: true
        optional: true
        access-points:
            "ssid_name":
                password: "wifi_password"

再说一次,保持我所展示的对齐方式,否则 yaml 文件不能被解析,它会抛出一个错误。

你的完整配置文件可能是这样的:

# this file is generated from information provided by the datasource. changes
# to it will not persist across an instance reboot. to disable cloud-init's
# network configuration capabilities, write a file
# /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg with the following:
# network: {config: disabled}
network:
    ethernets:
        eth0:
            dhcp4: true
            optional: true
    version: 2
    wifis:
        wlan0:
            dhcp4: true
            optional: true
            access-points:
                "ssid_name":
                    password: "wifi_password"

我觉得很奇怪,尽管有消息说更改不会在实例重启后保留,但它仍然可以工作。

不管怎样,用这个命令生成配置:

sudo netplan generate

现在应用它:

sudo netplan apply

如果你幸运的话,你应该连上网络。尝试 ping 一个网站或运行 apt 更新命令。

然而,事情可能不会那么顺利,你可能会看到一些错误。如果是这种情况,请尝试一些额外的步骤。

可能的故障排除

当你使用 netplan apply 命令时,你有可能在输出中看到类似这样的错误。

failed to start netplan-wpa-wlan0.service: unit netplan-wpa-wlan0.service not found.
traceback (most recent call last):
  file "/usr/sbin/netplan", line 23, in <module>
    netplan.main()
  file "/usr/share/netplan/netplan/cli/core.py", line 50, in main
    self.run_command()
  file "/usr/share/netplan/netplan/cli/utils.py", line 179, in run_command
    self.func()
  file "/usr/share/netplan/netplan/cli/commands/apply.py", line 46, in run
    self.run_command()
  file "/usr/share/netplan/netplan/cli/utils.py", line 179, in run_command
    self.func()
  file "/usr/share/netplan/netplan/cli/commands/apply.py", line 173, in command_apply
    utils.systemctl_networkd('start', sync=sync, extra_services=netplan_wpa)
  file "/usr/share/netplan/netplan/cli/utils.py", line 86, in systemctl_networkd
    subprocess.check_call(command)
  file "/usr/lib/python3.8/subprocess.py", line 364, in check_call
    raise calledprocesserror(retcode, cmd)
subprocess.calledprocesserror: command '['systemctl', 'start', '--no-block', 'systemd-networkd.service', 'netplan-wpa-wlan0.service']' returned non-zero exit status 5.

可能是 wpa_supplicant 服务没有运行。运行这个命令:

sudo systemctl start wpa_supplicant

再次运行 netplan apply。如果它能解决这个问题,那就太好了。否则,使用下面的命令 关闭 ubuntu 系统 :

shutdown now

重新启动 ubuntu 系统,登录并再次生成和运行 netplan apply:

sudo netplan generate
sudo netplan apply

现在可能会显示警告(而不是错误)。这是警告而不是错误。我检查了 正在运行的 systemd 服务 ,发现 netplan-wpa-wlan0.service 已经在运行了。可能是因为它已经在运行了,而且 netplan apply 更新了配置文件(即使没有任何改变),所以显示了警告。

warning: the unit file, source configuration file or drop-ins of netplan-wpa-wlan0.service changed on disk. run 'systemctl daemon-reload' to reload units.

这并不重要,你可以通过运行 apt update 来检查网络是否已经正常工作。

我希望你能够在本教程的帮助下,在 ubuntu 中使用命令行连接到 wifi。如果你仍然遇到困难,请在评论区告诉我。