xampp en linux mint 64 bits
all,
Below I will explain how to install XAMPP in 64 bit linux mint, as you know this application we install php, mysql and apache for us to manage our web projects without settings, and more.
In another chapter I explain how to make these settings without having to use this program.
will follow the instructions on this page are http://ubuntulife.wordpress.com/2007/04/30/instalar-xampp-en-linux/ (I will stick them here):
The program is downloaded of http://www.apachefriends.org/en/xampp-linux.html
- We can download the file xampp-linux-1.7.3a.tar.gz
- execute from console (as root):
tar xvfz xampp-linux-1.7.3a.tar.gz-C / opt
- And that's all. XAMPP is installed by default in / opt / lampp. To start it run:
/ opt / lampp / lampp start
text messages appear indicating that the web server and database are started:
root @ XXXXX: / opt / lampp #. / Lampp
start Starting XAMPP for Linux 1.6.1 ...
XAMPP: Starting Apache with SSL (and PHP5) ...
XAMPP: Starting MySQL ...
XAMPP: Starting ProFTPD ...
XAMPP for Linux started.
root @ XXXXX: / opt / lampp #
We can see that is installed correctly, opening a session with the browser you have available and installed on the computer typing as URL: http://localhost
Now comes the really important thing is that in 64-bit Linux distributions do not xampp works because it is implemented only for 32-bit distributions, when trying to launch the application as I mentioned earlier we get the following error:
"XAMPP is Currently only availably as 32 bit application. Please use a 32 bit compatibility library for your system "
To fix it enough that we install in our distribution is the library that allows applications to run 32-bits, the sentence would be:
sudo apt-get install ia32-libs
When we have done this try to restart xampp and we'll see how it works correctly in our distribution of 64 bits. Good
0 comments:
Post a Comment