• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Linux Restarter: Premission Denied?

Extrodus

|| Blazera.net ||
Joined
Dec 22, 2008
Messages
2,692
Solutions
7
Reaction score
550
Location
Canada
Hello there, when I try to use restarter.sh, I place it under the server folder /home/server/ (for the user that I control server with). When I use screen ./restarter.sh I get an error saying premission denied.

restarter.sh
Code:
#!/bin/bash
ulimit -c unlimited
while true; do ./tfs; done

I have my administrator and I get the same error. I even changed the file to server user access only and it still says the same error. Anyone know the problem here?
 
Are you try add new functions?
Code:
#!/bin/bash
ulimit -c unlimited
while true; do
        cd /home/server
        ./theforgottenserver
        sleep 5
done
and putty
Code:
chmod -R 777 restarter.sh
 
Back
Top