Что означает точка в конце разрешений в выводе ls -lah?

Я нашел несколько файлов Linux, и когда я набираю ls -lah, он выводит этот формат разрешений:

... 
drwxr-xr-x.  2 root    root  
...
-rw-rw-r--.  1 root    root 
...

Я хотел бы знать, что означает точка (-rw-rw-r--.) в конце формата разрешений?


person miller    schedule 02.06.2015    source источник
comment
ACL — см. superuser.com/questions/230559/   -  person doctorlove    schedule 02.06.2015


Ответы (3)


От info coreutils 'ls invocation' под Linux

GNU `ls' uses a `.' character to indicate a file with an SELinux
     security context, but no other alternate access method.

A file with any other combination of alternate access methods is
     marked with a `+' character.

person phoxis    schedule 02.06.2015


Согласно вики-странице разрешений файловой системы, точка указывает на наличие контекста SELinux.

person Tom van der Lee    schedule 02.06.2015