owner and group in Linux


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers owner and group in Linux
# 1  
Old 07-12-2002
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 supposed to be??? or I should change /u01, /u02, /u03 to different owner beside root???

Please advise me what I should do.

Thanks so much everyone.
This User Gave Thanks to lapnguyen For This Post:
# 2  
Old 07-16-2002
This is for HPUX, your results may vary...

All base level, root level, "directories" should be owned by root:sys or root:bin, in almost every case. There may be some exceptions to this.


However, for mounted filesystems, mine are owned by bin:bin.

It really depends on the OS. You need to go to the website for your flavor of UNIX and see what they recommend.

#cd /
# ll |grep ^d|grep bin
dr-xr-xr-x 57 bin bin 5120 Jun 15 07:49 dev
dr-xr-xr-x 26 bin bin 7168 Jul 16 09:39 etc
dr-xr-xr-x 10 bin bin 1024 May 31 14:46 home
dr-xr-xr-x 37 bin bin 1024 Jun 12 14:03 opt
drwx--x--x 18 root bin 2048 Jul 16 08:57 root
dr-xr-xr-x 12 bin bin 3072 Mar 16 07:22 sbin
dr-xr-xr-x 7 bin bin 1024 Jun 15 07:36 stand
drwxrwxrwt 9 bin bin 49152 Jul 16 09:52 tmp
dr-xr-xr-x 25 bin bin 1024 May 18 09:35 usr
dr-xr-xr-x 23 bin bin 1024 May 18 09:35 var
This User Gave Thanks to Kelam_Magnus For This Post:
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. 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

2. 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

3. 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

4. UNIX for Dummies Questions & Answers

Finding the Group Owner Name

Hi all, How can i find the group owner name...??? Thanks (4 Replies)
Discussion started by: mansahr143
4 Replies

5. UNIX for Dummies Questions & Answers

Creating a file where the owner and group is not root

Hi, I'm the root user on my computer, but I'm writing a script that does a lot of file handling. Every time I create a file or directory it automatically requires root privileges. Is there a way I can just create a file that the user can access without a password? For example in my script I... (20 Replies)
Discussion started by: jdilts
20 Replies

6. 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

7. 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

8. 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

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

Can't change owner and group of a linux file

Hi, I don't know how the owner & group of a login file in redhat linux 7.2 changed to bache like, -rwxr-xr-x 1 bache bache 17740 Jun 20 02:05 login I am trying to change the owner and group to root by using #chown root login #chgrp root login But i am getting the error ... (7 Replies)
Discussion started by: bache_gowda
7 Replies
Login or Register to Ask a Question