when i want to install xampp server
using this command
xampp-linux-x64-5.5.30-0-installer
it shows me error:
chmod: cannot access ‘xampp-linux-*-xampp-linux-x64-5.5.30-0-installer.run’: No such file or directory
when i want to install xampp server
using this command
xampp-linux-x64-5.5.30-0-installer
it shows me error:
chmod: cannot access ‘xampp-linux-*-xampp-linux-x64-5.5.30-0-installer.run’: No such file or directory
You need to use the command
chmod +x xampp-linux-x64-5.5.30-0-installer.run
Only then you can execute it.
Download xampp
(https://www.apachefriends.org/download.html).
open the location where the downloaded file is exists by using terminal, if my downloaded file exists in Downloads directory.
e.g: cd /$HOME/Downloads
Give permissions to that file: chmod +x xampp-linux-x64-7.0.9-1-installer.run
Run that file: sudo ./xampp-linux-x64-7.0.9-1-installer.run
that's it
– RITESH KUMAR Nov 08 '15 at 18:29