码迷,mamicode.com
首页 > 其他好文 > 详细

chapter02 - 03

时间:2019-07-26 16:10:51      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:打包   图片   lang   nsa   efi   res   nbsp   oca   bsp   

1、  分别用cat \tac\nl三个命令查看文件/etc/ssh/sshd_config文件中的内容,并用自己的话总计出这三个文档操作命令的不同之处?

[root@localhost /]# cat /etc/ssh/sshd_config

[root@localhost /]# tac /etc/ssh/sshd_config

[root@localhost /]# nl /etc/ssh/sshd_config

cat命令是查询文件内容

tac 命令是倒叙查询文件内容

nl不显示文件空行内容

2、  分别用moreless查看/etc/ssh/sshd_config里面的内容,请用总结moreless两个命令的相同和不同之处?

 

[root@localhost /]# more /etc/ssh/sshd_config

[root@localhost /]# less /etc/ssh/sshd_config

moreless 相同之处是都是全屏翻页查看文件内容,空格键翻一页,q退出

moreless不同之处是lessmore扩展功能多 moreenter向下翻一行,而lesspguppgdn上下翻页而且less还有/查找功能,‘n’下一个‘N’上一个

 

3、  /etc/passwd文件中的前20行重定向保存到/root下改名为20_pass.txt,/etc/passwd文件中的后15行重定向保存到/root下改名为:pass_15.txt

 

[root@localhost /]# head -20 /etc/hosts > /root/20_pass.txt

[root@localhost /]# cd

[root@localhost ~]# ls

20_pass.txt  anaconda-ks.cfg  initial-setup-ks.cfg

[root@localhost ~]# tail -15 /etc/hosts > /root/pass_15.txt

[root@localhost ~]# ls

20_pass.txt  anaconda-ks.cfg  initial-setup-ks.cfg  pass_15.txt

 

4、  请用一个命令统计/etc/hosts文件包含有多少行?多少字节?多少单词数?

 

[root@localhost ~]# wc /etc/hosts

  2  10 158 /etc/hosts

 

5、练习使用grepegrep

5.1.通过grep管道工具过滤出ifconfig命令显示信息中的IP字段?

[root@localhost ~]# ifconfig | grep "inet*"

        inet 192.168.100.156  netmask 255.255.255.0  broadcast 192.168.100.255

        inet6 fe80::2587:2767:783c:e820  prefixlen 64  scopeid 0x20<link>

        inet 127.0.0.1  netmask 255.0.0.0

        inet6 ::1  prefixlen 128  scopeid 0x10<host>

        inet 192.168.122.1  netmask 255.255.255.0  broadcast 192.168.122.255

 

5.2./etc/passwd文件中的前20行重定向保存到/root下名称为pass

 

[root@localhost ~]# head -20 /etc/passwd > /root/pass

[root@localhost ~]# ls

20_pass.txt      initial-setup-ks.cfg  pass_15.txt

anaconda-ks.cfg  pass

 

5.3.过滤/etc/passwd文件中含有/sbin/nologin 的行并统计行数?

[root@localhost ~]# grep "/sbin/nologin"  /etc/passwd | wc -l

 

5.4 过滤/etc/passwd文件中以sh结尾的行,及以 root开头的行,不显示包含login的行?

[root@localhost ~]# egrep "^root" /etc/passwd | grep "sh$" | grep -v "login"

root:x:0:0:root:/root:/bin/bash

 

5.5 分别用grepegrep过滤出/etc/ssh/sshd_config文件中不包含“#”开头和空白的行?

 

[root@localhost ~]# grep -v "^#" /etc/ssh/sshd_config | grep -v "^$"

[root@localhost ~]# egrep -v "^#" /etc/ssh/sshd_config | egrep -v "^$"

 

6.1 通过tar命令将/etc/passwd文件打包压缩成/root/file.tar.gz  

 

[root@localhost ~]# tar zcfv /root/file.tar.gz /etc/passwd

tar: 从成员名中删除开头的“/

/etc/passwd

