I'm trying to compile something in OpenSuse ho开发者_运维技巧wever I get a Permission Denied. I've tried with "sudo make" and even logged in with superuser but the same error persists.
How can I fix this? Thanks.
Are you seeing this error running anything with sudo
, or just when running sudo make
? If you are only seeing this problem when running make
, does is happen on any makefile, or just this particular one?
Is your user account listed in the sudoers
file properly?
Did you add yourself to sudoers list? Type whereis sudoers to find out the file and edit it to see if you're in.
If you cannot run sudo make
, then copy make
to the path in question and try with the new name:
sudo cp /usr/bin/make ./fake
sudo ./fake
精彩评论