Last active
September 5, 2017 22:53
-
-
Save dbirks/24308eb302b7e395ab360a5c74de419d to your computer and use it in GitHub Desktop.
Prep droplet for use with Debian Sid
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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