What does the dot at the end of the permissions in the output of “ls -lah” mean?

后端 未结 3 1569
南方客
南方客 2020-12-16 19:49

I found some Linux files, and when I type ls -lah, it outputs this permissions format:

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


        
3条回答
  •  一个人的身影
    2020-12-16 20:22

    From info coreutils 'ls invocation' under 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.
    
    

提交回复
热议问题