Recent Discussions

Getting around AccessDeniedException without using sudo

Unanswered
Sloth bear posted this in #questions
Messages6 messages
Views0 views
Sloth bearOP
im running a server using linux.
im pretty confident I dont need to use sudo to run this, and its simply a permission misconfiguration, but im not experienced enough with linux to know the method to fix this
:neqprayge: help pls and thanks
Screenshot_2025-08-31_204759.png
image.png
Masai Lion
Hello, it looks like you are getting "access denied" on the world directory, which is owned by root. You would probably want to chown that directory (and the other directories) to your gwen user instead.

sudo chown -R gwen:gwen ~/FearNightfall should do it.
chown (change owner) -R (recursively) gwen:gwen (your user:group) the FearNightfall directory

I am guessing you would be able to start the server correctly at that point.
I am assuming you have sudo access to the server itself, you need it in order to chown items currently owned by root. Your regular user permissions would not be able to, very likely.
Masai Lion
Sweet, you are welcome 🙂 glad it workd
Loading...