Contents

ubuntu server简单安装以后,需要配置无线网络:
1.iwconfig,确认无线网卡的名称,wlan0或者其他比较怪的名字,例如:wlp2s0
2.启用无线网卡 sudo ifconfig wlp2s0 up
3.使用wpa_passphrase命令生成无线配置文件
wpa_passphrase “essid” “password” >/etc/wireless.conf
4.配置添加网卡
vi /etc/network/interfaces
auto wlp2s0
iface wlp2s0 inet dhcp
wpa-conf /etc/wireless.conf

Contents