Permission Denied

imbadudelz

New member
Messages
24
Points
0
OS: Debian

I'm installing hercules on my VPS. I followed the instructions on the wiki. I created a new user on the OS of my VPS and logged in that user. I installed all the packages listed on the wiki on my VPS.  The problem is I can't use the command ./configure on my VPS. It says Permission denied. How can I fix this?

https://imgur.com/45g1Kqz

I tried the command "sudo ./configure". But it says "command not found".

However, "sudo mysql" is working.

I even tried to use "./configure" using root user.

https://imgur.com/uyyjDZZ

 
Last edited by a moderator:
your issue is windows. You copy files from windows probably by ftp, and all file permissions was removed.

Better way is clone from git on linux.

Other fix option is run command

chmod +x configure
chmod +x config.status


  and may be same command for other files

 
your issue is windows. You copy files from windows probably by ftp, and all file permissions was removed.

Better way is clone from git on linux.

Other fix option is run command

chmod +x configure
chmod +x config.status

chmod +x configure
chmod +x config.status


  and may be same command for other files
My server is up and running now. Your solution fixed the problem.

 
Back
Top