1826332 Members
3491 Online
109692 Solutions
New Discussion

Re: permissions

 
SOLVED
Go to solution
Brent W. Moll
Advisor

permissions

How do I do a chmod to make this file...

/u01/app/oracle/product/9.2.0.4/bin
-rwsr-xr-x 1 oracle dba 2404264 Oct 7 13:07 dbsnmp

look like this...

-rwsr-s--- 1 oracle dba 2409408 Apr 7 2003 dbsnmp
3 REPLIES 3
Pete Randall
Outstanding Contributor
Solution

Re: permissions

chmod g+s should do it.


Pete

Pete
A. Clay Stephenson
Acclaimed Contributor

Re: permissions

You need to set both the setuid (4000) and set uid (2000) or (6000 octal for both) bits in addition to the low-order 750 bits.

chmod 6750 dbsnmp
If it ain't broke, I can fix that.
I.Delic
Super Advisor