man出錯解決辦法
最近man出問題了,在Linux環境裡不用man還真不行,隨時都要檢視。在工作中,不論是命令還是函式,都需要用到man,先看看出錯提示把。
[root@localhost xchen]# man ls
fgets: No such file or directory
Error reading man page /usr/share/man/man1/ls.1.gz
No manual entry for ls
解決辦法:
首先檢視gzip ,gunzip工具是否存在,因為根據上面出錯提示可知,man手冊都是以.gz存在的。
[root@localhost xchen]# whereis gunzip
gunzip: /bin/gunzip /usr/bin/gunzip /usr/share/man/man1/gunzip.1.gz
這就不對了,系統gunzip工具沒問題啊?詳細檢視下
[root@localhost xchen]# ls -l /usr/bin/gzip /usr/bin/gunzip
lrwxrwxrwx 1 root root 16 Jan 23 2010 /usr/bin/gunzip -> ../../bin/gunzip
lrwxrwxrwx 1 root root 14 Jan 23 2010 /usr/bin/gzip -> ../../bin/gzip
兩個軟連線/usr/bin/gunzip , /usr/bin/gzip 都連線到/bin下了
檢視/bin下
[root@localhost xchen]# ls -l bin/gzip /bin/gunzip
ls: bin/gzip: No such file or directory
沒這個/bin/gzip檔案?
那檢視下這個/bin/gzip檔案吧。
[root@localhost bin]# ll gzip gunzip
-rwxr-xr-x 3 root root 0 Aug 10 09:24 gunzip
-rwxr-xr-x 3 root root 0 Aug 10 09:24 gzip
原來大小為0啊,這就不奇怪man為什麼出錯了。
重新複製個gunzip ,gzip工具到/bin下面,再試下man:
[root@localhost bin]# man ls
LS(1) User Commands LS(1)
NAME
ls - list directory contents
SYNOPSIS
ls [OPTION]... [FILE]...
DESCRIPTION
List information about the FILEs (the current directory by default). Sort entries alphabetically if none of
-cftuvSUX nor --sort.
.........
呵呵,可以用了!
[@more@]來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24790158/viewspace-1040815/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- scp出現錯誤的解決辦法
- Laravel 執行 Gulp 命令出錯解決辦法Laravel
- Mysql出現連線錯誤解決辦法MySql
- python3.9安裝wordcloud出錯解決辦法PythonCloud
- sysctl -P 報錯解決辦法
- SAP錯誤提示解決辦法
- win7 64位 VC++6.0 除錯出錯 解決辦法Win7C++除錯
- git add .出現錯誤LF will be replaced by CRLF in 解決辦法Git
- Fedora 8下永中Office安裝出錯的解決辦法
- asp.net開啟word文件出錯的解決辦法ASP.NET
- 連線oracle錯誤解決辦法Oracle
- cnpm link 報錯解決辦法NPM
- nginxFastCGI錯誤Primaryscriptunknown解決辦法NginxAST
- Unable to locate package錯誤解決辦法Package
- oracle 1455 錯誤解決辦法Oracle
- git報錯400的解決辦法Git
- 畢設之錯誤解決辦法
- dns錯誤怎麼辦 dns錯誤的解決辦法DNS
- NPM run dev 出現這樣錯誤我的解決辦法NPMdev
- springMVC資料驗證出現404錯誤解決辦法SpringMVC
- Mybatis批量更新SQL報錯☞解決辦法MyBatisSQL
- Idea編譯錯誤解決辦法Idea編譯
- PHP編譯錯誤及解決辦法PHP編譯
- 執行Docker命令報錯解決辦法Docker
- isNaN("abc")編譯報錯解決辦法NaN編譯
- samba一個錯誤的解決辦法!Samba
- ORA-29339錯誤解決辦法
- ORA-54013錯誤解決辦法
- 關於IIS安裝後出現500錯誤的解決辦法
- 不可預料的壓縮檔案末端 解壓出錯的解決辦法
- git出現Permission denied的解決辦法Git
- stm出現Flash Timeout解決辦法
- iOS路上遇到的錯誤及解決辦法iOS
- ubuntu下import matplotlib錯誤解決辦法UbuntuImport
- Could not resolve host: 'localhost 報錯解決辦法localhost
- ORA-12705,錯誤的解決辦法
- OpenCV1.0編譯錯誤解決辦法OpenCV編譯
- 安裝sysbench過程報錯,解決辦法