man手册、zip备份

3.1问题

本例要求掌握man帮助手册的使用,以及zip压缩/解压缩的操作,完成下列任务:

查阅passwd命令、/etc/passwd配置文件的手册页

使用zip打包/usr/share/doc/qemu-kvm/目录

3.2方案

zip/unzip压缩与解压缩:

制作zip压缩包:zip[-r]备份文件.zip被归档的文档...

释放zip压缩包:unzip备份文件.zip[-d目标文件夹]

3.3步骤

实现此案例需要按照如下步骤进行。

步骤一:使用man手册页获取帮助

1)查看passwd命令的手册页

[root@svr7~]#man passwd

PASSWD(1)User utilities PASSWD(1)

NAME

passwd-update user's authentication tokens

SYNOPSIS

passwd[-k][-l][-u[-f]][-d][-e][-n mindays][-x maxdays][-w

warndays][-i inactivedays][-S][--stdin][username]

DESCRIPTION

The passwd utility is used to update user's authentication token(s).

This task is achieved through calls to the Linux-PAM and Libuser API.

Essentially,it initializes itself as a"passwd"service with Linux-

PAM and utilizes configured password modules to authenticate and then

update a user's password.

....

2)查看/etc/passwd配置文件的手册页

[root@svr7~]#man 2 passwd

PASSWD(5)Linux Programmer's Manual PASSWD(5)

NAME

passwd-password file

DESCRIPTION

The/etc/passwd file is a text file that describes user login

accounts for the system.It should have read permission allowed for

all users(many utilities,like ls(1)use it to map user IDs to user‐

names),but write access only for the superuser.

In the good old days there was no great problem with this general

read permission.Everybody could read the encrypted passwords,but

the hardware was too slow to crack a well-chosen password,and more‐

over the basic assumption used to be that of a friendly user-commu‐

nity.These days many people run some version of the shadow password

suite,where/etc/passwd has an'x'character in the password

....

步骤二:使用zip命令制作压缩包

1)将目录/usr/share/doc/qemu-kvm/备份为/root/qemu-kvm.zip

[root@svr7~]#zip -r /root/qemu-kvm.zip /usr/share/doc/qemu-kvm/

adding:usr/share/doc/qemu-kvm/(stored 0%)

adding:usr/share/doc/qemu-kvm/COPYING(deflated 62%)

adding:usr/share/doc/qemu-kvm/COPYING.LIB(deflated 65%)

adding:usr/share/doc/qemu-kvm/Changelog(deflated 61%)

adding:usr/share/doc/qemu-kvm/LICENSE(deflated 45%)

adding:usr/share/doc/qemu-kvm/README(deflated 4%)

2)恢复测试

删除目标文件夹并确认结果:

[root@svr7~]#rm -rf /usr/share/doc/qemu-kvm/

[root@svr7~]#ls /usr/share/doc/qemu-kvm/

ls:cannot access/usr/share/doc/qemu-kvm/:No such file or directory

恢复目标文件夹并确认结果:

[root@svr7~]#unzip /root/qemu-kvm.zip-d/

Archive:/root/qemu-kvm.zip

creating:/usr/share/doc/qemu-kvm/

inflating:/usr/share/doc/qemu-kvm/COPYING

inflating:/usr/share/doc/qemu-kvm/COPYING.LIB

inflating:/usr/share/doc/qemu-kvm/Changelog

....

[root@svr7~]#ls /usr/share/doc/qemu-kvm/

COPYING README qemu-tech.html

COPYING.LIB README.rhel6-gpxe-source qmp-commands.txt

Changelog README.systemtap qmp-events.txt

LICENSE qemu-doc.html qmp-spec.txt

man手册、zip备份的更多相关文章

  1. Service系统服务(二):补充应用技巧、软连接与硬连接、man手册、zip备份、vim效率操作、自定义yum软件仓库、发布及测试yum仓库、编译安装软件包

    一.补充应用技巧 目标: 本例要求掌握在运维中比较常用的一些扩展命令技巧的使用,完成下列小技巧操作: 1> 采用数值形式将目录/root的权限调整为 rwx------   2> 将记录的 ...

  2. SQLite学习手册(目录)

    链接地址:http://www.cnblogs.com/stephen-liu74/archive/2012/01/22/2328757.html 在实际的应用中,SQLite作为目前最为流行的开源嵌 ...

  3. SQLite学习手册

    在实际的应用中,SQLite作为目前最为流行的开源嵌入式关系型数据库,在系统的架构设计中正在扮演着越来越为重要的角色.和很多其它嵌入式NoSQL数据库不同的是,SQLite支持很多关系型数据库的基本特 ...

  4. SQLite学习手册(转)

    原文网址:http://www.cnblogs.com/stephen-liu74/archive/2012/01/22/2328757.html 在实际的应用中,SQLite作为目前最为流行的开源嵌 ...

  5. 100天搞定机器学习|day45-53 推荐一本豆瓣评分9.3的书:《Python数据科学手册》

    <Python数据科学手册>共五章,每章介绍一到两个Python数据科学中的重点工具包.首先从IPython和Jupyter开始,它们提供了数据科学家需要的计算环境:第2章讲解能提供nda ...

  6. C#源码500份

    C Sharp  短信发送平台源代码.rar http://1000eb.com/5c6vASP.NET+AJAX基础示例 视频教程 http://1000eb.com/89jcC# Winform ...

  7. Logback学习笔记

    Logback介绍 Logback 分为三个模块:Core.Classic 和 Access.Core模块是其他两个模块的基础. Classic模块扩展了core模块. Classic模块相当于log ...

  8. logback学习与配置使用

    Logback介绍 Logback 分为三个模块:Core.Classic 和 Access.Core模块是其他两个模块的基础. Classic模块扩展了core模块. Classic模块相当于log ...

  9. winkawaks模拟器

    Winkawaks (温科沃克斯)win+ka(日文)+wa(也是日文)+k+s 最好的街机模拟器之一,与Nebula和MAME齐名,支持的游戏的有CAPCOM公司的CPS1,CPS2所有游戏,如三国 ...

随机推荐

  1. Effective Go中文版(更新中)

    原文链接:https://golang.org/doc/effective_go.html Introduction Go是一种新兴的编程语言.虽然它借鉴了现有语言的思想,但它具有不同寻常的特性,使得 ...

  2. Posix线程编程指南(5)

    Posix线程编程指南(5) 杨沙洲 原文地址:http://www.ibm.com/developerworks/cn/linux/thread/posix_threadapi/part5/ 杂项 ...

  3. 有关EPX Studio使用DELPHI5作为基础环境版本的说明

    英巴卡迪诺北京科技有限公司,地址是北京市朝阳门外大街18号丰联广场B座813B,这家公司这家公司不拥有:delphi 1.0~delphi7.0 .delphi 2005版本的著作权,这些都还是属于B ...

  4. 【Weiss】简单说一下这一分类下的东西

    主要是学习资料<数据结构与算法分析>(Weiss)的习题 除去习题外,每一章主要用到的数据结构先会写一个版本放上来,包括数据结构代码与测试用代码 这种先行上传的代码只具有基本的功能,毕竟一 ...

  5. Jenkins分布式构建与并行构建

    Jenkins分布式构建与并行构建 jenkins的架构 Jenkins采用的是"master+agent(slave)"架构.Jenkins master负责提供界面.处理HTT ...

  6. HTML,CSS,JavaScript,json,xml之间的关系

    1.浏览器工作原理: https://blog.csdn.net/Luncles/article/details/80320082 2.HTML,XML,JSON之间的关系: https://blog ...

  7. Blazor-断开连接后重新加载浏览器

    在大多数情况下,Blazor将与以前相同的线路上重新连接到服务器.但有时无法重新连接,需要重新加载web浏览器才能使网站重新工作.如果服务器回收应用程序池,则需要手动重新加载页面在没有调试的情况下在I ...

  8. 如何将自己的测试脚本分离成PO模式的测试框架

    1 PO模式 1.1 PO模式介绍 Page Object Model 测试页面和测试脚本分离,即页面封装成类,供测试脚本调用. (将项目分为page.py和test.py) 测试用例:就是excel ...

  9. Journal of Proteome Research | Down-Regulation of a Male-Specific H3K4 Demethylase, KDM5D, Impairs Cardiomyocyte Differentiation (男性特有的H3K4脱甲基酶基因(KDM5D)下调会损伤心肌细胞分化) | (解读人:徐宁)

    文献名:Down-Regulation of a Male-Specific H3K4 Demethylase, KDM5D, Impairs Cardiomyocyte Differentiatio ...

  10. Journal of Proteome Research | Lipidomics reveals similar changes in serum phospholipid signatures of overweight and obese paediatric subjects (分享人:赵倩倩)

    文献名:Lipidomics reveals similar changes in serum phospholipid signatures of overweight and obese paed ...