Skip to content

Instantly share code, notes, and snippets.

@veekram
Forked from bendangelo/S3InstallUbuntu
Created January 23, 2018 06:20
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 veekram/49183214fc1551a8d11f733b0321bda6 to your computer and use it in GitHub Desktop.
Save veekram/49183214fc1551a8d11f733b0321bda6 to your computer and use it in GitHub Desktop.
One line install S3cmd on Ubuntu
# Install with:
# bash < <(curl -L https://raw.github.com/gist/2767174)
echo "Installing S3cmd..."
wget -O- -q http://s3tools.org/repo/deb-all/stable/s3tools.key | sudo apt-key add -
sudo wget -O/etc/apt/sources.list.d/s3tools.list http://s3tools.org/repo/deb-all/stable/s3tools.list
sudo apt-get update && sudo apt-get install s3cmd
echo "Done"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment