3

I'm really a novice in Linux. I'm currently running an OpenSUSE version and I would like to run a program that was installed by root as a non root user.

In other words, how do I configure the "sharing" settings to run this program as a non-root user?

slhck
  • 235,242
hari
  • 31

2 Answers2

2

It doesn't matter who installed the binary, it matters what the permissions are.

To run the file, UNIX would: check to see if you are the file owner: if so, do you have execute perms?

If not the file owner, are you in the same group: if so, do you have execute perms?

If neither owner or in the group: Does 'other' have execute perms?

Most software installed by 'make install' would give execute perms to all of user, group, and other, and you must by definition be in one of those groups.

What does ls -l say?

(*) Small caveat, to execute the file, you need execute perms, but to even see it you need perms on the directories that contain the file as well. This is rare, and I'm sure the executable permissions are more important at this point.

Rich Homolka
  • 32,350
1

Just change the access rights:

chmod a+x file

But be careful. How did you install the program? Normally, programs install (through rpm or make install) with sufficient and correct rights.

choroba
  • 20,299