Skip to content

Instantly share code, notes, and snippets.

@tstellanova
Last active February 19, 2019 03:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tstellanova/44d41547d88dc8e86e20ae443d626e2e to your computer and use it in GitHub Desktop.
Save tstellanova/44d41547d88dc8e86e20ae443d626e2e to your computer and use it in GitHub Desktop.
initial-rockpi4a-setup.sh
#!/bin/bash
echo "EDITOR=vi
VISUAL=$EDITOR
export EDITOR VISUAL" > .profile
sudo apt-get update
# headless mode
sudo systemctl set-default multi-user.target
# enable zeroconf / avahi
sudo apt-get install -y avahi-daemon libnss-mdns
# grab docker
wget https://gist.githubusercontent.com/tstellanova/714c64fe476eef467982c93976c955be/raw/install-docker-arm64.sh
chmod +x install-docker-arm64.sh
./install-docker-arm64.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment