Centos之帮助命令

帮助命令man  (manual)

比如我们可以看下man命令的解释

[[email protected] ~]# man man

MAN(1)                                                  Manual pager utils                                                 MAN(1)

NAME

man - an interface to the on-line reference manuals

SYNOPSIS

man [-C file] [-d] [-D] [--warnings[=warnings]] [-R encoding] [-L locale] [-m system[,...]] [-M path] [-S list] [-e exten‐

sion] [-i|-I] [--regex|--wildcard] [--names-only] [-a] [-u] [--no-subpages] [-P pager]  [-r  prompt]  [-7]  [-E  encoding]

[--no-hyphenation]   [--no-justification]   [-p   string]   [-t]  [-T[device]]  [-H[browser]]  [-X[dpi]]  [-Z]  [[section]

page ...] ...

man -k [apropos options] regexp ...

man -K [-w|-W] [-S list] [-i|-I] [--regex] [section] term ...

man -f [whatis options] page ...

man -l [-C file] [-d] [-D] [--warnings[=warnings]] [-R encoding] [-L locale] [-P pager] [-r prompt] [-7] [-E encoding] [-p

string] [-t] [-T[device]] [-H[browser]] [-X[dpi]] [-Z] file ...

man -w|-W [-C file] [-d] [-D] page ...

man -c [-C file] [-d] [-D] page ...

man [-?V]

DESCRIPTION

man  is the system‘s manual pager. Each page argument given to man is normally the name of a program, utility or function.

The manual page associated with each of these arguments is then found and displayed. A section, if provided,  will  direct

man to look only in that section of the manual.  The default action is to search in all of the available sections, follow‐

Manual page man(1) line 1 (press h for help or q to quit)

查看完 按 "q"键,离开

我们看下ls

man ls

这里其实有很多行 我们可以按键盘的向下键盘,来显示下方隐藏的内容;

当然也可以搜索

/  加搜索内容

比如搜索 -d

/-d

这里的1是man的级别; 这里的1是查看命令的帮助

1:查看命令的帮助

2:查看可被内核调用的函数的函数的版主

3:查看函数和函数库的帮助

4:查看特殊文件的帮助(主要是/dev目录下的文件)

5:查看配置文件的帮助

6:查看游戏的帮助

7:查看其他杂项的帮助

8:查看系统管理员可用命令的帮助

9:查看和内核相关文件的帮助

查看命令拥有哪个级别的帮助

man -f 命令

相当于

whatis 命令

举例

man -5 passwd

man -4 null

man -8 ip

比如查看ls的命令级别

[[email protected] ~]# man -f ls

ls (1)               - list directory contents

[[email protected] ~]#

只有1个

[[email protected] ~]# man -f ip

ip (8)               - show / manipulate routing, devices, policy routing...

[[email protected] ~]#

查看和命令相关的所有帮助

man -k 命令

相当于

appropos 命令

例如

apropos passwd

[[email protected] ~]# man -k passwd

chpasswd (8)         - 批量更新密码

gpasswd (1)          - 管理员 /etc/group 和 /etc/gshadow

grub2-mkpasswd-pbkdf2 (1) - Generate a PBKDF2 password hash.

lpasswd (1)          - Change group or user password

pam_localuser (8)    - require users to be listed in /etc/passwd

passwd (1)           - update user‘s authentication tokens

sslpasswd (1ssl)     - compute password hashes

pwhistory_helper (8) - Helper binary that transfers password hashes from ...

[[email protected] ~]#

能把相关的命令都查询出来;

时间: 2024-10-07 18:47:26

Centos之帮助命令的相关文章

Centos与Ubuntu命令

1.虽然Centos与Ubuntu都是linux的内核,但使用命令还是有所差别 2.如在Centos中跟新插件用的是:yum -y   (yum后面有一个空格) 在Ubuntu中跟新插件用的是:apt-get    (注意是连一起的) 3.比如在Centos使用如下命令:sudo apt-get update sudo apt-get install flash sudo apt-get    * sudo apt-get install * 就会报如下错误:bash: apt-get: com

CentOS查看系统信息命令和方法

