How To Install XAMPP & Sublime Text 3 & PhpMyAdmin

How To Install XAMPP & Sublime Text 3 & PhpMyAdmin

The first video in a series that shows how to install XAMPP Sublime Text PhpMyAdmin the links to the download pages are provided in the video Xampp, Sublime Text and Phpmyadmin Installation ======================== Voila! XAMPP is installed in your system! Now, for easy enjoying XAMPP easily, edit “~/.bashrc”: sudo nano ~/.bashrc And add the following line at the end of the file: alias xampp='cd /opt/lampp && sudo ./manager-linux-x64.run' Reload the file into terminal: source ~/.bashrc Now, every time you run the command “xampp” on the terminal, it’ll open the XAMPP control window. Sublime Text Installation Install the GPG key: wget -qO - https://download.sublimetext.com/subl... | sudo apt-key add - Ensure apt is set up to work with https sources: apt-get install apt-transport-https Select the channel to use and enter these into the sources.list.d file using the "echo" command Stable echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list Dev echo "deb https://download.sublimetext.com/ apt/dev/" | sudo tee /etc/apt/sources.list.d/sublime-text.list Update apt sources and install Sublime Text apt-get update apt-get install sublime-text Phpmyadmin Installation we simply set up a sybolic link to our installation location this is because Xampp automatically install phpmyadmin for you ln -s /usr/share/phpmyadmin/ /opt/lampp/phpmyadmin/