Finding the Group Owner Name


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Finding the Group Owner Name
# 1  
Old 11-08-2012
Tools Finding the Group Owner Name

Hi all,
How can i find the group owner name...???
Thanks
# 2  
Old 11-08-2012
Of a file:
Code:
ls -l  t.lis
-rw-r--r--   1 owner  group      6810 Nov  7 13:33 t.lis

This User Gave Thanks to jim mcnamara For This Post:
# 3  
Old 11-08-2012
You can also run the command: groups to see which groups you belong to. It will list the primary group first followed by other:-
Code:
groups

This User Gave Thanks to Yoda For This Post:
# 4  
Old 11-09-2012
Thanks for the comment,
It's not from the file. When i do a groups it will list all the groups that i blong to. And i want who is the owner of that group...I have the list of the group and Finger does work only for the primary group what about other group that i belongs to ....
Thanks in advance
# 5  
Old 11-11-2012
Groups don't have owners.

Your system administrator may have a list of groups and be able to name a person (or a position within your administrative domain) who is authorized to approve changes to membership in any particular group. If there is such a person, there is no requirement that that user be a member of the group.
This User Gave Thanks to Don Cragun For This Post:
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

List files whose owner or group is numeric

I want to add a condition is my find command to include files/sub-directory whose owner or group is all numeric number. My current find command is find . \( -user root -o -user soham\) -type f -exec ls -l {} \; 2>&1 ---------- Post updated at 10:20 AM ---------- Previous update was at... (5 Replies)
Discussion started by: Soham
5 Replies

2. AIX

Files without owner and group

Dears it is normal that the below binaries stay without any owner and group I have checked it in many servers and the like the below /usr/lpp/bos.net/inst_root/etc/ipsec# ls -lrt total 248 -r-xr-xr-x 1 987 987 13589 Jun 29 2005 default_group -r-xr-xr-x ... (5 Replies)
Discussion started by: thecobra151
5 Replies

3. Emergency UNIX and Linux Support

To identify the group owner

If I have to identify the group owner of an AIX group, what is the command to be used. Example: there is an mqadm group, how do I find the owner of this group? Please help. (6 Replies)
Discussion started by: ggayathri
6 Replies

4. UNIX for Dummies Questions & Answers

Finding the group owner for a file

How would I find out who the group openers is of a file? For example: > ls -l myfile -rwxr-xr-x 1 myronp hawks 20125 Oct 20 20:50 myfile How do I return just hawks. I could do this with a series of cut or awk, but is there a more direct way. The ls -g is better, but still... (1 Reply)
Discussion started by: Dad4x
1 Replies

5. UNIX for Dummies Questions & Answers

Setting group and owner with mkdir?

Hi, As root, I want to create a directory and set the group and ownership permissions at the same time with one command, instead of making the directory, then going back and doing a chown and chgrp. I don't see an option for this in the mkdir man page. Would I pipe chown and chgrp with my... (1 Reply)
Discussion started by: moose123
1 Replies

6. Shell Programming and Scripting

automatically change owner and group

We have a program that when a new account is created using the webpage it creates a new directory on the linux filesystem for the account. The problem is the process that creates the directory is as root user, as I want ftpuser to be able to login I have to manually login and chown -R the... (1 Reply)
Discussion started by: borderblaster
1 Replies

7. UNIX for Dummies Questions & Answers

How to copy owner permissions to group

Hi, I need a command or a script to change the group permissions to be the same as the owner permissions for all my files and directories (recursive) any idea ? (4 Replies)
Discussion started by: ynixon
4 Replies

8. Shell Programming and Scripting

How about finding out all objects by owner

Hi How about finding out all objects 1. owned by a particular owner / 2. or accessed by group id Thanks in advance Regards, HAA (3 Replies)
Discussion started by: HAA
3 Replies

9. Shell Programming and Scripting

permission, owner and group

hello I search a script (ksh for Aix 5.3) to save all permissions, groups and owner for all files. Because we work much to change it, and a mystake ......! So i want execute this script to save/ execute permissions for all files. If you have this script, thank you for your help ;) best... (2 Replies)
Discussion started by: pascalbout
2 Replies

10. UNIX for Dummies Questions & Answers

owner and group in Linux

I am bit unclear of how Linux was set in the real world, please advise me how it's supposed to be. When I log in as root and do a ls -l, I find: /boot, /, /var, /usr, /tmp, /home, /u01, /u02, /u03 and of of this partition is owned by root and the group also belong to root. Is that the way it's... (1 Reply)
Discussion started by: lapnguyen
1 Replies
Login or Register to Ask a Question