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 directoryI 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.runon this page: Unable to install xampp in ubuntu 13.04
Thanks for the help
11 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.runEDIT:
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.