How to Install “man” Command on Linux CentOS 6.2

CentOS 6.2 is an older version of CentOS and has reached its End of Life (EOL) on November 30, 2020. It is strongly recommended that you upgrade to a newer version, such as CentOS 7 or 8, as they receive security updates and support.

[root@centos62 ~]# man chown
-bash: man: command not found

However, if you still need to install the “man” command on CentOS 6.2, you can follow these steps:

Step 1: Update the Package List

First, open a terminal window and run the following command to update the package list:

sudo yum update

This command fetches the latest package information from the configured repositories and updates the local package list.

Step 2: Install the “man” Command

After updating the package list, install the “man” command and the required packages using the following command:

sudo yum install -y man man-pages

This command installs the “man” package and the man-pages package, which contains the manual pages for Linux commands and functions.

[root@centos62 ~]# yum install man -y
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirrors.hostemo.com
 * epel: ftp.riken.jp
 * extras: mirrors.hostemo.com
 * updates: ossm.utm.my
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package man.i686 0:1.6f-29.el6 will be installed
--> Processing Dependency: lzma for package: man-1.6f-29.el6.i686
--> Running transaction check
---> Package xz-lzma-compat.i686 0:4.999.9-0.3.beta.20091007git.el6 will be installed
--> Processing Dependency: xz = 4.999.9-0.3.beta.20091007git.el6 for package: xz-lzma-compat-4.999.9-0.3.beta.20091007git.el6.i686
--> Running transaction check
---> Package xz.i686 0:4.999.9-0.3.beta.20091007git.el6 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

====================================================================================================
 Package            Arch     Version                                 Repository                Size
====================================================================================================
Installing:
 man                i686     1.6f-29.el6                             CentOS6.2-Repository     260 k
Installing for dependencies:
 xz                 i686     4.999.9-0.3.beta.20091007git.el6        CentOS6.2-Repository     137 k
 xz-lzma-compat     i686     4.999.9-0.3.beta.20091007git.el6        CentOS6.2-Repository      16 k

Transaction Summary
====================================================================================================
Install       3 Package(s)

Total download size: 412 k
Installed size: 864 k
Downloading Packages:
----------------------------------------------------------------------------------------------------
Total                                                               3.6 MB/s | 412 kB     00:00
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
  Installing : xz-4.999.9-0.3.beta.20091007git.el6.i686                                         1/3
  Installing : xz-lzma-compat-4.999.9-0.3.beta.20091007git.el6.i686                             2/3
  Installing : man-1.6f-29.el6.i686                                                             3/3

Installed:
  man.i686 0:1.6f-29.el6

Dependency Installed:
  xz.i686 0:4.999.9-0.3.beta.20091007git.el6 xz-lzma-compat.i686 0:4.999.9-0.3.beta.20091007git.el6

Complete!

Step 3: Verify the Installation

To verify that the “man” command has been successfully installed, run the following command:

man chown

This command displays the manual page for the “chown” command.

CHOWN(1)                         User Commands                        CHOWN(1)

NAME
       chown - change file owner and group

SYNOPSIS
       chown [OPTION]... [OWNER][:[GROUP]] FILE...
       chown [OPTION]... --reference=RFILE FILE...

DESCRIPTION
       This manual page documents the GNU version of chown.  chown changes the user and/or
       group ownership of each given file.  If only an owner (a user name or numeric  user
       ID)  is given, that user is made the owner of each given file, and the filesâ group
       is not changed.  If the owner is followed by a colon and a group name  (or  numeric
       group ID), with no spaces between them, the group ownership of the files is changed
       as well.  If a colon but no group name follows the user name, that user is made the
       owner  of  the  files  and  the  group of the files is changed to that userâs login
       group.  If the colon and group are given, but the owner is omitted, only the  group
       of  the  files is changed; in this case, chown performs the same function as chgrp.
       If only a colon is given, or if the entire operand is empty, neither the owner  nor
       the group is changed.

OPTIONS
       Change  the  owner  and/or group of each FILE to OWNER and/or GROUP.  With --refer-
       ence, change the owner and group of each FILE to those of RFILE.

       -c, --changes
              like verbose but report only when a change is made

If you see the manual page, the installation was successful.

See also  How to Install phpMyAdmin on CentOS 6.2 using EPEL Repository

Conclusion

You have now successfully installed the “man” command on your CentOS 6.2 system. However, it is important to note that CentOS 6.2 is no longer supported, and you should consider upgrading to a newer version to ensure the security and stability of your system.

If you have any questions, comments, or suggestions for improvement, please feel free to share your thoughts in the comments section below. Your feedback is invaluable to us, and it helps us create better and more informative content for our users.

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *