What does the number besides the permission represnet? i.e. the 3, 8, and 1's.

alt text

Also, is there a command that combines chown and chgrp ?

link|improve this question

51% accept rate
feedback

2 Answers

up vote 12 down vote accepted

You can use chown with the group after the user like so: chown user:group.

The number you mention is the number of hard links to a file. It's always at least 1 (itself).

link|improve this answer
+1 for beating me to the punch. ;) – GruffTech Jun 18 '10 at 1:34
feedback

The number is the number of links to the inode. Directories have two (.. and .) plus the number of subdirectories (each one has ..). Files have N where N is the number of hard links, where all files have at least one.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.