[server] 새로운 완전 정지 /주기는 RHEL6 ls 출력에서 ​​무엇을 의미합니까?

ls -lRHEL v6 시스템에서 최근에 실패한 권한 정보에 대한 출력 결과를보고 .이전에 존재하지 않았던 권한 항목 끝에 추가 항목이 표시되는 스크립트 가 있습니다 .

[root@rhel6vm ~]# ls -l
total 44
-rw-------. 1 root root  1399 Aug 17 15:01 anaconda-ks.cfg
-rw-r--r--. 1 root root 25485 Aug 17 15:01 install.log
-rw-r--r--. 1 root root  7253 Aug 17 14:59 install.log.syslog
[root@rhel6vm ~]#
          ^
          | up there

완전 정지는 무엇을 의미합니까? 그리고 그 자리에 무엇이 더 나타날 수 있습니까?



답변

정보 LS 쇼 :

  Following the file mode bits is a single character that specifies
 whether an alternate access method such as an access control list
 applies to the file.  When the character following the file mode
 bits is a space, there is no alternate access method.  When it is
 a printing character, then there is such a method.

 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.


답변

GNU ls는 .문자를 사용 하여 SELinux 보안 컨텍스트가있는 파일을 나타내지 만 다른 대체 액세스 방법은 없습니다.

다른 대체 액세스 방법 조합이있는 파일에는 +문자 가 표시됩니다 .


답변