《 rh124-exam》linux练习

考试信息:

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

[[email protected] ~]# passwd

Changing password for user root.

New password:

Retype new password:

passwd: all authentication tokens updated successfully.

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

[[email protected] ~]# hostnamectl set-hostname station.domain19.example.com

[[email protected] ~]# hostname

station.domain19.example.com

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

[[email protected] ~]# groupadd -g 600 sysadms

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

[[email protected] ~]# useradd -u 2013 tommy

[[email protected] ~]# id tommy

uid=2013(tommy) gid=2013(tommy) groups=2013(tommy)

[[email protected] ~]# passwd tommy

Changing password for user tommy.

New password:

BAD PASSWORD: The password is shorter than 8 characters

Retype new password:

passwd: all authentication tokens updated successfully.

[[email protected] ~]#

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

[[email protected] ~]# cat /etc/shells            ##通过该命令可以查看该系统可支持的shell类型

/bin/sh

/bin/bash

/sbin/nologin

/usr/bin/sh

/usr/bin/bash

/usr/sbin/nologin

/bin/tcsh

/bin/csh

[[email protected] ~]# useradd -s /sbin/nologin Jimmy

[[email protected] ~]# passwd Jimmy

Changing password for user Jimmy.

New password:

BAD PASSWORD: The password is shorter than 8 characters

Retype new password:

passwd: all authentication tokens updated successfully.

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

[[email protected] ~]# useradd -g sysadms natasha

[[email protected] ~]# useradd -g sysadms harry

[[email protected] ~]# passwd natasha

Changing password for user natasha.

New password:

BAD PASSWORD: The password is shorter than 8 characters

Retype new password:

passwd: all authentication tokens updated successfully.

[[email protected] ~]# passwd harry

Changing password for user harry.

New password:

BAD PASSWORD: The password is shorter than 8 characters

Retype new password:

passwd: all authentication tokens updated successfully.

7在/home 目录中创建目录 materials,配置该目录的所属组为 sysadms,要求隶属于 sysadms 组当中的成员对该目录有读写权限,在

sysadms目录当中创建的文件或者文件夹,其所属组也

自动继承 sysadms 的所属组

[[email protected] ~]# mkdir /home/materials

[[email protected] ~]# chgrp sysadms /home/materials -R

[[email protected] ~]# chmod g+rw /home/materials

[[email protected] ~]# chmod g+s /home/materials

8拷贝/etc/fstab 文件到/var/tmp 目录中,设置以下需求

[[email protected] ~]# cp /etc/fstab /var/tmp/

使 harry 用户对该文件无任何权限

[[email protected] ~]# setfacl -m u:harry: /var/tmp/fstab

setfacl: Option -m incomplete

使 natasha 对该文件有完全控制权限

[[email protected] ~]# setfacl -m u:natasha:rwx /var/tmp/fstab

配置文件所属用户为 root

[[email protected] ~]# chown root /var/tmp/fstab

配置文件所属组为 root

[[email protected] ~]# chgrp root /var/tmp/fstab

其他所有用户对文件拥有读权限

[[email protected] ~]# chmod o+r /var/tmp/fstab

其他所有用户对文件没有执行权限

[[email protected] ~]# chmod o-x /var/tmp/fstab

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

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

3 server 172.25.19.254 iburst

[[email protected] ~]# systemctl restart chronyd.service

##客户端不用关闭防火墙,服务端必须要关防火墙

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

11在文件/usr/share/mime/packages/freedesktop.org.xml 中查找所有包含 ich 的行,将找

出的行按照先后顺序拷贝到/root/lines

文件中,/root/lines 文件不包含空格,并且其中行的内容是源文件/usr/share/mime/packages/freedesktop.org.xml 原始行的

准确副本

时间: 2024-11-17 18:09:07

《 rh124-exam》linux练习的相关文章

红帽认证最详细,最权威的总结大全

RHEL6 的RHCE考试分为RHCSA(RHCT)和RHCE两部分 考试时间: RHCSA 2个半小时总分300分,210分pass RHCE 2个小时 总分300分,210分pass 考试环境:考试为上机考试,在一台真实机系统中,已经预安装好虚拟机,要求所有的考试题必须在虚拟机中完成. 网络必须配置好,如果从网络不能被访问到,则考试也不能通过. 在iptables配置中如需要拒绝访问,请使用REJECT (考试过程中iptables默认策略均为ACCEPT) 考试过程中,可以选择语言环境为繁

RH124 Chapter 3 Getting Help in Red Hat Enterprise Linux

获取帮助方法 whatis 命令  显示它能干什么   (passwd date ls lvs lvcreate)  (whatis数据库不全,使用‘makedb’更新) 命令 --help      显示命令怎么用(seq -w 1 10)(passwd)  (--help有些可以使用-h) 按一定格式显示时间 date +"%Y-%m-%d %H:%M:%S" date +"%F %T" date 122101012012    设置时间 hwclock   -

RH124 章5 管理本地Linux用户和组 笔记

不能无限使用su,调图形界面会报错 如果某普通用户需要执行管理员权限的命令sudo 让普通用户执行特权用户才能执行的命令,需提前配置 /etc/sudoersvisudo允许wheel组中用户执行所有命令usermod -a -G wheel user1 #需重新载入环境变量后才可使用sudotail /var/log/secure #记录sudo相关信息 /etc/login.defs #创建用户时默认信息 useradd -a -G 如果只-G,则为唯一的附加组指定具有排他性附加组列表,只属

Red Hat Linux认证

想系统的学习一下Linux,了解了一些关于Red Hat Linux认证的信息.整理如下. 当前比较常见的是RHCE认证,即Red Hat Certified Engineer.最高级别的是RHCA Architect.据闻RHCA全国只有数百名. RHCE的官方培训设计是12天.广州2016年的培训价格是7,800.(含认证费) RHCE的课程大纲如下 RH124 红帽系统管理 I 红帽系统管理I (RH124) 是针对不了解Linux并需要核心红帽企业 Linux技能的IT 专业人员而设计的

linux文本处理工具

linux文本处理工具 1.Linux 文件系统上的特殊权限: SUID     SGID   Sticky 进程的安全上下文:(1)任何一个可执行程序文件能不能启动为进程,取决发起者对程序文件是否拥有执行去权限 (2)启动为进程后,其属主为发起者,属组为发起者所属的组 (3)进程访文件的权限,取决于进程的发起者 (a)  进程的发起者,同文件的属主:则应用文件属主权限                                            (b)  进程的发起者,属于文件属组:则

How to configure samba server in Linux     Print

Most Linux systems are the part of networks that also run Windows systems. Using Linux Samba servers, your Linux and Windows systems can share directories and printers. This is most use full situation where your clients are window native and you want

How to configure dns slave server in Linux

A DNS server, or name server, is used to resolve an IP address to a hostname or vice versa.You can set up four different types of DNS servers: A master DNS server for your domain(s), which stores authoritative records for your domain. A slave DNS ser

RH124 Chapter 2 Managing Files From the Command Line

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

linux系统调用函数

Linux应用编程学习笔记                                 周学伟 一.系统调用文件编程   1.文件打开函数 /***************************************************************************** 函数名:open 函数原型:int open(const char * pathname, int flags) int open(const char * pathname,int  flags,

Linux -- crontab

*manpages*File: *manpages*,  Node: crontab,  Up: (dir) CRONTAB(1)                  General Commands Manual                 CRONTAB(1) NAME       crontab - maintain crontab files for individual users (Vixie Cron) SYNOPSIS       crontab [ -u user ] fil