cannot access ‘xampp-linux-x64-1.8.3-1-installer.run’: No such file or directory

I am a complete novice with Linux Ubuntu. When installing xampp it occurs to me this message:

Can not access 'xampp-linux-x64-1.8.3-1-installer.run': No such file or directory

I followed these instructions to install:

For 64-Bit Ubuntu

wget
chmod + x xampp-linux-x64-1.8.3-1-installer.run
./xampp-linux-x64-1.8.3-1-installer.run

on this page: Unable to install xampp in ubuntu 13.04

Thanks for the help

1

1 Answer

paste as it is , the mistake you have done space between + and x at chmod.

the right way is,

wget
chmod +x xampp-linux-x64-1.8.3-1-installer.run
./xampp-linux-x64-1.8.3-1-installer.run

EDIT:

Now actually your file was saved to download.php?xampp-linux-x64-1.8.3-1-installer.run.1 , so now in the terminal paste as mv download.php?xampp-linux-x64-1.8.3-1-installer.run.1 xampp-linux-x64-1.8.3-1-installer.run and then run the remaining commands.

10

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like