第四周博客作业

第一题

  1. 打包/etc/目录下面所有conf结尾的文件,压缩包名称为当天的时间,并拷贝到/usr/local/src目录备份。
[root@localhost alsa]# find /etc/ -name "*.conf" |xargs tar zcvf /usr/local/src/`date +%F`.tar.gz

image.png

第二题 查找当前系统上没有属主或属组,且最近一个周内曾被访问过的文件或目录

[root@localhost ~]# find / \( -nouser -o -nogroup -a -atime -7 \)

第三题 查找/etc目录下至少有一类用户没有执行权限的文件

[root@localhost ~]# find /etc/ -not -perm /111 -ls
 68003193      4 -rw-r--r--   1  root     root          451 May 20 00:31 /etc/httpd/conf.modules.d/01-cgi.conf
 68341886      4 -rw-r--r--   1  root     root          496 May 20 00:33 /etc/httpd/conf.modules.d/README
101516644     12 -rw-r--r--   1  root     root        11899 May 20 00:31 /etc/httpd/conf/httpd.conf
101516645     16 -rw-r--r--   1  root     root        13064 May 20 00:33 /etc/httpd/conf/magic
 35224550      4 -rw-r-----   1  root     root         3181 May 18  2020 /etc/sudo-ldap.conf
 35224551      4 -rw-r-----   1  root     root         1786 May 18  2020 /etc/sudo.conf
 35224552      8 -r--r-----   1  root     root         4328 May 18  2020 /etc/sudoers
 35239063      8 -rw-r--r--   1  root     root         5165 May 11  2019 /etc/man_db.conf
 35239854      8 -rw-r--r--   1  root     root         4760 Nov  8  2019 /etc/enscript.cfg
 35239980     12 -rw-r--r--   1  root     root         9450 May 11  2019 /etc/nanorc
  2286514      4 -rw-r--r--   1  root     root           69 May 24 12:55 /etc/nvme/hostnqn
  2286515      4 -rw-r--r--   1  root     root           37 May 24 12:55 /etc/nvme/hostid
 35247646      4 -rw-r--r--   1  root     root         1362 May 14  2019 /etc/pbm2ppa.conf
 35247647      8 -rw-r--r--   1  root     root         6300 May 14  2019 /etc/pnm2ppa.conf
 35286917      4 -rw-r--r--   1  root     root          272 May 11  2017 /etc/mailcap
 35286918     60 -rw-r--r--   1  root     root        60352 May 11  2017 /etc/mime.types
 35593052      4 -rw-r--r--   1  root     root           19 May 24 13:21 /etc/locale.conf

第四题 自建网络yum源(通过httpd实现)

1.安装Http服务

1.1 安装httpd服务
[root@localhost ~]# dnf -y install httpd

1.2 启动httpd服务
[root@localhost ~]# systemctl start httpd

1.3 查看端口监听状态
[root@localhost ~]# netstat -tnlp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name    
tcp        0      0 0.0.0.0:111             0.0.0.0:*               LISTEN      1/systemd           
tcp        0      0 192.168.122.1:53        0.0.0.0:*               LISTEN      1798/dnsmasq        
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      1099/sshd           
tcp        0      0 127.0.0.1:631           0.0.0.0:*               LISTEN      1095/cupsd          
tcp        0      0 127.0.0.1:6010          0.0.0.0:*               LISTEN      2341/sshd: root@pts 
tcp6       0      0 :::111                  :::*                    LISTEN      1/systemd           
tcp6       0      0 :::80                   :::*                    LISTEN      66733/httpd         
tcp6       0      0 :::22                   :::*                    LISTEN      1099/sshd           
tcp6       0      0 ::1:631                 :::*                    LISTEN      1095/cupsd          
tcp6       0      0 ::1:6010                :::*                    LISTEN      2341/sshd: root@pts 

1.4 查看防火墻的工作状态
[root@localhost ~]# systemctl status firewalld
● firewalld.service - firewalld - dynamic firewall daemon
   Loaded: loaded (/usr/lib/systemd/system/firewalld.service; enabled; vendor preset: enabled)
   Active: active (running) since Sat 2021-06-26 09:02:37 EDT; 2 days ago
     Docs: man:firewalld(1)
 Main PID: 1007 (firewalld)
    Tasks: 2 (limit: 4615)
   Memory: 2.5M
   CGroup: /system.slice/firewalld.service
           └─1007 /usr/libexec/platform-python -s /usr/sbin/firewalld --nofork --nopid

Jun 26 09:02:35 localhost.localdomain systemd[1]: Starting firewalld - dynamic firewall daemon...
Jun 26 09:02:37 localhost.localdomain systemd[1]: Started firewalld - dynamic firewall daemon.
Jun 26 09:02:38 localhost.localdomain firewalld[1007]: WARNING: AllowZoneDrifting is enabled. This is considered>
lines 1-13/13 (END)

1.5 停用防火墙功能,再次查看确认处于关闭状态。
[root@localhost ~]# systemctl stop firewalld

2.访问http服务

image-20210629114028039.png

3.创建yum源

3.1 创建文件夹

[root@localhost ~]# mkdir /var/www/html/centos/8 -pv
mkdir: created directory '/var/www/html/centos'
mkdir: created directory '/var/www/html/centos/8'

3.2 挂载光盘

[root@localhost ~]# mount /dev/sr0 /tmp/
mount: /tmp: WARNING: device write-protected, mounted read-only.

3.3 拷贝rpm包

[root@localhost ~]# cp -a /mnt/* /var/www/html/centos/8
[root@localhost 8]# pwd
/var/www/html/centos/8
[root@localhost 8]# ls
AppStream  BaseOS  EFI  images  isolinux  LICENSE  media.repo  TRANS.TBL
[root@localhost 8]# 

3.4 查看仓库内容

image-20210629115643882.png

4. 客户端配置

4.1 客户端yum配置

[root@localhost ~]# cat /etc/yum.repos.d/test.repo 
[BaseOS]
name = BaseOS
baseurl = http://192.168.56.129/centos/8/BaseOS/
gpgcheck = 1
gpgkey = fire:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7


[AppStream]
name=Appstream
baseurl = http://192.168.56.129/centos/8/AppStream/
gpgcheck = 1
gpgkey = file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

4.2 验证yum配置成功

[root@localhost ~]# yum repolist
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
AppStream                                                                                 | 4.4 kB  00:00:00     
BaseOS                                                                                    | 3.9 kB  00:00:00     
(1/2): BaseOS/group_gz                                                                    |  55 kB  00:00:00     
(2/2): BaseOS/primary_db                                                                  | 1.6 MB  00:00:00     
repo id                                              repo name                                             status
AppStream                                            Appstream                                             5,686
BaseOS                                               BaseOS                                                1,784
repolist: 7,470

第五题 利用sed 取出ifconfig命令中本机的IPv4地址

[root@localhost ~]# ip a
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: ens33: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
    link/ether 00:0c:29:e5:0f:96 brd ff:ff:ff:ff:ff:ff
    inet 192.168.56.129/24 brd 192.168.56.255 scope global dynamic noprefixroute ens33
       valid_lft 1007sec preferred_lft 1007sec
    inet6 fe80::fa3f:fac4:982b:b3f5/64 scope link dadfailed tentative noprefixroute 
       valid_lft forever preferred_lft forever
    inet6 fe80::58d6:e2f6:3fb3:5bbd/64 scope link noprefixroute 
       valid_lft forever preferred_lft forever
3: virbr0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default qlen 1000
    link/ether 52:54:00:01:06:54 brd ff:ff:ff:ff:ff:ff
    inet 192.168.122.1/24 brd 192.168.122.255 scope global virbr0
       valid_lft forever preferred_lft forever
4: virbr0-nic: <BROADCAST,MULTICAST> mtu 1500 qdisc fq_codel master virbr0 state DOWN group default qlen 1000
    link/ether 52:54:00:01:06:54 brd ff:ff:ff:ff:ff:ff
[root@localhost ~]# ip a |grep "ens33" |grep "inet" | sed 's/^.*inet//g' | sed 's/brd.*$//g'
 192.168.56.129/24 

第六题 删除/etc/fstab文件中所有以#开头,后面至少跟一个空白字符的行的行首的#和空白字符

[root@localhost data]# cat /etc/fstab 

#
# /etc/fstab
# Created by anaconda on Mon May 24 16:48:36 2021
#
# Accessible filesystems, by reference, are maintained under '/dev/disk/'.
# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info.
#
# After editing this file, run 'systemctl daemon-reload' to update systemd
# units generated from this file.
#
/dev/mapper/cs-root     /                       xfs     defaults        0 0
UUID=76ccc4ba-6504-499d-af17-27d2550ff522 /boot                   xfs     defaults        0 0
/dev/mapper/cs-swap     none                    swap    defaults        0 0
[root@localhost data]# cat /etc/fstab | sed 's/^# *//g'


/etc/fstab
Created by anaconda on Mon May 24 16:48:36 2021

Accessible filesystems, by reference, are maintained under '/dev/disk/'.
See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info.

After editing this file, run 'systemctl daemon-reload' to update systemd
units generated from this file.

/dev/mapper/cs-root     /                       xfs     defaults        0 0
UUID=76ccc4ba-6504-499d-af17-27d2550ff522 /boot                   xfs     defaults        0 0
/dev/mapper/cs-swap     none                    swap    defaults        0 0
[root@localhost data]# 

第七题 处理/etc/fstab路径,使用sed命令取出其目录名和基名

[root@localhost ~]# echo "/etc/fstab" | sed -r 's#^/(.*)/(.*)#\1#'
etc
[root@localhost ~]# echo "/etc/fstab" | sed -r 's#^/(.*)/(.*)#\2#'
fstab
[root@localhost ~]# 
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,951评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,606评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,601评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,478评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,565评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,587评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,590评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,337评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,785评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,096评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,273评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,935评论 5 339
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,578评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,199评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,440评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,163评论 2 366
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,133评论 2 352

推荐阅读更多精彩内容

  • 1、打包/etc/目录下面所有conf结尾的文件,压缩包名称为当天的时间,并拷贝到/usr/local/src目录...
    马晖阅读 104评论 0 0
  • 1、自建yum仓库,分别为网络源和本地源 网络源:1、将/etc/yum.repos.d/下的.repo文件清除掉...
    陌路残蝉阅读 420评论 1 0
  • linux资料总章2.1 1.0写的不好抱歉 但是2.0已经改了很多 但是错误还是无法避免 以后资料会慢慢更新 大...
    数据革命阅读 12,156评论 2 33
  • 1、查找/var目录下不属于root、lp、gdm的所有文件 find /var -not \( -user ro...
    lomg213阅读 118评论 0 0
  • 我是黑夜里大雨纷飞的人啊 1 “又到一年六月,有人笑有人哭,有人欢乐有人忧愁,有人惊喜有人失落,有的觉得收获满满有...
    陌忘宇阅读 8,534评论 28 53