0

I'm using ubuntu 14.04 LTS, I want to install xampp but encountering

chmod: cannot access ‘xampp-linux-x64-5.6.12-0-installer.run’: No such file or directory
pl_rock
  • 11,297

1 Answers1

1

You are probably trying to run your chmod in the wrong directory (a directory where your xampp-linux-x64-5.6.12-0-installer.run file is not available).

Navigate to the correct folder using cd (refer here for more information on the cd command):

cd /<folder-where-the-file-is/

Then run your command again.


I assume you are trying to XAMPP, so here is the full installation procedure if you still can't run your command :

wget https://www.apachefriends.org/xampp-files/5.5.28/xampp-linux-x64-5.5.28-0-installer.run
chmod +x xampp-linux-*-installer.run
sudo ./xampp-linux-*-installer.run
hg8
  • 13,462