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


16

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

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


1
We have scripts looking at the output of ls그것은 일반적으로 나쁜 생각 입니다. ls를 파싱하는 것은 나쁜 생각입니다. 이 목적으로 stat 또는 다른 도구의 출력을 보는 것이 좋습니다.
Zoredache

답변:


19

정보 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.

아하 - 바라 보았다했다 man ls' but didn't think of 덕분에 - '정보 LS
롭 Oxspring에게

8

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

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

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.