Skip to content

Instantly share code, notes, and snippets.

@carsonwright
Last active August 29, 2015 14:25
Show Gist options
  • Save carsonwright/eecf164604c045a2d129 to your computer and use it in GitHub Desktop.
Save carsonwright/eecf164604c045a2d129 to your computer and use it in GitHub Desktop.
#!/bin/bash
sudo apt-get install ubuntu-desktop
sudo apt-get install lamp-server^
sudo apt-get install phpmyadmin
cd /var/www
sudo wget http://wordpress.org/latest.tar.gz
tar -xzvf latest.tar.gz
echo "tar -xzvf No wonder I couldn't remember ha"
mv latest wordpress
rm latest.tar.gz
echo "Create a mysql user and database for wordpress"
xdg-open http://localhost/phpmyadmin
read -p "Press [Enter] key to continue..."
echo "Set Up Wordpress"
xdg-open http://localhost/wordpress
echo "SECURE YOUR ROOT USER!"
echo "DIRECTIONS FOR SECURING YOUR ROOT USER \/"
echo "https://www.digitalocean.com/community/tutorials/initial-server-setup-with-ubuntu-14-04"
sudo apt-get install git
echo "INSTALLING VERSION CONTROL"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment