Owner of file gets 'not owner' error for chgrp


 
Thread Tools Search this Thread
Operating Systems Solaris Owner of file gets 'not owner' error for chgrp
# 1  
Old 12-16-2007
Owner of file gets 'not owner' error for chgrp

Hi Folks,

I know that changing users and groups is pretty basic admin, but this one has got me stumped. When I try to change the group of a file for which I am the owner for, it still gives me a 'Not owner' error.

For example, when I am logged in as 'webadmin', I have the following file:

-rwxrwxr-x 1 webadmin other 0 Dec 17 12:00 zzz_info.php

I want to change group from other to www, so I run:

chgrp www zzz_info.php

I get this error:

chgrp: changing group of `zzz_info.php': Not owner

I have read somewhere that "More recent versions" of solaris only enable root to change permissions by default, but as per instructions I have gone and set "set rstchown=1" in /etc/system.

This is something I've never dealt with before, so any help would be appreciated.
# 2  
Old 12-17-2007
Java

Quote:
Originally Posted by brizrobbo
I have read somewhere that "More recent versions" of solaris only enable root to change permissions by default, but as per instructions I have gone and set "set rstchown=1" in /etc/system.
Try setting it to 0 instead. Setting it to 1 enables the restrictions on chown rather than disables (as 0 does).
# 3  
Old 12-17-2007
Quote:
Originally Posted by Smiling Dragon
Try setting it to 0 instead. Setting it to 1 enables the restrictions on chown rather than disables (as 0 does).
Ooops, my bad. Have now set to 0 and rebooted. Must be something else, as the problem still manifests the same.
# 4  
Old 12-17-2007
You need the "file_chown_self" privilege to giveaway a file ownership or group.

Otherwise, the chgrp command will only allow you to switch between groups you belong to.
# 5  
Old 12-18-2007
Thanks...that did it.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Ssh failing due to Bad owner error

i am logged in with "user1" on host1. I m trying to ssh to host2 using user id "user2" $ ssh user2@host2 Bad owner or permissions on /home/user1/.ssh/config Question 1: Can you please tell me why am i getting the Bad owner permissions error on that directory ? Question 2: Where is it... (7 Replies)
Discussion started by: mohtashims
7 Replies

2. Red Hat

Can't chgrp. Error - chgrp: changing group of `<file>': Invalid argument

I found that I cannot chgrp for some reason with error: chgrp: changing group of `<file>': Invalid argument This happens on all NFS mounted disks on client machines. We use AD (not my call) for authentication and it also provides groups. We have a NFS server running Scientific Linux 6.3... (1 Reply)
Discussion started by: venmx
1 Replies

3. Solaris

Privileges : modify dir/file owner by other that's not owner

i need to do the following operations in solaris 10: 1.change owner and group owner for files which are not owned by the current user and user group 2.to can delete files in the /tmp directory which are not of the current user 3. allow to a standard user the deletion of files in the /tmp... (1 Reply)
Discussion started by: sirmark
1 Replies

4. Cybersecurity

Change file owner

What i did: - logged in with acc1 and created a new user acc2 commands used: useradd and passwd. - Then i logged in acc2. but all the files are owned by acc1. Issue: I try to change the owner of the files using chown command . But it gives me a error message. All i want to do is... (13 Replies)
Discussion started by: TotallyConfused
13 Replies

5. UNIX for Advanced & Expert Users

How UNIX admin set up this? how files of 744 of other owner can be removed by another owner?

Hi all, We have some files are under 744 permissions and the the owner is say owner1 and group1. Now we have another user owner2 of group2, owner2 can remove files of the owner1 and the permission of those files are 744, unix admin told us he did some config at his side so we can do that. ... (14 Replies)
Discussion started by: TheGunMan
14 Replies

6. Shell Programming and Scripting

getting file owner in perl

hi, how can I get the owner of the file ( not uid) on windows plaform. "getpwuid" is not working on windows. I knw it works on unix. Thanks. (2 Replies)
Discussion started by: shellwell
2 Replies

7. UNIX for Advanced & Expert Users

Is there a command to get the owner of a file?

At the moment I'm just using `ls -o` (with `cut`), but `ls` is obviously giving me a lot more output than just the file owner. (9 Replies)
Discussion started by: Bilge
9 Replies

8. Shell Programming and Scripting

determine owner of a file

Hello, I am on a mission to determine the user of file. I have used the ls -l command but it displays permission, link, user, group, etc, but I just want to display just the name of user of a specified file. Many thanks (4 Replies)
Discussion started by: unibboy
4 Replies

9. UNIX for Dummies Questions & Answers

change owner of a file

im running into changing the ownership of a file. I am trying to change the ownership to "system", but it doesn't want to work. I sudo chown system /preferences.plist Password: chown: system: Invalid argument is there a way to read the ownership of a file, something like read chown... (3 Replies)
Discussion started by: CBarraford
3 Replies

10. UNIX for Dummies Questions & Answers

How to change the owner of the file?

How to change the owner of the file? Can I change the owner of file/ files? I am user and not admin.(not logged as root) (1 Reply)
Discussion started by: redlotus72
1 Replies
Login or Register to Ask a Question