我的意图是将我的笔记本电脑(Dell Vostro 3350)sda1磁盘备份到我的桌面。 一些谷歌search后,我决定使用CloneZilla的目的。 我有一个OpenSSH服务器安装并运行在我的桌面上。 所以我把CloneZilla光盘插入CD-ROM,从它启动,然后select了一个像“使用ssh服务器来存储图像”的选项。 然后我得到了一个selectnetworking接口的邀请。 我select了wlan0并inputshell来手动configuration连接。 这就是我陷入困境的原因,对于我想要使用的无线networking是WPA2encryption的,我不知道如何从命令行连接到它。
您想使用wpa_supplicant来configurationWPA2部分。 我不记得确切的顺序,你是应该先运行还是先运行iwconfig。 这里是Ubuntu的手册页:
http://manpages.ubuntu.com/manpages/precise/man8/wpa_supplicant.8.html
应该有其他地方的指针,正确地使用CloneZilla基于的任何发行版。
实际步骤如下:
1.为wpa_supplicant创buildconfiguration文件
# touch /etc/wpa_suppl.conf
用vi编辑器编辑
# vi /etc/wpa_suppl.conf
应该有:
network={ ssid="your_ssid" psk="your_key" }
然后:
# wpa_supplicant -B -iwlan0 -c/etc/wpa_suppl.conf -Dwext # dhclient wlan0
就这样