美文网首页
如何修复man命令无法查找

如何修复man命令无法查找

作者: 怀老师 | 来源:发表于2021-09-22 09:40 被阅读0次

How to fix the “No manual entry for {command}” man error
Sometimes you will encounter an error like this when trying to use man:

Announcement
You can find all my latest posts on medium.
$ man vmstat
No manual entry for vmstat
To fix this, first check that you have the following rpms installed:

yum install -y man-pages yum install -y man-db
Next run the mandb command to populate/update the mandb database:

$ mandb
Then run the following command, to try to find the man .gz man file.

$ yum whatprovides /vmstat..gz
In your case you replace ‘vmstat’ with whatever command that you’re having problems with.

Now if that packages isn’t installed, then install it. in my case it was already installed, but the file itself was missing for some reason:

$ file /usr/share/man/man8/vmstat.8.gz
/usr/share/man/man8/vmstat.8.gz: cannot open (No such file or directory)
In this situation, just reinstall the rpm again:

$ yum reinstall procps

I try it:

yum remove procps

yum install procps

语言包提示问题:
LC_CTYPE to default locale: No such file or directory

sudo yum search Chinese
找到这个langpacks-zh_CN.noarch名的包,然后执行

sudo yum install langpacks-zh_CN

//报错解决方案,删除这几个配置文件
rm -rf /etc/profile.d/locale.sh
rm -rf /etc/locale.conf
rm -rf /etc/sysconfig/i18n
rm -rf /etc/environment

相关文章

  • 如何修复man命令无法查找

    How to fix the “No manual entry for {command}” man errorS...

  • Linux的命令总结

    Linux命令总结: 一.基础命令: 1.man 男人,查找命令的功能 参数 等帮助工具。 man 命令 2.h...

  • linux运维之常用命令总结

    常用命令的总结: 1.man 男人,查找命令的功能 参数 等帮助工具。 man 命令 2.help 查内置命令的...

  • linux 学习笔记 centos7

    如何查看帮助文档 man+命令命令+--helplinux命令太多,根本无法全部记住,只需要掌握常用的即可,不会用...

  • linux命令-find

    find 查找命令 参考网页:http://man.linuxde.net/find find . #列出当前...

  • 初识命令行之ls cat mv touch

    目录:一. 如何查找命令行的常见用法二. 几个命令行的常见用法三. 如何查找命令行释义 一.如何查找命令行的常见用...

  • 【服务器】man 命令

    如何查看某个终端命令的使用手册?在终端输入:# man man 名称:man 功能:查看某个命令的规范手册。 概述...

  • bash手册

    man命令用来访问存储在Linux系统上的手册页面。在想要查找的工具的名称前面输入man命令,就可以找到那个工具相...

  • linux基本命令指南4:帮助命令

    man/-d 查找-d n shift-n-f 查看命令拥有那个级别的帮助相当于whatis 命令-k 查...

  • Linux | grep,cut

    参考:http://man.linuxde.net/grep 1.grep命令 (1)查找genome.txt中的...

网友评论

      本文标题:如何修复man命令无法查找

      本文链接:https://www.haomeiwen.com/subject/sdpwgltx.html