更新系统
通过 ssh 连接到树莓派后,就可以在命令行下配置一下 pi 的 wifi 连接了。
先更新一下系统:
sudo apt-get update
若更新太慢,可更换源为国内中科大的源,方法为:
编辑/etc/apt/sources.list文件。删除原文件所有内容,用以下内容取代:
deb http://mirrors.ustc.edu.cn/raspbian/raspbian/ jessie main non-free contrib
deb-src http://mirrors.ustc.edu.cn/raspbian/raspbian/ jessie main non-free contrib
然后 sudo apt-get update
即可。
连接 wifi
-
安装 wireless-tools
sudo apt-get install wireless-tools
有可能提示已安装。 -
配置网络
然后可以开始配置网络了,使用 nano 编辑器(或者 vim)打开 /etc/wpa_supplicant/wpa_supplicant.conf
sudo nano /etc/wpa_supplicant/wpa_supplicant.conf
在打开的页面最下面添加:
network={
ssid="testing"
psk="testingPassword"
}
将" testing" 替换为你的 wifi 热点名称,将 "testingPassword" 替换为你的 wifi 热点密码,然后保存并退出。
- 应用配置
wpa_cli -i wlan0 reconfigure
最后查看无线热点,应该看到 pi 已经连接上了!
相关
如果这篇文章有任何错误,请在评论中指出,感谢!
网友评论