考试信息:
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