The reason for this blog is to document my attempts at different installations and tasks in Ubuntu, as well as fixes which have been taken from a lot of different sources because one just doesn't work. Hopefully this blog will help you with your problems.
For this purpose i chose Ubuntu because of all the support that comes with it, you could choose any other distribution of your choice. I tried working on Centos, but it almost drove me mad.
First things first, grab a fresh distribution of Ubuntu from www.Ubuntu.com . I chose the Desktop version because of the Graphical User Interface that comes with it, coming from a life of using Windows from the word go, a nice GUI is always welcome to fiddle around when things arent going your way.
once you've installed Ubuntu login with the account you created during the installation and fire up the terminal. You should find it under Application > Accessories.
Type:
- sudo su
To install LAMP (Linux Apache Mysql PHP) simply type at the terminal prompt:
- sudo tasksel install lamp-server
Once the installation has completed, type the following in the address bar of your browser
- http://localhost OR http://127.0.0.1
At this point you need to install a front end to manage Mysql, a good one is PHPMYADMIN
To install phpmyadmin simply type the following at the terminal prompt:
- apt-get install phpmyadmin
- http://localhost/phpmyadmin OR http://127.0.0.1/phpmyadmin
No comments:
Post a Comment