我正在尝试在系统启动后将无线网卡设置为 adhoc 模式。我按照以下指南创建了一个 shell 脚本:
https://help.ubuntu.com/community/WifiDocs/Adhoc#Wireless_Extensions_CLI_tools_Method
如果我手动执行脚本,一切都会正常。但是,如果我按照此处所述将其添加到 init.d 中:
https://help.ubuntu.com/community/UbuntuBootupHowto#Installing_custom_init-scripts
或者如果我将其设置为在“@reboot”触发的 cron 作业,无线接口似乎无法启动。
我猜我可以使用 /etc/network 将卡配置为直接启动到临时模式,但我真的不知道该怎么做。
有人能给我指出正确的方向吗?
答案1
从这里您将无线模式 ad-hoc 添加到您的接口定义中
auto wlan0
iface wlan0 inet static
address 192.168.1.1
netmask 255.255.255.0
wireless-channel 1
wireless-essid MYNETWORK
wireless-mode ad-hoc