root 5 years ago
parent 99ff24c795
commit 65cc36ec20

@ -1,14 +1,12 @@
# apropos # **apropos**
## 说明 ## 说明
**apropos命令** 在一些特定的包含系统命令的简短描述的数据库文件里查找关键字,然后把结果送到标准输出。  **apropos命令** 在一些特定的包含系统命令的简短描述的数据库文件里查找文档,结果作为标准输出
如果你不知道完成某个特定任务所需要命令的名称可以使用一个关键字通过Linux apropos实用程序来搜索它。该实用程序可以搜索关键字并且显示所有包含匹配项的man页面的简短描述。另外使用man实用程序和-k关键字选项可以得到和用Linux apropos实用程序相同的结果实际上是相同的命令 如果你不知道完成某个特定任务所需要命令的名称可以使用一个关键字通过Linux apropos实用程序来搜索它。该实用程序可以搜索关键字并且显示所有包含匹配项的man页面的简短描述。另外使用man实用程序和-k关键字选项可以得到和用Linux apropos实用程序相同的结果实际上是相同的命令
```bash
```info
-d, --debug 输出调试信息 -d, --debug 输出调试信息
-v, --verbose 输出详细的警告信息 -v, --verbose 输出详细的警告信息
-e, --exact 对每个关键词都进行严格匹配的搜索 -e, --exact 对每个关键词都进行严格匹配的搜索
@ -16,11 +14,11 @@
-w, --wildcard 关键词里包含通配符 -w, --wildcard 关键词里包含通配符
-a, --and 要求所有的关键词都同时匹配 -a, --and 要求所有的关键词都同时匹配
-l, --long 不要把输出按终端宽度截断 -l, --long 不要把输出按终端宽度截断
-C, --config-file=文件 使用该用户设置文件 -C, --config-file=文件 使用该用户设置文件
-L, --locale=区域 定义本次搜索所使用的区域设置 -L, --locale=区域 定义本次搜索所使用的区域设置
-m, --systems=系统 use manual pages from other systems -m, --systems=系统 use manual pages from other systems
-M, --manpath=路径 设置搜索手册页的路径为“路径”,默认使用$MANPATH环境变量 -M, --manpath=路径 设置搜索手册页的路径为“路径”,默认使用$MANPATH环境变量
-s, --sections=列表, --section=列表 只查找指定的手册section -s, --sections=列表, --section=列表 只查找指定的手册section
返回值:返回0表示成功1表示用法、语法或配置文件错误2表示操作错误16表示没有找到匹配的内容 返回值:返回0表示成功1表示用法、语法或配置文件错误2表示操作错误16表示没有找到匹配的内容
``` ```

@ -2,7 +2,7 @@
用法extundelete [options] [--] device-file 用法extundelete [options] [--] device-file
```info ```bash
--superblock Print contents of superblock in addition to the rest. --superblock Print contents of superblock in addition to the rest.
If no action is specified then this option is implied. If no action is specified then this option is implied.
--journal Show content of journal. --journal Show content of journal.
@ -46,4 +46,3 @@ Actions:
The restored files are created in a directory The restored files are created in a directory
named 'RECOVERED_FILES/' by default. named 'RECOVERED_FILES/' by default.
``` ```

