RH124 考试真题讲解(小部分、不全)

考试时间2.5小时

请首先按以下要求配置考试系统:

HostName server0.example.com

ip add :172.25.0.11

netmask:/24

gateway:172.25.254.254

Name server 172.25.254.254

所有配置要求系统重启后仍然生效

[[email protected] Desktop]# hostnamectl set-hostname server0.example.com

[[email protected] Desktop]# hostnamectl

Static hostname: server0.example.com

Icon name: computer

Chassis: n/a

Machine ID: 946cb0e817ea4adb916183df8c4fc817

Boot ID: cae3a5020190436f9d04a9429790e6c9

Virtualization: vmware

Operating System: Red Hat Enterprise Linux Server 7.0 (Maipo)

CPE OS Name: cpe:/o:redhat:enterprise_linux:7.0:GA:server

Kernel: Linux 3.10.0-123.el7.x86_64

Architecture: x86_64

[[email protected] Desktop]#

[[email protected] Desktop]# nmcli connection  show   查看网卡信息

NAME  UUID                                  TYPE            DEVICE

eth0  5fb06bd0-0bb0-7ffb-45f1-d6edd65f3e03  802-3-ethernet  eth0

[[email protected] Desktop]# nmcli connection  show eth0  查看网卡详细信息

[[email protected] Desktop]# nm-connection-editor 可以用图形

这里用这个命令方式 实现 :

[[email protected] Desktop]# nmcli connection  add con-name "static" ifname eth0 autoconnect yes type ethernet ip4 "172.25.0.11/24" gw4 172.25.254.254

Connection ‘static‘ (274ff7cb-f44d-4fb8-9b96-9abb92348f33) successfully added.

[[email protected] Desktop]#

[[email protected] Desktop]# vim /etc/sysconfig/network-scripts/ifcfg-static 可看刚才的配置

TYPE=Ethernet

BOOTPROTO=none

IPADDR0=172.25.0.11

PREFIX0=24

GATEWAY0=172.25.254.254

DEFROUTE=yes

IPV4_FAILURE_FATAL=no

IPV6INIT=yes

IPV6_AUTOCONF=yes

IPV6_DEFROUTE=yes

IPV6_FAILURE_FATAL=no

NAME=static

UUID=274ff7cb-f44d-4fb8-9b96-9abb92348f33

DEVICE=eth0

ONBOOT=yes

DNS1=172.25.254.254

IPV6_PEERDNS=yes

IPV6_PEERROUTES=yes

~

生效配置 :

[[email protected] Desktop]# nmcli connection  show

NAME    UUID                                  TYPE            DEVICE

static  274ff7cb-f44d-4fb8-9b96-9abb92348f33  802-3-ethernet  --

eth0    5fb06bd0-0bb0-7ffb-45f1-d6edd65f3e03  802-3-ethernet  eth0

[[email protected] Desktop]# nmcli connection  up static

nConnection successfully activated (D-Bus active path: /org/freedesktop/NetworkManager/ActiveConnection/2)

[[email protected] Desktop]# nmcli connection  show

NAME    UUID                                  TYPE            DEVICE

static  274ff7cb-f44d-4fb8-9b96-9abb92348f33  802-3-ethernet  eth0

eth0    5fb06bd0-0bb0-7ffb-45f1-d6edd65f3e03  802-3-ethernet  --

[[email protected] Desktop]#

[[email protected] Desktop]# nmcli connection  delete "eth0"    删除多余配置

[[email protected] Desktop]# nmcli connection  show

NAME    UUID                                  TYPE            DEVICE

static  274ff7cb-f44d-4fb8-9b96-9abb92348f33  802-3-ethernet  eth0

[[email protected] Desktop]#

第三题:设定YUM软件仓库

配置你的本地默认YUM软件仓库,仓库地址为:http://classromm.example.com/content/rhel7.0/x86_64/dvd

解法:

[[email protected] Desktop]# yum-config-manager --add-repo="http://classromm.example.com/content/rhel7.0/x86_64/dvd"

Loaded plugins: langpacks

adding repo from: http://classromm.example.com/content/rhel7.0/x86_64/dvd

[classromm.example.com_content_rhel7.0_x86_64_dvd]

name=added from: http://classromm.example.com/content/rhel7.0/x86_64/dvd

baseurl=http://classromm.example.com/content/rhel7.0/x86_64/dvd

