Created
March 20, 2019 12:58
-
-
Save Depicus/c2f557e9a5ef7cc92835b68d623ba8a5 to your computer and use it in GitHub Desktop.
Commands for installing Wordpress on Ubuntu 18.04 LTS
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
sudo apt update && sudo apt upgrade && sudo apt autoremove | |
cd /var/www | |
sudo wget http://wordpress.org/latest.tar.gz | |
sudo tar xfz latest.tar.gz | |
sudo rm latest.tar.gz | |
sudo apt install php-mysql |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment