Written by Giles Bennett
Installing Wordpress over SSH is the simplest and quickest method of installing it.
Simply login with your usual SSH client, then navigate to the directory you want to install it into.
Download the latest version of Wordpress with the following command :
wget https://wordpress.org/latest.tar.gz
Then unpack the downloaded package :
tar xfz latest.tar.gz
which will unzip it to a directory called 'Wordpress'. To move the entire contents from that directory up into your current directory, simply type :
mv wordpress/* ./
Then finally clear up after yourself by removing the original zip file :
rm latest.tar.gz
and the empty directory :
rm -rf wordpress
Then continue the installation through Wordpress's web-based setup at www.yourdomain.com/wp-admin/install.php - you'll need your MySQL database name, username and password to create your config.php file (or you can do it manually - I may well cover that in another post!).