@ -2,7 +2,7 @@
linux和Windows都推荐使用FIO工具进行测试块存储性能测试前确保已经4k对齐测试裸盘可以获取真实块存储盘性能。但是会破坏文件系统结构 linux和Windows都推荐使用FIO工具进行测试块存储性能测试前确保已经4k对齐测试裸盘可以获取真实块存储盘性能。但是会破坏文件系统结构
```info ```bash
fio [options] [job options] <job file(s)> fio [options] [job options] <job file(s)>
--debug=options Enable debug logging. May be one/more of: --debug=options Enable debug logging. May be one/more of:
process,file,io,mem,blktrace,verify,random,parse, process,file,io,mem,blktrace,verify,random,parse,
@ -68,4 +68,4 @@ fio -direct=1 -iodepth=64 -rw=read -ioengine=libaio -bs=1024k -size=1G -numjobs=
fio -direct=1 -iodepth=1 -rw=randwrite -ioengine=libaio -bs=4k -size=1G -numjobs=1 -group_reporting -filename=iotest -name=Rand_Write_Latency_Testing # 测试随机写延时 fio -direct=1 -iodepth=1 -rw=randwrite -ioengine=libaio -bs=4k -size=1G -numjobs=1 -group_reporting -filename=iotest -name=Rand_Write_Latency_Testing # 测试随机写延时
fio -direct=1 -iodepth=1 -rwfio -direct=1 -iodepth=1 -rw=randread -ioengine=libaio -bs=4k -size=1G -numjobs=1 -group_reporting -filename=iotest -name=Rand_Read_Latency_Testingrandwrite -ioengine=libaio -bs=4k -size=1G -numjobs=1 -group_reporting -filename=iotest -name=Rand_Write_Latency_Testing # 测试随机读延时 fio -direct=1 -iodepth=1 -rwfio -direct=1 -iodepth=1 -rw=randread -ioengine=libaio -bs=4k -size=1G -numjobs=1 -group_reporting -filename=iotest -name=Rand_Read_Latency_Testingrandwrite -ioengine=libaio -bs=4k -size=1G -numjobs=1 -group_reporting -filename=iotest -name=Rand_Write_Latency_Testing # 测试随机读延时
``` ```

@ -261,7 +261,7 @@ Labels on physical volume "/dev/sdb2" successfully wiped
```info ```bash
-s 以短格式输出 -s 以短格式输出
-m 显示PE到LE的映射 -m 显示PE到LE的映射
``` ```

@ -27,9 +27,7 @@
```bash ```bash
nc -v -z -w2 192.168.0.3 1-100 # TCP端口扫描,扫描192.168.0.3 的端口 范围是 1-100 nc -v -z -w2 192.168.0.3 1-100 # TCP端口扫描,扫描192.168.0.3 的端口 范围是 1-100
nc -u -z -w2 192.168.0.1 1-1000 # 扫描UDP端口,扫描192.168.0.3 的端口 范围是 1-1000 nc -u -z -w2 192.168.0.1 1-1000 # 扫描UDP端口,扫描192.168.0.3 的端口 范围是 1-1000
nc -nvv 192.168.0.1 80 # 扫描指定端口,扫描 80端口 nc -nvv 192.168.0.1 80 # 扫描指定端口,扫描 80端口
``` ```

@ -6,7 +6,7 @@
```info ```bash
-n 只加入目录到堆叠中不进行cd操作 -n 只加入目录到堆叠中不进行cd操作
+N 删除从左到右的第n个目录数字从0开始 +N 删除从左到右的第n个目录数字从0开始
-N 删除从右到左的第n个目录数字从0开始 -N 删除从右到左的第n个目录数字从0开始

@ -6,7 +6,7 @@
```info ```bash
renice [-n] <优先级> [-p|--pid] <pid>... renice [-n] <优先级> [-p|--pid] <pid>...
renice [-n] <优先级> -g|--pgrp <pgid>... renice [-n] <优先级> -g|--pgrp <pgid>...
renice [-n] <优先级> -u|--user <用户>... renice [-n] <优先级> -u|--user <用户>...

@ -77,7 +77,7 @@ sort file1 file1 file2 | uniq -u # 两个未排序文件的差集
sort file1 file2 | uniq -u # 两个未排序文件的对称差集 sort file1 file2 | uniq -u # 两个未排序文件的对称差集
# 忽略相同行使用-u选项或者uniq # 忽略相同行使用-u选项或者uniq
sort -u sort.txt sort -u sort.txt
uniq sort.txt uniq sort.txt
sort -nk 2 -t: sort.txt # 将:字符作为分隔符,按其后的第二个字符的数字从小到大排序 sort -nk 2 -t: sort.txt # 将:字符作为分隔符,按其后的第二个字符的数字从小到大排序
@ -97,4 +97,3 @@ FStart.CStart Modifie,FEnd.CEnd Modifier
comment comment
``` ```

@ -1,4 +1,4 @@
# type # **type**
## 说明 ## 说明
@ -28,5 +28,3 @@ type ls
type -a cd type -a cd
type -a grep type -a grep
``` ```

@ -7,7 +7,7 @@
## 选项 ## 选项
```info ```bash
用法: yum [options] COMMAND 用法: yum [options] COMMAND
List of Commands: List of Commands:

Loading…
Cancel
Save