1. 程式人生 > >樹莓派創建WiFi熱點

樹莓派創建WiFi熱點

開機 iproute util 使用 TP wifi ins clone reat

將代碼clone到本地

git clone https://github.com/oblique/create_ap
cd create_ap
make install

安裝依賴的庫

有些源中可能使用util-Linux

apt install util-linux procps hostapd iproute2 iw haveged dnsmasq

創建WiFi熱點(GitHub上有多種方式創建,可以查找自己需要的那種)

create_ap 無線網卡名 有線網卡名 熱點名 密碼

開機啟動

一定要在命令後添加&使其後臺執行

vim /etc/rc.local
create_ap 無線網卡名 有線網卡名 熱點名 密碼 &

樹莓派創建WiFi熱點