enabled=1

用命令加可以生成配置文件:

[[email protected] Desktop]# vim /etc/yum.repos.d/classromm.example.com_content_rhel7.0_x86_64_dvd.repo

[classromm.example.com_content_rhel7.0_x86_64_dvd]

name=added from: http://classromm.example.com/content/rhel7.0/x86_64/dvd

baseurl=http://classromm.example.com/content/rhel7.0/x86_64/dvd

enabled=1

~

~

~

~

验证:[[email protected] Desktop]# yum list

可以看到很多包

第五题:按要求创建用户

按以下要求创建用户和用户组:

新建一个名为adminuser的组,组id是40000

新建一 个名为natasha的用户,并将adminuser作为其附属组

新建一个名为harry的用户,并将adminuser作为其附属组

新建一个名为sarah的用户,其不属于adminuser组,并将其shell设置为不可登陆的shell

natasha harry sarah 三个用户的密码均设置为glegunge

解法:

[[email protected] Desktop]# groupadd -g 40000 adminuser

[[email protected] Desktop]# useradd -G adminuser natasha

[[email protected] Desktop]# useradd -G adminuser harry

[[email protected] Desktop]# useradd -s /sbin/nologin sarah

[[email protected] Desktop]# echo "glegunge" | passwd --stdin natasha

Changing password for user natasha.

passwd: all authentication tokens updated successfully.

[[email protected] Desktop]# echo "glegunge" | passwd --stdin harry

Changing password for user harry.

passwd: all authentication tokens updated successfully.

[[email protected] Desktop]# echo "glegunge" | passwd --stdin sara

passwd: Unknown user name ‘sara‘.

第八题:文件特殊权限的设定

在/home目录下创建名为admins的子目录,并按以下要求设置权限

1、/home/admins的所有组为adminuser

[[email protected] Desktop]# mkdir /home/admins

[[email protected] Desktop]# chgrp adminuser /home/admins

2、该目录对adminuser组的成员可读,可执行可写,但对其他用户没有任何权限,但root不受限

[[email protected] Desktop]# chmod g+w /home/admins

[[email protected] Desktop]# chmod o=- /home/admins

[[email protected] Desktop]# ll -d /home/admins

drwxrwx---. 2 root adminuser 6 Jun 11 20:11 /home/admins

[[email protected] Desktop]#

3、在/home/admins目录下所创建的文件的所属组自动被设置为adminuser

[[email protected] Desktop]# chmod g+s /home/admins     //s在x之 上

[[email protected] Desktop]# ll -d /home/admins

drwxrws---. 2 root adminuser 6 Jun 11 20:11 /home/admins

[[email protected] Desktop]#

第九题:升级内核

新内核的RPM包位于http://content.example.com/content/rhel7.0/x86_64/errata/Packages/kernel.3.10.0-123.1.2.el7.x86_64.rpm

系统重启后,默认以新的内核启动系统,原始的内核将继续可用

[[email protected] Desktop]# uname -r

3.10.0-123.el7.x86_64

[[email protected] Desktop]# rpm -ivh http://content.example.com/rhel7.0/x86_64/errata/Packages/kernel-3.10.0-123.1.2.el7.x86_64.rpm

Retrieving http://content.example.com/rhel7.0/x86_64/errata/Packages/kernel-3.10.0-123.1.2.el7.x86_64.rpm

warning: /var/tmp/rpm-tmp.tNnpMS: Header V3 RSA/SHA256 Signature, key ID fd431d51: NOKEY

Preparing...                          ################################# [100%]

Updating / installing...

1:kernel-3.10.0-123.1.2.el7        ################################# [100%]

^Cmkinitrd failed

warning: %posttrans(kernel-3.10.0-123.1.2.el7.x86_64) scriptlet failed, exit status 1

[[email protected] Desktop]#

第十二题:同步时间

配置您 的系统时间与服务器classroom.example.com同步,要求系统重启后仍然有效

[[email protected] Desktop]# timedatectl

Local time: Sun 2017-06-11 20:36:52 CST

Universal time: Sun 2017-06-11 12:36:52 UTC

RTC time: Sun 2017-06-11 20:36:53

Timezone: Asia/Shanghai (CST, +0800)

NTP enabled: yes

NTP synchronized: no

RTC in local TZ: no

DST active: n/a

