Skip to content

Instantly share code, notes, and snippets.

@jiahuang
jiahuang / devboards.md
Created May 20, 2015 22:49
list of small linux dev boards

#small linux dev boards

  • VoCore ($20)
  • CHIP ($9, probably won't ship until next year though)

Copy the packetspammer binary to /usr/bin on the Tessel, then run the following commands:

iw dev wlan0 interface add mon0 type monitor
ifconfig wlan0 down
ifconfig mon0 up
iw mon0 set channel 11
packetspammer -d0 mon0 > /dev/null

开关wifi: 改 /etc/config/wireless

config wifi-device 'radio0'
        option type 'mac80211'
        option channel '11'
        option hwmode '11g'
        option path '10180000.wmac'
 option htmode 'HT20'
@jiahuang
jiahuang / gist:21346a001f499d00411e
Created July 6, 2015 13:36
openwrt b/g/n settings
On the terminal:
```
uci set wireless.radio0.require_mode=g //把g换到b/n
uci commit
wifi
```