本文主要是介绍树莓派3B创建WiFi热点,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
创建WiFi热点使用的GitHub上一个开源项目:
https://github.com/oblique/create_ap
具体在树莓派上操作为:
#将代码copy到本地,安装
git clone https://github.com/oblique/create_ap
cd create_ap
make install#安装依赖的库
apt-get install util-linux procps hostapd iproute2 iw haveged dnsmasq#创建WiFi热点(GitHub上有多种方式创建,可以查找自己需要的那种)
sudo create_ap wlan0 eth0 热点名 密码#开机启动
将sudo create_ap wlan0 eth0 热点名 密码 添加到/etc/rc.local当中,即可开机启动
这篇关于树莓派3B创建WiFi热点的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!