Skip to content

Instantly share code, notes, and snippets.

@alenabdula
Last active December 5, 2015 21:14
Show Gist options
  • Save alenabdula/6de943ade33f11934693 to your computer and use it in GitHub Desktop.
Save alenabdula/6de943ade33f11934693 to your computer and use it in GitHub Desktop.
#
# DigitalOcean Ubuntu Droplet
# Random things I encountered when working
# with DigitalOcean's Ubuntu VM Instance
# and some one liners like...
# Restart Server
sudo shutdown -r now
# Update Individual Package
sudo apt-get install --only-upgrade <packagename>
# If using PHP sendmail with WordPress
sudo apt-get install sendmail
# Sendmail SLOOOOOOOOOW? Edit /etc/hosts
127.0.1.1 yourhostnamehere yourhostnamehere
127.0.0.1 localhost.localdomain localhost yourhostnamehere
# Updating to PHP7
# Hell yeah!
# Stop all services first
sudo service nginx stop # etc... php5-fpm
sudo apt-get purge php5-*
# If installing fresh.
sudo add-apt-repository ppa:ondrej/php-7.0
sudo apt-get update
sudo apt-get install php7.0
sudo apt-get install php7.0-common
sudo apt-get install php7.0-cgi
sudo apt-get install php7.0-fpm
sudo apt-get install php7.0-mysql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment