Skip to content

TheGreatRambler/TOZ

Repository files navigation

TOZ

Tas On Zero: Run TAS on a Raspi Zero. Sadly, the hardware required to accomplish this task is not available on the Raspi Zero (I tried driver solutions, no dice), so this project is put on hold indefinitely.

How to install

For those that need to install Rasbian

  1. Install Raspbian Lite and flash to a micro SD card (I recommend Rufus)
  2. Open the Boot partition of the SD card (Simply open it normally on Windows) and create the file SSH
  3. Create another file named wpa_supplicant.conf with the following contents:
country=US
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1

network={
   ssid="[NAME OF NETWORK HERE]"
   psk="[NAME OF NETWORK PASSWORD HERE]"
}
  1. Eject the SD card and put it in the PI
  2. SSH into the PI using this command to get the IP:
ping raspberrypi
  1. Get GIT with this command:
sudo apt install git
  1. Get the GIT repository with this command:
git clone https://github.com/TheGreatRambler/TOZ.git
  1. Install
cd TOZ && chmod +x install.sh && ./install.sh