从CloneZilla Live-CD引导时如何连接到WPA2加密的无线网络?


2

我的目的是将笔记本电脑的(Dell Vostro 3350)sda1磁盘备份到台式机。经过一番谷歌搜索后,我决定为此目的使用CloneZilla。我已经安装了OpenSSH服务器并在我的桌面上运行它。因此,我将CloneZilla CD插入CD-rom,从中启动,然后选择诸如“使用ssh服务器存储映像”之类的选项。然后我收到了选择网络接口的邀请。我选择了wlan0并进入shell来手动配置连接。这就是我遇到的麻烦,因为我想使用的wifi网络经过WPA2加密,而且我不知道如何从命令行连接到它。

Answers:



8

实际要遵循的步骤:

1.为wpa_supplicant创建配置文件

# touch /etc/wpa_suppl.conf

2.使用vi-editor编辑

# vi /etc/wpa_suppl.conf

应该有:

network={
    ssid="your_ssid"
    psk="your_key"
}

然后:

# wpa_supplicant -B -iwlan0 -c/etc/wpa_suppl.conf -Dwext
# dhclient wlan0

就这样

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.