[root@localhost ~]# ls

20_pass.txt      file.tar.gz           pass

anaconda-ks.cfg  initial-setup-ks.cfg  pass_15.txt

 

6.2通过tar命令将/etc/passwd文件打包压缩成/root/file.tar.bz2

 

[root@localhost ~]# tar jcfv /root/file.tar.bz2 /etc/passwd

tar: 从成员名中删除开头的“/

/etc/passwd

[root@localhost ~]# ls

20_pass.txt      file.tar.bz2  initial-setup-ks.cfg  pass_15.txt

anaconda-ks.cfg  file.tar.gz   pass

 

6.3创建空文件夹/web/test1,并将file.tar.bz2 解包并释放到/web/test1目录下?

 

[root@localhost ~]# tar jxfv /root/file.tar.bz2 -C /web/test1/

etc/passwd

[root@localhost ~]# ls /web/test1/

etc

 

7.1 通过vi编辑/web/test1/passwd文件将文件里为root单词全部替换成benet

 技术图片

 


 

7.2 通过vi编辑 删除pass文件第1510行。

dd

 

7.3 vi中显示pass文件行号复制文件2 3 4行粘贴到以lp开头的行下。

 

将光标移动到第二行在命令模式下输入3yy复制从光标起一下三行代码

在命令模式下输入/lp 将光标定位到lp行后 然后再命令模式下输入p

 

7.4 通过vi编辑 查找文件内包含mail var等字符串,并记录所在行号。

 /mail 5

/var  7

7.5 通过vi编辑 快速跳转到文件的第二行,通过r 读取 /etc/hosts 文件的内容到第二行下。

 

技术图片

 


7.6将更改后的文件使用vim另存为/root/new_pass

:w /root/new_pass

技术图片

 


7.7new_pass文件压缩成gz格式并改名为npass.gz文件。

 

技术图片

 


8统计/dev 目录下的文件数量。

 

[root@localhost ~]# find /dev* | wc -l

355

9.1/boot下查找文件名以vmlinuz开头的文件?

 

[root@localhost ~]# find /boot/ -name "vmlinuz*"

/boot/vmlinuz-3.10.0-862.el7.x86_64

/boot/vmlinuz-0-rescue-d33425ee638340c1961b31007b0c3a12

 

9.2/boot下查找文件大小大于3M 小于 20M 的文件

 

[root@localhost ~]# find /boot/ -size +3M | find -size -20M

.

./.bash_logout

./.bash_profile

./.bashrc

./.cshrc

./.tcshrc

./anaconda-ks.cfg

./.cache

./.cache/dconf

./.cache/dconf/user

./.cache/abrt

./.cache/abrt/lastnotification

./.dbus

./.dbus/session-bus

./.dbus/session-bus/d33425ee638340c1961b31007b0c3a12-9

./initial-setup-ks.cfg

./.config

./.config/abrt

./.bash_history

./.xauthgqjOrg

./.xauthR6pIRq

./.viminfo

./20_pass.txt

./pass_15.txt

./.Xauthority

./pass

./file.tar.gz

./file.tar.bz2

./napass.gz

 

10 请详细写出构建本地yum仓库的步骤?并在每行命令后面用自己的话做上中文注释?

[root@localhost /]# cd /etc/yum.r*  //构建本地YUM仓库文档

[root@localhost yum.repos.d]# mkdir a/ 

[root@localhost yum.repos.d]# ls

a CentOS-Debuginfo.repo  CentOS-Sources.repo

CentOS-Base.repo  CentOS-fasttrack.repo  CentOS-Vault.repo

CentOS-CR.repo    CentOS-Media.repo     //查询列表

[root@localhost yum.repos.d]# mv C* a/      //C开头的文件移到a/

[root@localhost yum.repos.d]# ls            //查询列表

a

[root@localhost yum.repos.d]# vi ./local.repo    //创建本地yum仓库

[root@localhost yum.repos.d]# yum -y clean all  //清除yum缓存

已加载插件:fastestmirror, langpacks

正在清理软件源: cdeom

Cleaning up everything

Maybe you want: rm -rf /var/cache/yum, to also free up space taken by orphaned data from disabled or removed repos

Cleaning up list of fastest mirrors

[root@localhost yum.repos.d]# yum makecache  //重建yum缓存

已加载插件:fastestmirror, langpacks

Determining fastest mirrors

cdeom                                      | 3.6 kB     00:00    

(1/4): cdeom/group_gz                        | 166 kB   00:00    

(2/4): cdeom/filelists_db                    | 3.1 MB   00:00    

(3/4): cdeom/primary_db                      | 3.1 MB   00:00    

(4/4): cdeom/other_db                        | 1.3 MB   00:00    

元数据缓存已建立

11、用yum命令安装vsftpd,查询安装情况,最后卸载vsftpd,并再次查询卸载情况?

[root@localhost yum.repos.d]# yum -y install vsftpd 

已加载插件:fastestmirror, langpacks

Loading mirror speeds from cached hostfile

正在解决依赖关系

--> 正在检查事务

---> 软件包 vsftpd.x86_64.0.3.0.2-22.el7 将被 安装

--> 解决依赖关系完成

 

依赖关系解决

 

==================================================================

 Package      架构         版本                            大小

==================================================================

正在安装:

 vsftpd       x86_64       3.0.2-22.el7         cdeom       169 k

 

事务概要

==================================================================

安装  1 软件包

 

总下载量:169 k

安装大小:348 k

Downloading packages:

Running transaction check

Running transaction test

Transaction test succeeded

Running transaction

  正在安装    : vsftpd-3.0.2-22.el7.x86_64                    1/1

  验证中      : vsftpd-3.0.2-22.el7.x86_64                    1/1

 

已安装:

  vsftpd.x86_64 0:3.0.2-22.el7                                   

 

完毕!

 [root@localhost yum.repos.d]# yum -y remove vsftpd  

已加载插件:fastestmirror, langpacks

正在解决依赖关系

--> 正在检查事务

---> 软件包 vsftpd.x86_64.0.3.0.2-22.el7 将被 删除

--> 解决依赖关系完成

 

依赖关系解决

 

==================================================================

 Package      架构         版本                            大小

==================================================================

正在删除:

 vsftpd       x86_64       3.0.2-22.el7        @cdeom       348 k

 

事务概要

==================================================================

移除  1 软件包

 

安装大小:348 k

Downloading packages:

Running transaction check

Running transaction test

Transaction test succeeded

Running transaction

  正在删除    : vsftpd-3.0.2-22.el7.x86_64                    1/1

  验证中      : vsftpd-3.0.2-22.el7.x86_64                    1/1

 

删除:

  vsftpd.x86_64 0:3.0.2-22.el7                                   

 

完毕!

[root@localhost yum.repos.d]# rpm -q vsftpd

未安装软件包 vsftpd

12、用rpm命令安装vsftpd,查询安装情况,最后卸载vsftpd,并再次查询卸载情况?

 

[root@localhost Packages]# rpm -ivh vsftpd-3.0.2-22.el7.x86_64.rpm

警告:vsftpd-3.0.2-22.el7.x86_64.rpm: V3 RSA/SHA256 Signature, 密钥 ID f4a80eb5: NOKEY

准备中...                          ################################# [100%]

正在升级/安装...

   1:vsftpd-3.0.2-22.el7              ################################# [100%]

[root@localhost Packages]# rpm -q vsftpd

vsftpd-3.0.2-22.el7.x86_64

[root@localhost Packages]# rpm -e vsftpd

[root@localhost Packages]# rpm -q vsftpd

未安装软件包 vsftpd

 

13、通过源码方式通过解包、配置、编译、安装四个步骤安装源码软件httpd-2.2.17.tar.gz?并进行测试?

 

技术图片

 

 


 

chapter02 - 03

标签:打包   图片   lang   nsa   efi   res   nbsp   oca   bsp   

原文地址:https://www.cnblogs.com/laohantui/p/11250849.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!