Monday, April 19, 2010

Howto Install PHP and Mysql in Ubuntu 10.04


$ sudo apt-get install apache2
$ sudo apt-get install php5


$ sudo apt-get install mysql-server
$ sudo apt-get install php5-mysql

$ sudo /etc/init.d/apache2 restart

No comments:

Post a Comment

Git get all remote branches

git branch -r \ | grep -v '\->' \ | sed "s,\x1B\[[0-9;]*[a-zA-Z],,g" \ | while read remote; do \ git branc...