1.linux_hotspot
https://blog.csdn.net/weixin_41114301/article/details/127165479
git的依赖:
sudo apt-get install hostapd iptables dnsmasq
安装git:
sudo apt-get install git
git clone https://github.com/oblique/create_ap
cd create_ap
sudo make install
sudo apt install net-tools
如果你的无线网卡名是wlp0s20f3
有线网卡名是enx00e1990015df
你想创建的热点是my_linux_hotspot
密码是12345678
#开启热点,可以关闭终端, ctrl+c可以终止热点
sudo create_ap wlp0s20f3 enx00e1990015df my_linux_hotspot 12345678
此时可以看到给出的日志:PID:11111
想关闭热点要在后台进程kill掉
ps -elf
sudo kill 11111
要注意,关机之前现把热点关掉,否则关机可能等很久?
查看网卡:
ifconfig #冒号前的就是你的网卡名
iwconfig
#这条命令会列出你的所有网卡名之后就可以所有设备都上网了。
cat /proc/net/dev | awk '{if($2>0 && NR > 2) print substr($1, 0, index($1, ":") - 1)}'
如果想卸载:
make uninstall