Saturday, April 27, 2024
 Popular · Latest · Hot · Upcoming
-1
rated 0 times [  -1] [ 0]  / answers: 1 / hits: 1888  / 2 Years ago, tue, march 1, 2022, 7:34:43

I am trying to install xammpp on my Ubuntu 13.04. What I did was downloaded xampp from SourceForge, and then in the terminal I created /opt directory like this:



mkdir /opt
sudo tar xvfz xampp-linux-1.8.1.tar.gz -C/opt


and this error shows up:



tar (child): xampp-linux-1.8.1.tar.gz: Cannot open: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now

More From » xampp

 Answers
3

Example your xampp files in Downloads directory.



cd Downloads

sudo -s

tar xvfz xampp-linux-1.8.1.tar.gz -C /opt


After install xampp you will get permission denied error. Therefore to fix this, run the following code in terminal.



sudo chmod 777 -R /opt/lampp/htdocs/


Run the following command in terminal to start lampp,



/opt/lampp/lampp start

[#30917] Thursday, March 3, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
coffekne

Total Points: 114
Total Questions: 122
Total Answers: 126

Location: Mauritania
Member since Sun, Oct 17, 2021
3 Years ago
;