Last active
December 5, 2015 21:14
-
-
Save alenabdula/6de943ade33f11934693 to your computer and use it in GitHub Desktop.
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
# | |
# 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