[[email protected] Desktop]# timedatectl set-ntp true

[[email protected] Desktop]# vim /etc/chrony.conf

# Use public servers from the pool.ntp.org project.

# Please consider joining the pool (http://www.pool.ntp.org/join.html).

#server 0.rhel.pool.ntp.org iburst

#server 1.rhel.pool.ntp.org iburst

#server 2.rhel.pool.ntp.org iburst

#server 3.rhel.pool.ntp.org iburst

server classroom.example.com iburst

:wq

[[email protected] Desktop]# systemctl enable  chronyd  开机启动

s[[email protected] Desktop]# systemctl start chronyd  当前也要启动

[[email protected] Desktop]#

[[email protected] Desktop]# timedatectl

Local time: Sun 2017-06-11 20:49:43 CST

Universal time: Sun 2017-06-11 12:49:43 UTC

RTC time: Sun 2017-06-11 20:49:43

Timezone: Asia/Shanghai (CST, +0800)

NTP enabled: yes

NTP synchronized: no

RTC in local TZ: no

DST active: n/a

[[email protected] Desktop]#

[[email protected] Desktop]# systemctl restart chronyd

如果没有同步起来,可以重启

手工触发:马上同步

[[email protected] Desktop]# chronyc  命令1

chrony version 1.29.1

Copyright (C) 1997-2003, 2007, 2009-2013 Richard P. Curnow and others

chrony comes with ABSOLUTELY NO WARRANTY.  This is free software, and

you are welcome to redistribute it under certain conditions.  See the

GNU General Public License version 2 for details.

chronyc> waitsync  命令2

try: 1, refid: 172.25.254.254, correction: 0.000000000, skew: 1000000.000

chronyc> quit  命令3

[[email protected] Desktop]# timedatectl  再次验证

Local time: Sun 2017-06-11 20:51:42 CST

Universal time: Sun 2017-06-11 12:51:42 UTC

RTC time: Sun 2017-06-11 12:51:42

Timezone: Asia/Shanghai (CST, +0800)

NTP enabled: yes

NTP synchronized: yes

RTC in local TZ: no

DST active: n/a

[[email protected] Desktop]#

第十三题:打包

请对/etc/sysconfig目录打包并且bzip2压缩,生成的文件保存为/root/sysconfig.tar.bz2

[[email protected] Desktop]# man tar  可以查是哪个参数

[[email protected] Desktop]# tar cjf /root/sysconfig.tar.bz2 /etc/sysconfig/

tar: Removing leading `/‘ from member names

[[email protected] Desktop]# ls -lh /root/sysconfig.tar.bz2  /验证

-rw-r--r--. 1 root root 42K Jun 11 20:59 /root/sysconfig.tar.bz2

[[email protected] Desktop]#

第十四题:添加用户

创建一个名为alex的用户,并满足以下要求:

用户id为3456

密码为glegunge

[[email protected] Desktop]# useradd -u 3456 alex

[[email protected] Desktop]# echo "glegunge" | passwd --stdin alex

Changing password for user alex.

passwd: all authentication tokens updated successfully.

[[email protected] Desktop]#

第十六题:查找文件

把系统上拥有者为ira1用户的所有文件,并将其拷贝到 /root/findiles1

先看有没有这个目录:

[[email protected] Desktop]# ll /root/findfiles1

ls: cannot access /root/findfiles: No such file or directory

[[email protected] Desktop]# mkdir /root/findfiles1

[[email protected] Desktop]# find / -user ira1 -exec cp {} /root/findfiles1 \;

[[email protected] Desktop]# find / -user ira -exec cp -a {} /root/findfiles \;保留文件的原有属性

[[email protected] Desktop]# find / -user ira1 -exec cp {} /root/findfiles1 \;(说明,最初找不到,然后用ira1登陆到该设备后创建文件后才找到)

find: ‘/proc/36921/task/36921/fd/6’: No such file or directory

find: ‘/proc/36921/task/36921/fdinfo/6’: No such file or directory

find: ‘/proc/36921/fd/6’: No such file or directory

find: ‘/proc/36921/fdinfo/6’: No such file or directory

cp: omitting directory ‘/home/ira1’

cp: omitting directory ‘/home/ira1/.mozilla’

cp: omitting directory ‘/home/ira1/.mozilla/extensions’

cp: omitting directory ‘/home/ira1/.mozilla/plugins’

cp: omitting directory ‘/home/ira1/.config’

cp: omitting directory ‘/home/ira1/.config/abrt’

cp: omitting directory ‘/home/ira1/.cache’

cp: omitting directory ‘/home/ira1/.cache/abrt’

cp: omitting directory ‘/home/ira1/123’

cp: omitting directory ‘/home/ira1/123.txt’

[[email protected] Desktop]# ll /root/findfiles1

total 12

-rw-r--r--. 1 root root    4 Jun 11 21:19 gnome-initial-setup-done

-rw-r-----. 1 root root    0 Jun 11 21:18 ira1   因为在找到没有加-a参数,所以显示是root的用户和组

-rw-------. 1 root root   11 Jun 11 21:19 lastnotification

-rw-r--r--. 1 root root 1443 Jun 11 21:19 monitors.xml

[[email protected] Desktop]#

如下,加-a的操作

[[email protected] Desktop]# find / -user ira1 -exec  cp -a {} /root/findfiles1 \;

find: ‘/proc/37033/task/37033/fd/6’: No such file or directory

find: ‘/proc/37033/task/37033/fdinfo/6’: No such file or directory

find: ‘/proc/37033/fd/6’: No such file or directory

find: ‘/proc/37033/fdinfo/6’: No such file or directory

cp: cannot overwrite non-directory ‘/root/findfiles1/ira1’ with directory ‘/home/ira1’

[[email protected] Desktop]# ll /root/findfiles1

total 12

drwxrwxr-x. 2 ira1 ira1    6 Jun 11 21:17 123

drwxrwxr-x. 2 ira1 ira1    6 Jun 11 21:17 123.txt

drwxrwxr-x. 2 ira1 ira1   29 Jun 11 21:16 abrt

drwxr-xr-x. 2 ira1 ira1    6 Jan 27  2014 extensions

-rw-r--r--. 1 ira1 ira1    4 Jul 11  2014 gnome-initial-setup-done

-rw-rw----. 1 ira1 mail    0 Jun 11 21:14 ira1

-rw-------. 1 ira1 ira1   11 Jun 11 21:16 lastnotification

-rw-r--r--. 1 ira1 ira1 1443 Jul 11  2014 monitors.xml

drwxr-xr-x. 2 ira1 ira1    6 Jan 27  2014 plugins

[[email protected] Desktop]#

第十七题:过滤文件

把 /usr/share/dict/words文件中所有包含seismic字符串的行找到,并将这些行按照原始文件中的顺序存入/root/wordlist中、/root/list文件不能包含空行。

[[email protected] Desktop]# grep "seismic" /usr/share/dict/words > /root/list

[[email protected] Desktop]# grep "seismic" /usr/share/dict/words > /root/list  注:没有这个路径或文件会自动创建

[[email protected] Desktop]# cat /root/list

时间: 2024-11-08 20:10:18

RH124 考试真题讲解(小部分、不全)的相关文章

2016年上半年系统集成项目管理工程师考试真题(下午)

做真题是掌握考试重点以及把握考试方向的的最佳方式,因而考试真题和答案是最好的学习资料,下面希赛软考学院为您提供2016年上半年系统集成项目管理工程师考试下午试卷题目,供您参考学习. 2016年上半年系统集成项目管理工程师考试下午试题提目 试题一(20分) 阅读下列说明,回答问题1至问题4,将解答填入答题纸的对应栏内. [说明] 已知某信息工程项目由A至1共9个活动构成,项目组根据项目目标,特别是工期要求,经过分析.定义及评审,给出了该项目的活动历时.活动所需资源及活动逻辑关系列表,如下表所示:

历年信息系统项目管理师考试真题(附带答案及权威解析)-附免费下载地址

希赛独家:信息系统项目管理师考试历年考试真题(含真题答案,权威专家解析),请大家关注:http://www.educity.cn/rk/zt/201705fenshu/index.htm更多老师讲解视频持续更新中,请大家关注希赛网软考学院. 2017年上半年信息系统项目管理师考试真题(参考答案) 真题地址:上午题:http://www.educity.cn/tiku/tp20904.html下午题:http://www.educity.cn/tiku/tp20903.html论文真题:http:

二级MS Office高级应用考试真题精讲冲刺专用

课程目标:本课程主要用于全国计算机二级 MS Office高级应用的考前冲刺,根据我们的线下测试,本视频配合考试软件考前练习至少两遍过关率在92.8%(2015年9月份考试数据) 适合人群:主要适用于考取全国计算机二级MS Office高级应用证书的学员. 课程介绍: 本课程总共收录历年来计算机二级MS Office高级应用考试真题,对每套题进行精细讲解,遇到疑难操作会有提示同时在讲解过程中也会提示学员考试容易范的错误.主要用于考前冲刺. 本系列课程主要是有刘王斌讲师讲解,课程主要是运用于全国计

2016年下半年信息安全工程师考试真题含答案(下午题)

2016年下半年信息安全工程师考试真题含答案(下午题) https://www.moondream.cn/?p=328 试题一(共20分) 阅读下列说明和图,回答问题1至问题3,将解答填入答题纸的对应栏内. [说明] 研究密码编码的科学称为密码编码学,研究密码破译的科学称为密码分析学,密码编码学和密码分析学共同组成密码学.密码学作为信息安全的关键技术,在信息安全领域有着广泛的应用. [问题1](9分) 密码学的安全目标至少包括哪三个方面?具体内涵是什么? [问题2](3分) 对下列违规安全事件,

2017年上半年信息安全工程师考试真题含答案(下午题)

2017年上半年信息安全工程师考试真题含答案(下午题) https://www.moondream.cn/?p=389 第1题 阅读下列说明,回答问题 1 至问题 3,将解答写在答题纸的对 应栏内. [说明] 安全目标的关键是实现安全的三大要素:机密性.完整性和可用性.对于一般性的信息类型的安全分类有以下表达形式: { (机密性,影响等级), (完整性,影响等级), (可用性,影 响等级) } 在上述表达式中,"影响等级"的值可以取为低 (L).中(M).高(H) 三级以及不适用 (N

软考信息安全工程师考试真题汇总及试题分布统计

软考信息安全工程师考试真题汇总及试题分布统计 https://www.moondream.cn/?p=274 2017年信息安全工程师真题 链接:https://pan.baidu.com/s/1iGLowkGPL6HOLKgiN4LEWg    密码:请进入备考群获取 2016年信息安全工程师真题 链接:https://pan.baidu.com/s/1c5E9EdI1TIzawK1Bm-TMEQ       密码:请进入备考群获取 2016年下半年信息安全工程师考试真题含答案(上午题) 20

2016年上半年数据库系统工程师考试真题(下午题)

数据库系统工程师考试的要求为:掌握计算机体系结构以及各主要部件的性能和基本工作原理:掌握操作系统.程序设计语言的基础知识,了解编译程序的基本知识:熟练掌握常用数据结构和常用算法:熟悉软件工程和软件开发项目管理的基础知识:熟悉计算机网络的原理和技术:掌握数据库原理及基本理论:掌握常用的大型数据库管理系统的应用技术:掌握数据库应用系统的设计方法和开发过程:熟悉数据库系统的管理和维护方法,了解相关的安全技术:了解数据库发展趋势与新技术.做真题,是巩固和掌握知识点最佳的方法,下面希赛软考学院为您提供20

2016年上半年软件设计师考试真题(下午题)

软件设计师考试作为软考中级资格中的一大热门,2016年上半年和下半年都开考.上半年软考已经结束,打算参加下半年考试的你,是不是很想要拿到上半年的真题?下面希赛软考学院就为你带来2016年上半年软件设计师考试下午真题,供你参考学习.  试题一(共15分) 阅读下列说明和图,回答问题1至问题4,将解答填入答题纸的对应栏内. [说明] 某会议中心提供举办会议的场地设施和各种设备,供公司与各类组织机构租用.场地包括一个大型报告厅.一个小型报告厅以及诸多会议室.这些报告厅和会议室可提供的设备有投影仪.白板

2016年上半年网络管理员考试真题(下午题)

不管是高考还是软考,历年真题是最有参考价值的复习资料,年代越近,参考价值越高.下面希赛软考学院为您带来2016年上半年网络管理员考试下午真题,供您参考学习. 试题一(共20分) 阅读以下说明,回答问题1至问题4,将解答填入答题纸对应的解答栏内. [说明] 某网络拓扑结构如图1-1所示,路由器R1的路由信息如下所示: C 202.118.1.0/24 is directly connected,FastEthernet0/0 R 202.118.2.0/24[120/1]via 192.168.1