Como interpretar o número após permissão em ls -l?

3

Eu estou querendo saber o que o número 1234 significa neste exemplo:

rw-rw-rw- 1234 blabla blabla 3243253235 14:40 myfile.zip
    
por hnns 12.06.2012 / 19:46

3 respostas

4

De man ls

If the -l option is given, the following information is displayed for each file: file mode, number of links, owner name, group name, number of bytes in the file, abbreviated month, day-of-month file was last modi- fied, hour file last modified, minute file last modified, and the path- name. In addition, for each directory whose contents are displayed, the total number of 512-byte blocks used by the files in the directory is displayed on a line by itself, immediately before the information for the files in the directory. If the file or directory has extended attributes, the permissions field printed by the -l option is followed by a '@' character. Otherwise, if the file or directory has extended security information (such as an access control list), the permissions field printed by the -l option is followed by a '+' character.

Em suma, é o número de links para esse arquivo.

    
por 12.06.2012 / 20:16
5

Isso significa os links para esse arquivo ou inode do diretório. Links rígidos, não links suaves:

[root@biggiesmalls agsantovena]# touch test
[root@biggiesmalls agsantovena]# ls -l
total 0
-rw-r--r-- 1 root root 0 Jun 12 10:50 test
[root@biggiesmalls agsantovena]# ln test test2
[root@biggiesmalls agsantovena]# ls -l
total 0
-rw-r--r-- 2 root root 0 Jun 12 10:50 test
-rw-r--r-- 2 root root 0 Jun 12 10:50 test2
    
por 12.06.2012 / 19:49
4

O "número de links" para um arquivo ou diretório é basicamente o número de nomes que ele possui (e os nomes não precisam existir no mesmo diretório, mas eles precisam existir no mesmo sistema de arquivos - os links físicos não podem limites do sistema de arquivos cruzados).

Observe que um diretório com subdiretórios terá um link para cada ocorrência do nome .. em cada subdiretório, pois o diretório .. não é nada além de um link físico para o diretório pai.

    
por 12.06.2012 / 20:39

Tags