Skip to content

Instantly share code, notes, and snippets.

@dbirks
Last active September 5, 2017 22:53
Show Gist options
  • Save dbirks/24308eb302b7e395ab360a5c74de419d to your computer and use it in GitHub Desktop.
Save dbirks/24308eb302b7e395ab360a5c74de419d to your computer and use it in GitHub Desktop.
Prep droplet for use with Debian Sid
#!/bin/sh
# update to debian sid
cat >> 'EOF' < /etc/apt/sources.list
deb http://deb.debian.org/debian sid main
deb-src http://deb.debian.org/debian sid main
deb http://deb.debian.org/debian sid-updates main
deb-src http://deb.debian.org/debian sid-updates main
deb http://security.debian.org/ sid/updates main
deb-src http://security.debian.org/ sid/updates main
EOF
apt update
apt upgrade -y
apt install -y tmux nmap
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment