【跟小嘉学 Linux 系统架构与开发】三、如何查看帮助文档

系列文章目录

【跟小嘉学 Linux 系统架构与开发】一、学习环境的准备与Linux系统介绍
【跟小嘉学 Linux 系统架构与开发】二、Linux发型版介绍与基础常用命令介绍
【跟小嘉学 Linux 系统架构与开发】三、如何查看帮助文档

文章目录

  • 系列文章目录
    • @[TOC](文章目录)
  • 前言
  • 一、 命令的 `--help` 帮助说明
  • 二、man page
    • 2.1、man page 介绍
    • 2.2、man page 快捷
    • 2.3、man page 资料位置
    • 2.4、man 命令用法
      • 2.4.1、查看与 man 命令有关的文档
      • 2.4.2、查看对应类型的 man 命令的相关资料
      • 2.4.3、查找关键字有关的命令
      • 2.4.3、mandb
  • 三、`info`
    • 3.1、info 命令介绍
    • 3.2、快捷键
  • 四、其他有用的文件(documents)
  • 五、正确的关机方法

前言

前面我们讲解了基础的日历、日期与时间、计算器等命令,以及常用的快捷键操作,我们这一节详细讲解,如何查看Linux的手册、文档、帮助信息等信息。

参考资料
《鸟哥的Linux私房菜繁体版》
《鸟哥的Linux私房菜简体版》


一、 命令的 --help 帮助说明

几乎 Linux 上的命令,在开发的时候,开发者就会将命令的语法与参数写入到指令操作手册上了,你只需要使用 --help这个选项,就能够将该命令的用法一个大致的理解。

我们拿最熟悉的 date 的命令来查看

[vagrant@10 ~]$ date --help
Usage: date [OPTION]... [+FORMAT]or:  date [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]
Display the current time in the given FORMAT, or set the system date.Mandatory arguments to long options are mandatory for short options too.-d, --date=STRING         display time described by STRING, not 'now'-f, --file=DATEFILE       like --date once for each line of DATEFILE-I[TIMESPEC], --iso-8601[=TIMESPEC]  output date/time in ISO 8601 format.TIMESPEC='date' for date only (the default),'hours', 'minutes', 'seconds', or 'ns' for dateand time to the indicated precision.-r, --reference=FILE      display the last modification time of FILE-R, --rfc-2822            output date and time in RFC 2822 format.Example: Mon, 07 Aug 2006 12:34:56 -0600--rfc-3339=TIMESPEC   output date and time in RFC 3339 format.TIMESPEC='date', 'seconds', or 'ns' fordate and time to the indicated precision.Date and time components are separated bya single space: 2006-08-07 12:34:56-06:00-s, --set=STRING          set time described by STRING-u, --utc, --universal    print or set Coordinated Universal Time (UTC)--help     display this help and exit--version  output version information and exitFORMAT controls the output.  Interpreted sequences are:%%   a literal %%a   locale's abbreviated weekday name (e.g., Sun)%A   locale's full weekday name (e.g., Sunday)%b   locale's abbreviated month name (e.g., Jan)%B   locale's full month name (e.g., January)%c   locale's date and time (e.g., Thu Mar  3 23:05:25 2005)%C   century; like %Y, except omit last two digits (e.g., 20)%d   day of month (e.g., 01)%D   date; same as %m/%d/%y%e   day of month, space padded; same as %_d%F   full date; same as %Y-%m-%d%g   last two digits of year of ISO week number (see %G)%G   year of ISO week number (see %V); normally useful only with %V%h   same as %b%H   hour (00..23)%I   hour (01..12)%j   day of year (001..366)%k   hour, space padded ( 0..23); same as %_H%l   hour, space padded ( 1..12); same as %_I%m   month (01..12)%M   minute (00..59)%n   a newline%N   nanoseconds (000000000..999999999)%p   locale's equivalent of either AM or PM; blank if not known%P   like %p, but lower case%r   locale's 12-hour clock time (e.g., 11:11:04 PM)%R   24-hour hour and minute; same as %H:%M%s   seconds since 1970-01-01 00:00:00 UTC%S   second (00..60)%t   a tab%T   time; same as %H:%M:%S%u   day of week (1..7); 1 is Monday%U   week number of year, with Sunday as first day of week (00..53)%V   ISO week number, with Monday as first day of week (01..53)%w   day of week (0..6); 0 is Sunday%W   week number of year, with Monday as first day of week (00..53)%x   locale's date representation (e.g., 12/31/99)%X   locale's time representation (e.g., 23:13:48)%y   last two digits of year (00..99)%Y   year%z   +hhmm numeric time zone (e.g., -0400)%:z  +hh:mm numeric time zone (e.g., -04:00)%::z  +hh:mm:ss numeric time zone (e.g., -04:00:00)%:::z  numeric time zone with : to necessary precision (e.g., -04, +05:30)%Z   alphabetic time zone abbreviation (e.g., EDT)By default, date pads numeric fields with zeroes.
The following optional flags may follow '%':-  (hyphen) do not pad the field_  (underscore) pad with spaces0  (zero) pad with zeros^  use upper case if possible#  use opposite case if possibleAfter any flags comes an optional field width, as a decimal number;
then an optional modifier, which is either
E to use the locale's alternate representations if available, or
O to use the locale's alternate numeric symbols if available.Examples:
Convert seconds since the epoch (1970-01-01 UTC) to a date$ date --date='@2147483647'Show the time on the west coast of the US (use tzselect(1) to find TZ)$ TZ='America/Los_Angeles' dateShow the local time for 9AM next Friday on the west coast of the US$ date --date='TZ="America/Los_Angeles" 09:00 next Fri'GNU coreutils online help: <http://www.gnu.org/software/coreutils/>
Report date translation bugs to <http://translationproject.org/team/>
For complete documentation, run: info coreutils 'date invocation'
  • Usage: 表明 date 命令的语法格式
  • 接下来就是 [OPTION] 选项的内容
  • 在接下来就是格式化控制台输出的格式序列

二、man page

2.1、man page 介绍

date --help 并没有详细告诉你 STRING 是什么东西,我们如果想要清清楚楚的知道该指令的用法。我们可以找 man 命令(manual).

DATE(1)                                              User Commands                                             DATE(1)NAMEdate - print or set the system date and timeSYNOPSISdate [OPTION]... [+FORMAT]date [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]DESCRIPTIONDisplay the current time in the given FORMAT, or set the system date.Mandatory arguments to long options are mandatory for short options too.-d, --date=STRINGdisplay time described by STRING, not 'now'-f, --file=DATEFILElike --date once for each line of DATEFILE-I[TIMESPEC], --iso-8601[=TIMESPEC]output  date/time  in ISO 8601 format.  TIMESPEC='date' for date only (the default), 'hours', 'minutes',Manual page date(1) line 1 (press h for help or q to quit)
  • DATE(1):括号中的1 代表 我们指令的内容,这个编码从1-9有9个含义
    • 1 :用户交互的命令,例如 ls、cp、man、grep等
    • 2: 系统调用和内核函数
    • 3:包含库函数和标准c函数
    • 4:包含配置文件和设备文件
    • 5:包含配置文件格式和协议
    • 6:包含游戏和演示程序
    • 7:包含惯例、协议、文件格式等
    • 8:包含系统管理命令
    • 9:和内核有关的文件
  • NAME:命令的完整名称和命令用法
  • SYNPSIS:命令的基本语法
  • DESCRIPTION:详细说明语法中的选项参数的用法
  • ENVIRONMENT:与这个命令相关的环境参数
  • EXAMPLES:使用示例
  • DATE STRING:日期的格式说明
  • AUTHOR:命令的作者
  • COPYRIGHT 版权声明
  • SEE ALSO:还可以查找的文档

2.2、man page 快捷

快捷键表格

按键作用
空格键向下翻页
[Page Down]向下翻一頁
[Page Up]向上翻一頁
[Home]去到第一頁
[End]去到最後一頁
/string向『下』查找 string 字符串,
?string向『上』查找 string 這個字串
n, N利用 / 或 ? 來查找字串時,可以用 n 來繼續下一個查找 (不论是 / 或 ?) ,可以利用 N 來進行『反向』查找。
q結束這次的 man page

2.3、man page 资料位置

不同的发行版存放的路径可能有点差异,不过通常都是 在 /usr/share/man 目录,我们可以man 的搜索路径来改善目录的问题

修改 /etc/man_db.confman.confmanpath.confman.config,关于 man 命令的详细信息,我们也可以通过 man man 命令来查询

2.4、man 命令用法

2.4.1、查看与 man 命令有关的文档

[vagrant@10 ~]$ man -f man
man (1)              - an interface to the on-line reference manuals
man (1p)             - display system documentation
man (7)              - macros to format man pages

man -f 命令也可以使用 whatis 来替代

[vagrant@10 ~]$ whatis man
whatis: can't set the locale; make sure $LC_* and $LANG are correct
man (1)              - an interface to the on-line reference manuals
man (1p)             - display system documentation
man (7)              - macros to format man pages

2.4.2、查看对应类型的 man 命令的相关资料

man 1 man
man 7 man

2.4.3、查找关键字有关的命令

man -k man

man -k 命令也可以使用 apropos 命令来替代

apropos man

2.4.3、mandb

whatisapropos 命令要能使用,必须建立 whatis 资料库才可以,可以在 root 账号下使用 下面命令来生成

[vagrant@10 ~]$ su -  # 切换到 root 账号 - 表示环境变量也切换
Password: 
Last login: Sun Mar 31 18:00:45 UTC 2024 on pts/0
[root@10 ~]# mandb
Purging old database entries in /usr/share/man...
Processing manual pages under /usr/share/man...
Purging old database entries in /usr/share/man/ru...
Processing manual pages under /usr/share/man/ru...
Purging old database entries in /usr/share/man/en...
Processing manual pages under /usr/share/man/en...
Purging old database entries in /usr/local/share/man...
Processing manual pages under /usr/local/share/man...
0 man subdirectories contained newer manual pages.
0 manual pages were added.
0 stray cats were added.
0 old database entries were purged.

三、info

3.1、info 命令介绍

info 命令 和 man 命令到用法差不多,就是用来查询命令的用法或者文件的格式,info page 是将文件拆成一个个段落,每个段落有自己的页面来编写,并且每个页面都有类似的超链接来跳到不同的页面。

info 命令的文件是存放在 /usr/share/info 目录之中.

[root@10 ~]# info infoFile: info.info,  Node: Top,  Next: Getting Started,  Up: (dir)Info: An Introduction
*********************The GNU Project distributes most of its on-line manuals in the "Info
format", which you read using an "Info reader".  You are probably using
an Info reader to read this now.There are two primary Info readers: 'info', a stand-alone program
designed just to read Info files (*note What is Info?: (info-stnd)Top.),
and the 'info' package in GNU Emacs, a general-purpose editor.  At
present, only the Emacs reader supports using a mouse.If you are new to the Info reader and want to learn how to use it,
type the command 'h' now.  It brings you to a programmed instruction
sequence.To read about advanced Info commands, type 'n' twice.  This brings
you to 'Advanced Info Commands', skipping over the 'Getting Started'
chapter.
--zz-Info: (info.info.gz)Top, 52 lines --Top------------------------------------------------------------------------------
No `Prev' or `Up' for this node within this document.
  • File:代表info page 的资料来自 info.info 这个文件所提供
  • Node:代表目前这个页面属于Top节点,意思是 info.info 内容有很多,Top只是其中一部分内容
  • Next:下一个节点的名称为:Getting Started,你也可以按 N 跳到下一个节点;
  • Up:回到上一层的节点,你也可以按 U 来回到上一层
  • Prev:前一个节点,但是TOP是第一个节点,所以上面没有前一个节点的内容

3.2、快捷键

按键功能
空格键向下翻一页
[Page Down]向下翻一页
[Page Up]向上翻一页
[tab]在 node 之间移动,有 node 的地方,通常会以 * 显示。
[Enter]当光标在 node 上面时,按下 Enter 可以进入该 node
b移动光标到该info 当中的第一个 node 处
e移动光标到该info 当中的最后一个 node 处
n前往下一个 node 处
p前往上一个 node 处
u向上移动一层
s(/)在 info page 当中进行搜索
h, ?显示帮助菜单
q結束这次的 info page

四、其他有用的文件(documents)

一般而言,命令或软件开发者都会将自己的命令或软件的说明制作成文档,但是并不是所有的命令或软件都有。

这些文件一般都存放在 /usr/share/doc

例如

/usr/share/doc/grub2-tools-2.02

五、正确的关机方法

关机的时候要注意几件事

  • 观察系统的使用状态:whonetstat -aps -aux
  • 通知用户关机的:shutdown
  • 正确的关机和重启命令:shutdownreboot
  • 资料同步写入硬盘命令:sync
  • 关机:haltpoweroffreboot
  • 管理工具:initsystemctl

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/788172.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

nodejs爬图片(二)

前言 网上一张一张下载是不是很麻烦&#xff0c;直接批量下载&#xff0c;解决你的问题。高清不是梦&#xff01; 具体步骤不说了&#xff0c;直接上代码 const cheerio require("cheerio"); const axios require("axios"); const fs require(…

代码随想录算法训练营第42天| 01背包问题,你该了解这些|01背包问题,你该了解这些! 滚动数组 |416. 分割等和子集

代码随想录算法训练营第42天| 01背包问题&#xff0c;你该了解这些|01背包问题&#xff0c;你该了解这些&#xff01; 滚动数组 |416. 分割等和子集 &#xff08;****************************************************************&#xff09; &#xff08;挺难的&#xff0…

数据库嵌套事务的实现

Mysql本身&#xff08;只说InndoDB引擎&#xff09;是不支持嵌套事务的&#xff0c;就算你开了多个事务&#xff0c;也是按照一层处理。那我们所使用的应用框架&#xff0c;如php的laravel&#xff0c;Java的Spring&#xff0c;都是怎么实现事务嵌套的呢&#xff1f;本文就着这…

代码随想录刷题随记12-二叉树遍历

代码随想录刷题随记12-二叉树遍历 文章目录 代码随想录刷题随记12-二叉树遍历二叉树的递归遍历二叉树的迭代遍历前序遍历中序遍历后序遍历 二叉树的统一迭代法 二叉树的递归遍历 leetcode二叉树的前序遍历 解题代码&#xff1a; /*** Definition for a binary tree node.* st…

《QT实用小工具·七》CPU内存显示控件

1、概述 源码放在文章末尾 CPU内存显示控件 项目包含的功能如下&#xff1a; 实时显示当前CPU占用率。实时显示内存使用情况。包括共多少内存、已使用多少内存。全平台通用&#xff0c;包括windows、linux、ARM。发出信号通知占用率和内存使用情况等&#xff0c;以便自行显示…

类和对象的下篇

&#x1d649;&#x1d65e;&#x1d658;&#x1d65a;!!&#x1f44f;&#x1f3fb;‧✧̣̥̇‧✦&#x1f44f;&#x1f3fb;‧✧̣̥̇‧✦ &#x1f44f;&#x1f3fb;‧✧̣̥̇:Solitary_walk ⸝⋆ ━━━┓ - 个性标签 - &#xff1a;来于“云”的“羽球人”。…

2024年03月CCF-GESP编程能力等级认证Scratch图形化编程二级真题解析

本文收录于专栏《Scratch等级认证CCF-GESP真题解析》,专栏总目录・点这里. 一、单选题(共 10 题,每题 3 分,共 30 分) 第1题 小杨的父母最近刚刚给他买了一块华为手表,他说手表上跑的是鸿蒙,这个鸿蒙是?( )。 A、小程序 B、计时器 C、操作系统 D、神话人物 答案:…

【漏洞复现】大华 DSS user_edit.action 信息泄露漏洞

0x01 产品简介 DSS是大华的大型监控管理应用平台&#xff0c;支持几乎所有涉及监控等方面的操作&#xff0c;支持多级跨平台联网等操作。 可将视频监控、卡口拍照、 区间测速 、电子地图、违章查询系统等诸多主流应用整合在一起&#xff0c;实现更加智能、便捷的分级查询服务。…

CPU设计实战-FPGA基础操作学习

目录 硬件调试方法 ILA&#xff08;监控内如何端口信号&#xff09;或VIO核&#xff08;不仅可以监控还可以驱动&#xff09;进行硬件调试 添加ILAIP核 实例化ILAIP核 使用ILA排查错误 另一个debug方法 仿真 代码固化&#xff08;即写入Flash中&#xff09; 方法一 方…

代码随想录算法训练营第四十二天 | 卡码网46. 携带研究材料、416. 分割等和子集

代码随想录算法训练营第四十二天 | 卡码网46. 携带研究材料、416. 分割等和子集 卡码网46. 携带研究材料题目解法 416. 分割等和子集题目解法 感悟 卡码网46. 携带研究材料 题目 解法 题解链接 二维数组 # include <bits/stdc.h> using namespace std;int n, bagweig…

Jackson 2.x 系列【6】注解大全篇二

有道无术&#xff0c;术尚可求&#xff0c;有术无道&#xff0c;止于术。 本系列Jackson 版本 2.17.0 源码地址&#xff1a;https://gitee.com/pearl-organization/study-jaskson-demo 文章目录 注解大全2.11 JsonValue2.12 JsonKey2.13 JsonAnySetter2.14 JsonAnyGetter2.15 …

WebKit揭秘:从内部结构到应用程序开发

文章目录 WebKit结构简介核心模块其他组件多进程架构&#xff08;WebKit2&#xff09; Wekbit做了什么&#xff1f;应用程序如何利用 Webkit WebKit结构简介 WebKit是一个开源的浏览器引擎&#xff0c;它由多个模块组成&#xff0c;这些模块协同工作以提供Web内容的渲染和交互…

189.轮转 数组

题目描述 解题思路 —————冒泡排序的超时算法—————— 1.k1 就是第一个元素不断向后一个元素调换位子&#xff0c;直到轮转到最后一个位置&#xff08;类似于冒泡排序&#xff0c;不断向后冒出&#xff09; 2.调用循环&#xff0c;当k>0的时候&#xff0c;不断向…

web有哪些方式可以实时更新数据

在Web开发中&#xff0c;有几种方式可以实现数据的实时更新&#xff0c;以确保用户界面能够及时反映后端数据的变化。 以下是一些常用的实现实时数据更新的技术&#xff1a; 一. AJAX轮询&#xff08;Polling&#xff09; 轮询是一种通过定时发送HTTP请求到服务器来检查数据…

【2024最新】vue3的基本使用(超详细)

一、Vue 3 概述 1. 为什么要学习Vue 3 Vue 3是Vue.js的最新主要版本&#xff0c;它带来了许多改进和新特性&#xff0c;包括但不限于&#xff1a; 性能提升&#xff1a;Vue 3提供了更快的渲染速度和更低的内存使用率。Composition API&#xff1a;引入了一个新的API&#xf…

英伟达智算先锋训练,冲刺智算时代实战

随着数字经济的深入发展&#xff0c;智能算力作为关键生产力&#xff0c;其规模在2022年已达到268.0 EFLOPS&#xff0c;并预计到2028年将增长至2769 EFLOPS&#xff0c;显示出强劲的发展势头。在2024年政府工作报告中&#xff0c;也首次提出了“人工智能”行动&#xff0c;强调…

baseDao增删改查.

这里写目录标题 1、baseDao增删改查介绍2、basDao类3、BasDao类的作用 1、baseDao增删改查介绍 (1)、增加Create&#xff09;操作&#xff1a; 通过BaseDao的insert方法可以向数据库中插入一条新的记录。 该方法接受一个实体对象作参数&#xff0c;将该对象的属性映射到表的字…

Python轻量级框架Flask开发web应用(附源码自取)

目录 介绍 安装 简单初使用 新建项目目录 视图映射 无参映射 带参映射 ? 传参映射 连接mysql orm对象视图映射建表 ​编辑 crud操作 新增操作 查询操作 普通查询 查询返回json数据 前端传递json体数据查询 更新操作 删除操作 orm表关系映射 flask-migrate迁…

【Vue】vue3简介与环境配置

文章目录 项目编码规范什么是 Vue&#xff1f;安装node环境nvm针对node版本惊醒管理的工具 项目编码规范 组合式API Typescript setup(语法糖) 什么是 Vue&#xff1f; Vue 是一款用于构建用户界面的 JavaScript 框架。它基于标准 HTML、CSS 和 JavaScript 构建&#xff0c;…

JavaBean是什么?

Bean的本意为豌豆、子实&#xff0c;在这里引申为一种实体。JavaBean 是一种JAVA语言写成的可重用组件。为写成JavaBean&#xff0c;类必须是具体的和公共的&#xff0c;并且具有无参数的构造器。JavaBean 通过提供符合一致性设计模式的公共方法将内部域暴露成员属性&#xff0…