收集的linux下查看系统信息的命令和方法,相信会对你有用的. 一.linux查看服务器系统信息的方法: 1.查看主机名/内核版本/CPU构架: # uname -n -r -p -o localhost.localdomain 2.6.32-220.el6.i686 i686 2.查看Linux系统类型和版本: # head -n 1 /etc/issue CentOS release 6.2 (Final) 3.查看语言字符集设置: # echo $LANG $LANGUAGE zh_CN.

CentOS常用基础命令大全

这篇文章主要介绍了CentOS常用基础命令大全,学习centos的朋友需要掌握的知识,需要的朋友可以参考下 1.关机 (系统的关机.重启以及登出 ) 的命令shutdown -h now 关闭系统(1) init 0 关闭系统(2) telinit 0 关闭系统(3) shutdown -h hours:minutes & 按预定时间关闭系统 shutdown -c 取消按预定时间关闭系统 shutdown -r now 重启(1) reboot 重启(2) logout 注销2.查看系统信息的

redhat and centos 系统常用命令

查看cpu信息: more /proc/cpuinfo |grep "model name" 一般是至强系统 查看内存信息: grep MemTotal /proc/meminfo free -m 查看系统的位数: getconf LONG_BIT 查看系统版本: cat /etc/redhat-release 查看系统内核版本: uname -r uname -a 使用常用命令查看当前时间 date 使用命令查看硬盘和分区 df -h fdisk -l 也可以查看分区 du -sh

Centos 7 firewall 命令

Centos 7 firewall 命令: 查看已经开放的端口: firewall-cmd --list-ports11 开启端口 firewall-cmd --zone=public --add-port=80/tcp --permanent11 命令含义: –zone #作用域 –add-port=80/tcp #添加端口,格式为:端口/通讯协议 –permanent #永久生效,没有此参数重启后失效 删除开启端口 firewall-cmd --zone=public --remove-po

CentOS 7 常用命令

CentOS 7 常用命令 1.防火墙开放端口 1.1 开启端口 # firewall-cmd --zone=public --add-port=80/tcp --permanent 1.2 删除开启端口 # firewall-cmd --zone=public --remove-port=80/tcp 1.3 命令含义: --zone #作用域 ; --add-port=80/tcp  #添加端口,格式为:端口/通讯协议; --permanent   #永久生效,没有此参数重启后失效 1.4

CentOS 使用yum命令安装Java SDK(openjdk)

CentOS 6.X 和 5.X 自带有OpenJDK runtime environment  (openjdk).它是一个在linux上实现开源的java 平台.CentOS  yum 命令 安装 Java SDK openjdk centos linux JAVA(openjdk)软件包名 1.java-1.7.0-openjdk - OpenJDK Runtime Environment 2.java-1.7.0-openjdk-devel - OpenJDK Development E

CentOS安装scp命令

scp这东西应该属于openssh-clients这个包,运行: yum -y install openssh-clients 再运行scp就可以了,再次运行: scp [email protected]192.168.0.182:/root/xx.txt ./1.txt 注意,scp 命令操作的两端服务器,皆需要安装openssh-clients scp -P 2222 -r [email protected]:/root/lnmp0.4/ /home/lnmp0.4/ 2222端口  -r

Centos 配置ifconfig命令

刚装完CentOS 后ifconfig命令可能是不可用的,那么需要以下配置 vi /etc/sysconfig/network-scripts/ifcfg-xx (ONBOOT=yes) yum install net-tools 原文地址:https://www.cnblogs.com/0bug/p/8637820.html

CentOS中service命令与/etc/init.d的关系以及centos7的变化

缘由 由于个人经常在ubuntu和centos 系统中切换,习惯了以前的 ubuntu中 通过 /etc/init.d/xxx 进行软件服务控制.后来发现centos7中换了服务的控制方式:service service关键字 service httpd start 其实是启动了存放在/etc/init.d目录下的脚本. 但是centos7的服务管理改规则了.CentOS 7继承了RHEL 7的新的特性,例如强大的systemctl, 而systemctl的使用也使得以往系统服务的/etc/in