man
내 명령이 사라지는 것을 발견했습니다 RHEL7
.
# man ls
bash: man: command not found...
# which man
/usr/bin/which: no man in (/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/usr/local/go/bin:/root/gocode/bin:/root/bin:/opt/linuxki)
그러나 man
및 man-pages
내 상자에 있습니다 :
# yum install man
Loaded plugins: auto-update-debuginfo, langpacks, product-id, search-disabled-repos, subscription-manager
Package man-db-2.6.3-9.el7.x86_64 already installed and latest version
Nothing to do
# yum install man-pages
Loaded plugins: auto-update-debuginfo, langpacks, product-id, search-disabled-repos, subscription-manager
Package man-pages-3.53-5.el7.noarch already installed and latest version
Nothing to do
어디로 man
갔습니까?
업데이트 1 :
를 다시 설치하려고 man
하지만 다음 오류가 표시됩니다.
......
Running transaction
Installing : man-db-2.6.3-9.el7.x86_64 1/1
Error unpacking rpm package man-db-2.6.3-9.el7.x86_64
error: unpacking of archive failed on file /usr/bin/man: cpio: rename
Verifying : man-db-2.6.3-9.el7.x86_64 1/1
Failed:
man-db.x86_64 0:2.6.3-9.el7
업데이트 2
# ls -lt /usr/bin/man
total 4
drwxr-xr-x. 2 nan nan 81 Mar 24 22:30 man1
drwxr-xr-x. 2 nan nan 4096 Mar 24 22:30 man7
# stat /usr/bin/man
File: ‘/usr/bin/man’
Size: 28 Blocks: 0 IO Block: 4096 directory
Device: fd00h/64768d Inode: 67811254 Links: 4
Access: (0755/drwxr-xr-x) Uid: ( 1000/ nan) Gid: ( 1000/ nan)
Context: unconfined_u:object_r:bin_t:s0
Access: 2016-04-15 17:47:56.613595324 +0800
Modify: 2016-03-24 22:30:30.000000000 +0800
Change: 2016-04-08 11:08:45.605815500 +0800
Birth: -
man
, 제거 /usr/bin/man
및 설치 man-pages
후 설치man
ls -l /usr/bin/man
및의 출력을 추가하십시오 stat /usr/bin/man
. 감사합니다!
cpio
보관 형식으로 사용 하기 때문에 파일을 교체하려고 할 때 cpio 오류가 발생합니다./usr/bin/man
/usr/bin/man
단일 실행 파일이 아닌 디렉토리 인 것처럼 보입니다. 마치 누군가가 매뉴얼 페이지 디렉토리를 / usr / bin / man에 복사 한 것과 같습니다.
ls -l /usr/bin/man
위의 질문에 출력을 추가 할 수 있습니까 (실제로 포함하십시오stat /usr/bin/man
).