rh124-exam

考试信息:
IPADDR: 172.25.x.100(X 在这里指您的工作站编号)
NETMASK: 255.255.255.0
GATEWAY: 172.25.x.254
DNS: 172.25.254.254
yum源地址为:ftp://172.25.x.250/pub/rhel7.0


1.
在进行考试之前,请先重置根用户密码为 examwestos

passwd root  修改密码

2
更改主机名称为 station.domainX.example.com(X 在这里指您的工作站编号)

hostname  station.domainX.example.com

3
新建组,名称为 sysadms,指定其 GID 为 600

groupadd -g 600 sysadms

4
新建用户 tommy,指定 UID 为 2013,配置该用户密码为 redhat

useradd -u 2013 tommy

passwd tommy

5
新建用户 Jimmy,,并且禁止该用户交互式登录,配置该用户密码为 redhat

usermod -s  /sbin/nologin   Jimmy

passwd Jimmy

6
新建用户 natasha,harry, 并将这两个用户加入到 sysadms 组当中,作为从属组,如果需要,则将用户密码配置为 redhat

7
在/home 目录中创建目录 materials,配置该目录的所属组为 sysadms,要求隶属于 sysadms 组当中的成员对该目录有读写权限,在sysadms目录当中创建的文件或者文件夹,其所属组也
自动继承 sysadms 的所属组

chmod 2760 materials

8
拷贝/etc/fstab 文件到/var/tmp 目录中,设置以下需求
使 harry 用户对该文件无任何权限
使 natasha 对该文件有完全控制权限
配置文件所属用户为 root
配置文件所属组为 root
其他所有用户对文件拥有读权限
其他所有用户对文件没有执行权限

setfacl -m u:harry:--- /var/tmp/fstab

setfacl -m u:natasha:rwx /var/tmp/fstab

chmod u+r /var/tmp/fstab

chmod o-r /var/tmp/fstab

9
设置 NTP 客户端,与172.25.x.254进行时间同步

vim /etc/chrony.conf      
 22 # Allow NTP client access from local network.
 23 allow 172.16.29.143

29 # Serve time even if not synchronized to any NTP server.
 30 local stratum 10

system restart chronyd
systemctl stop firewalld

客户端
vim /etc/chrony.conf
  3 #server 0.rhel.pool.ntp.org iburst
  4 #server 1.rhel.pool.ntp.org iburst====>server 172.16.51.215 iburst
  5 #server 2.rhel.pool.ntp.org iburst====>
  6 #server 3.rhel.pool.ntp.org iburst

systemctl restart chronyd

(1)图形化

System > Administration > Date&Time

chkconfig ntpd on

(2)vim /etc/ntp.conf

server server.domainX.example.com

/etc/init.d/ntpd restart

chkconfig ntpd on

检查:rpm -qa | grep ntpd   chkconfig --list ntpd

10
找出用户组mail 拥有的文件,并且将它们放到/root/findresults 目录中

find /* -group mail |tee > /root/findresults

11
在文件/usr/share/mime/packages/freedesktop.org.xml 中查找所有包含 ich 的行,将找
出的行按照先后顺序拷贝到/root/lines
文件中,/root/lines 文件不包含空格,并且其中行的内容是源文件/usr/share/mime/packages/freedesktop.org.xml 原始行的准确副本yum install chrony -y

grep ‘ich‘  /usr/share/mime/packages/freedesktop.org.xml > /root/lines

时间: 2024-10-12 03:05:29

rh124-exam的相关文章

UVA 11637 - Garbage Remembering Exam(组合概率)

UVA 11637 - Garbage Remembering Exam 题目链接 题意:大概意思是,有n个单词,分别打乱放在一个环形的,一个非环形里面,环形的两个单词距离为顺时针逆时针的最小值,非环形的就是位置的差的绝对值,如果有一对单词,在两个里面的距离都是不大于k,那么这单词为无效单词,问平均会出现多少个无效单词 思路:组合概率,假设在非环形形成了一个随机序列,那么我们给它标号1-n,如果我们能分别算出1-n的有效概率,那么就等于算出了无效概率,那么有效概率等于和它距离大于k的那些位置的所

【OCM】Exam Souvenir 20140707

[OCM考场合影留念] 经过两天的奋战,又一波恩墨OCM战队的顶尖高手们,凭借百分百的发挥完美收官,到此画上了完美的句号. 传承了霸气的手势!Well done! [请访问此 http://www.dbstyle.net/?p=979页面获得更加丰富的内容] [OCM]Exam Souvenir 20140707,布布扣,bubuko.com

RH124 Chapter 2 Managing Files From the Command Line

RHEL7里面的目录结构 /bin   可执行文件(可执行应用程序).RHEL7里面/bin目录软链接到了/usr/bin /boot   和系统启动相关东西(相当于windows的100M启动分区) /dev  用户来控制内核,内核管理硬件,内核才可访问硬件.用户空间(用户管理,内核发生了映射).内核空间(直接管理硬件).不能单独划分分区 /etc       存储的是配置文件.参数文件.修改某个系统属性或服务属性.不能单独划分分区 /home    普通用户目录.类似于xp的c盘Docume

CF534A Exam 构造

An exam for n students will take place in a long and narrow room, so the students will sit in a line in some order. The teacher suspects that students with adjacent numbers (i and i + 1) always studied side by side and became friends and if they take

HDU5240——贪心——Exam

Problem Description As this term is going to end, DRD needs to prepare for his final exams. DRD has n exams. They are all hard, but their difficulties are different. DRD will spend at least ri hours on the i-th course before its exam starts, or he wi

uva 11637 - Garbage Remembering Exam(概率)

题目链接:uva 11637 - Garbage Remembering Exam 题目大意:大白数里有很详细的题意. 解题思路:对于有序的序列来说,考虑每个位置为有效性的概率.C(2?kn?1?x)?A(2k2k)?A(n?1?xn?1?x)A(n?1n?1) x为考虑当前位置,然后与该位置距离小于等于k的位置个数.该位置有效的话,则对应的要将原先邻近的2*k个单词放到另外的位置上. #include <cstdio> #include <cstring> #include &l

Final Exam Arrangement

题目链接 题意: 输入n个左闭右开的线段,如果两个线段有重叠部分,那么这两个线段必然不能在一组.求,最少分几组,并且输出每组都有谁 分析: 将一个线段拆开成左右端点,排序.从左向右扫描,如果遇到的是左端点,那么直接加入到集合中,此时集合中的这些线段两两有重合部分,所以是可以分到同一组的:如果遇到的是右端点,那么当前线段之后将和当前线段没有重合点,必然不能放到一组.这样贪心的将每一个线段尽可能的分到一个组中(分到哪个组无所谓,只要分到了一个组中,答案就能减少),就可以保证答案是最少的.当一个线段不

Codeforces534A:Exam

An exam for n students will take place in a long and narrow room, so the students will sit in a line in some order. The teacher suspects that students with adjacent numbers (i and i?+?1) always studied side by side and became friends and if they take

Winter &#39;15 Release Exam (dev - 401)

1 of 5. What is a capability of Advanced Setup Search? Choose 2 answers A. Enter search criteria using wildcard characters, such as an asterisk (*). B. Search for individual Setup items, such as workflow rules, by name. C. See which object an item is

有感PMI Exam Dev Workshop

有幸參加了PMI协会在上海举办的PMI Exam Development Workshop活动.这是PMI协会第二次在中国举办此活动,上一次是2009年北京. 我第一次參加,感觉收获非常多. 我们知道,PMI考试题库中的考题一直在不断地完好中,这就须要不断地淘汰旧题目,引入新题目,这次活动的目的就是补充新考题.整个活动分2个主题:评审已存在的题目和加入新的题目. 第一天下午主要是PMI协会的一些大佬演讲. 第二天工作内容是评审以往的考题.部分考题来自题库中不计入考试分数的题目,部分来自其它PMI