WordPress - Installation
A quick guide on installing WordPress on an Ubuntu server. Begin by downloading the latest WordPress image to the home directory. $ cd ~ $ wget -c http://wordpress.org/latest.tar.gz Extract the image $ tar -xzvf latest.tar.gz Copy the extracted files to the root website folder $ sudo rsync -av wordpress/* /var/www/html/ Setup permissions $ sudo chown -R www-data:www-data /var/www/html/ $ sudo chmod -R 755 /var/www/html/ Setup the default database for the WordPress server to use ...