Stratux on Zero?

Try this, let me know if it works.

Install Rasbian Jessie Lite (Update, expand root fs, mem split, change timezone)

Install some tools sudo apt-get update sudo apt-get upgrade sudo apt-get install subversion mercurial git bzr gcc screen sudo apt-get install libusb-dev libusb-1.0 libtool cmake sudo apt-get install hostapd install isc-dhcp-server

Fix the Hostapd install to work with the edimax wireless adapter (if you use the edimax adapter follow these steps) cd $HOME wget http://www.daveconroy.com/wp3/wp-content/uploads/2013/07/hostapd.zip unzip hostapd.zip sudo mv /usr/sbin/hostapd /usr/sbin/hostapd.bak sudo mv hostapd /usr/sbin/hostapd.edimax sudo ln -sf /usr/sbin/hostapd.edimax /usr/sbin/hostapd sudo chown root.root /usr/sbin/hostapd sudo chmod 755 /usr/sbin/hostapd

Configure Hostapd sudo nano /etc/hostapd/hostapd.conf

Edit hostapd.conf as follows: interface=wlan0 driver=rtl871xdrv ssid=stratux channel=1 wmm_enabled=0 macaddr_acl=0

Set Hostapd to use your config file sudo nano /etc/default/hostapd

Edit the file as follows: DAEMON_CONF="/etc/hostapd/hostapd.conf"

Configure isc-dhcp-server (Comment out option domain-name lines, and uncomment authoritative line) sudo nano /etc/dhcp/dhcpd.conf

Edit the file as follows: subnet 192.168.10.0 netmask 255.255.255.0 { range 192.168.10.10 192.168.10.50; option broadcast-address 192.168.10.255; option routers 192.168.10.1; default-lease-time 600; max-lease-time 7200; }

And then this file too: sudo nano /etc/default/isc-dhcp-server

Edit as follows: INTERFACES="wlan0"

Set up a static IP (comment out all other wlan0 lines) sudo nano /etc/network/interfaces

Edit as follows: iface wlan0 inet static address 192.168.10.1 netmask 255.255.255.0

Get hostapd and isc-dhcp-server to start at boot: sudo update-rc.d hostapd enable sudo update-rc.d isc-dhcp-server enable

Install rtl-sdr to control the radio cd $HOME git clone https://github.com/steve-m/librtlsdr cd librtlsdr mkdir build cd build cmake ../ -DINSTALL_UDEV_RULES=ON make sudo make install sudo ldconfig

Install Go cd $HOME curl http://dave.cheney.net/paste/go-linux-arm-bootstrap-c788a8e.tbz | tar xj curl https://storage.googleapis.com/golang/go1.5.1.src.tar.gz | tar xz env GO_TEST_TIMEOUT_SCALE=10 GOROOT_BOOTSTRAP=$HOME/go-linux-arm-bootstrap ./make.bash rm -rf $HOME/go-linux-arm-bootstrap

Edit .profile cd $HOME Sudo nano .profile export GOROOT=$HOME/go export PATH=$PATH:$HOME/go/bin

Install Stratux and dependencies cd $HOME git clone https://github.com/cyoung/stratux cd stratux go get github.com/BurntSushi/xgbutil github.com/codegangsta/cli go get github.com/llgcode/ps golang.org/x/text go get golang.org/x/crypto/ssh/terminal github.com/boombuler/barcode mkdir -p $GOPATH/src/code.google.com/p cd $GOPATH/src/code.google.com/p hg clone https://code.google.com/p/freetype-go cd ~/stratux env GOPATH=~/stratux make sudo make install

Sources: Configuring hostapd and isc-dhcp-server: https://learn.adafruit.com/setting-up-a-raspberry-pi-as-a-wifi-access-point/install-software Fixing hostapd to work with edimax adapter: http://www.daveconroy.com/turn-your-raspberry-pi-into-a-wifi-hotspot-with-edimax-nano-usb-ew-7811un-rtl8188cus-chipset/ Installing librtlsdr: http://sdr.osmocom.org/trac/wiki/rtl-sdr#rtlsdrlibrarycapturetool Installing Go: http://dave.cheney.net/2015/09/04/building-go-1-5-on-the-raspberry-pi https://github.com/ssokol/stratux/wiki/Stratux-from-source-with-Go-1.5.1 Updating .profile for GOPATH and GOROOT: https://golang.org/doc/install General stratux install guides: https://www.reddit.com/r/stratux/comments/3v9vsr/howto_building_stratux_from_source/ https://github.com/ssokol/stratux/wiki/Stratux-from-source-with-Go-1.5.1

/r/stratux Thread