Hi, You will learn how to install xampp server in all versions of UbUntu, This topic is simple and not complicated, We will use Ubuntu commands easy.

XAMPP 1.7.7 Installation:
Open the terminal and run these commands to install XAMPP 1.7.7:
1-
sudo add-apt-repository ppa:upubuntu-com/web
2-
sudo apt-get update
3-
sudo apt-get install xampp
===================================
You can now start XAMPP with this command:
sudo /opt/lampp/lampp start
====================
Now you can test the server:
===========================
You can now move your projects (scripts, PHP files, HTML files, etc.) to this root web directory:/opt/lampp/htdocs/

Now we will give authorities to the htdocs folder, put the files:
sudo chmod -R 777 /opt/lampp/htdocs

- To stop XAMPP, use this command:sudo /opt/lampp/lampp stop
===========================
- To restart XAMPP:sudo /opt/lampp/lampp restart
===================
- MySQL administrator username is root without password.- ProFTPD uses lampp as password and nobody as user.

For more commands and details, check this page. To uninstall XAMPP 1.7.7, run this command:
sudo apt-get remove xampp
Then restart your computer to kill any running XAMPP daemon











