龙空技术网

【RHCSA考试】EX200试题操作及详解系列(下)

神小威 67

前言:

如今看官们对“netaliases”大体比较注重,看官们都需要了解一些“netaliases”的相关知识。那么小编在网上汇集了一些有关“netaliases””的相关内容,希望你们能喜欢,咱们一起来了解一下吧!

12、RHCSA试题EX200详解(十二)配置 autofs题目要求:配置 autofsl 配置 autofs,实现用户 ldapuser0 登录后有家目录 /home/guests/ldapuser0l 家目录在 classroom.example.com 上被 NFS 共享为 /home/guests/ldapuser0l 并且要求用户登录后,具有读写权限l 要求使用 NFS3 挂载知识点小贴士:

showmount命令用于查询NFS服务器的相关信息

# showmount --help

  Usage: showmount [-adehv]

  [--all] [--directories] [--exports]

  [--no-headers] [--help] [--version] [host]

  -a或--all

  以 host:dir 这样的格式来显示客户主机名和挂载点目录。

  -d或--directories

  仅显示被客户挂载的目录名。

  -e或--exports

  显示NFS服务器的输出清单。

  -h或--help

  显示帮助信息。

  -v或--version

  显示版本信。

  --no-headers

  禁止输出描述头部信息。

  显示NFS客户端信息

getent 用来查看系统的数据库中的相关记录

用法: getent [选项...] 数据库 [键 ...]

Get entries from administrative database.

-s, --service=CONFIG 要使用的服务配置

-?, --help 给出该系统求助列表

--usage 给出简要的用法信息

-V, --version 打印程序版本号

长选项的强制或可选参数对对应的短选项也是强制或可选的。

支持的数据库:

ahosts ahostsv4 ahostsv6 aliases ethers group gshadow hosts netgroup

networks passwd protocols rpc services shadow

解题步骤:

(1)显示共享服务:

[root@desktop0 ~]# showmount -e classroom.example.com

Export list for classroom.example.com:

/home/guests 172.25.0.0/255.255.0.0

(2)获取ldapuser0的密码:

[root@desktop0 ~]# getent passwd ldapuser0

ldapuser0:*:1700:1700:LDAP Test User 0:/home/guests/ldapuser0:/bin/bash

(3)安装服务包:

[root@desktop0 ~]# yum list autofs

Loaded plugins: langpacks

Available Packages

autofs.x86_64 1:5.0.7-40.el7 classroom.example.com_content_rhel7.0_x86_64_dvd

[root@desktop0 ~]# yum -y install autofs

Loaded plugins: langpacks

Resolving Dependencies

--> Running transaction check

---> Package autofs.x86_64 1:5.0.7-40.el7 will be installed

--> Processing Dependency: libhesiod.so.0()(64bit) for package: 1:autofs-5.0.7-40.el7.x86_64

--> Running transaction check

---> Package hesiod.x86_64 0:3.2.1-3.el7 will be installed

--> Finished Dependency Resolution

Dependencies Resolved

========================================================================

Package

Arch Version

Repository Size

========================================================================

Installing:

autofs x86_64 1:5.0.7-40.el7

classroom.example.com_content_rhel7.0_x86_64_dvd 550 k

Installing for dependencies:

hesiod x86_64 3.2.1-3.el7

classroom.example.com_content_rhel7.0_x86_64_dvd 30 k

Transaction Summary

========================================================================

Install 1 Package (+1 Dependent package)

Total download size: 579 k

Installed size: 3.6 M

Downloading packages:

(1/2): hesiod-3.2.1-3.el7.x86_64.rpm | 30 kB 00:00

(2/2): autofs-5.0.7-40.el7.x86_64.rpm | 550 kB 00:00

------------------------------------------------------------------------

Total 1.5 MB/s | 579 kB 00:00

Running transaction check

Running transaction test

Transaction test succeeded

Running transaction

Installing : hesiod-3.2.1-3.el7.x86_64 1/2

Installing : 1:autofs-5.0.7-40.el7.x86_64 2/2

Verifying : hesiod-3.2.1-3.el7.x86_64 1/2

Verifying : 1:autofs-5.0.7-40.el7.x86_64 2/2

Installed:

autofs.x86_64 1:5.0.7-40.el7

Dependency Installed:

hesiod.x86_64 0:3.2.1-3.el7

Complete!

(4)修改配置文件:

[root@desktop0 ~]# vim /etc/auto.master

……

/home/guests /etc/auto.ldap

[root@desktop0 ~]# vim /etc/auto.ldap

* -rw,vers=3,soft,sync,intr classroom.example.com:/home/guests/&

(5)设置并重启服务:

[root@desktop0 ~]# systemctl restart autofs

[root@desktop0 ~]# systemctl enable autofs

ln -s '/usr/lib/systemd/system/autofs.service' '/etc/systemd/system/multi-user.target.wants/autofs.service'

(6)验证:

[root@desktop0 ~]# ssh ldapuser0@localhost

ldapuser0@localhost's password:password

[ldapuser0@desktopX~]$ mount | grep classroom classroom.example.com:/home/guests/ldapuser1 on /home/guests/ldapuser1 type nfs (rw,relatime,vers=3,...)

[ldapuser1@desktopX ~]$ <CTRL+D>

13、RHCSA试题EX200详解(十三)创建用户,用户 ID 及密码题目要求:创建用户,用户 ID 及密码l 创建用户 fred,用户ID为 1111l 密码为 fred1111解题步骤:

(1)添加用户名:

[root@desktop0 ~]# useradd -u 1111 fred

(2)设置密码:

[root@desktop0 ~]# echo fred1111 | passwd --stdin fred

Changing password for user fred.

passwd: all authentication tokens updated successfully.

(3)验证:

[root@desktop0 ~]# ssh fred@localhost

fred@localhost's password: fred1111

[fred@desktop0 ~]$

[fred@desktop0 ~]$

[fred@desktop0 ~]$ logout

Connection to localhost closed.

14、RHCSA试题EX200详解(十四)创建 SWAP 分区题目要求:创建 SWAP 分区l 创建一个 2G 的交换分区,并开机自动生效,但不影响原有的 swap 分区。解题步骤:

(1)查看磁盘分区状态:

[root@desktop0 ~]# lsblk

NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT

vda 252:0 0 20G 0 disk

├─vda1 252:1 0 10G 0 part /

├─vda2 252:2 0 500M 0 part

│ └─vg1-lv1 253:0 0 300M 0 lvm /mnt/data

├─vda3 252:3 0 500M 0 part

├─vda4 252:4 0 1K 0 part

└─vda5 252:5 0 111M 0 part

(2)格式化分区:

[root@desktop0 ~]# fdisk /dev/vda

Welcome to fdisk (util-linux 2.23.2).

Changes will remain in memory only, until you decide to write them.

Be careful before using the write command.

Command (m for help): n

All primary partitions are in use

Adding logical partition 6

First sector (23250944-41943039, default 23250944):

Using default value 23250944

Last sector, +sectors or +size{K,M,G} (23250944-41943039, default 41943039): +2G

Partition 6 of type Linux and of size 2 GiB is set

Command (m for help): t

Partition number (1-6, default 6):

Hex code (type L to list all codes): L

0 Empty 24 NEC DOS 81 Minix / old Lin bf Solaris

1 FAT12 27 Hidden NTFS Win 82 Linux swap / So c1 DRDOS/sec (FAT-

2 XENIX root 39 Plan 9 83 Linux c4 DRDOS/sec (FAT-

3 XENIX usr 3c PartitionMagic 84 OS/2 hidden C: c6 DRDOS/sec (FAT-

4 FAT16 <32M 40 Venix 80286 85 Linux extended c7 Syrinx

5 Extended 41 PPC PReP Boot 86 NTFS volume set da Non-FS data

6 FAT16 42 SFS 87 NTFS volume set db CP/M / CTOS / .

7 HPFS/NTFS/exFAT 4d QNX4.x 88 Linux plaintext de Dell Utility

8 AIX 4e QNX4.x 2nd part 8e Linux LVM df BootIt

9 AIX bootable 4f QNX4.x 3rd part 93 Amoeba e1 DOS access

a OS/2 Boot Manag 50 OnTrack DM 94 Amoeba BBT e3 DOS R/O

b W95 FAT32 51 OnTrack DM6 Aux 9f BSD/OS e4 SpeedStor

c W95 FAT32 (LBA) 52 CP/M a0 IBM Thinkpad hi eb BeOS fs

e W95 FAT16 (LBA) 53 OnTrack DM6 Aux a5 FreeBSD ee GPT

f W95 Ext'd (LBA) 54 OnTrackDM6 a6 OpenBSD ef EFI (FAT-12/16/

10 OPUS 55 EZ-Drive a7 NeXTSTEP f0 Linux/PA-RISC b

11 Hidden FAT12 56 Golden Bow a8 Darwin UFS f1 SpeedStor

12 Compaq diagnost 5c Priam Edisk a9 NetBSD f4 SpeedStor

14 Hidden FAT16 <3 61 SpeedStor ab Darwin boot f2 DOS secondary

16 Hidden FAT16 63 GNU HURD or Sys af HFS / HFS+ fb VMware VMFS

17 Hidden HPFS/NTF 64 Novell Netware b7 BSDI fs fc VMware VMKCORE

18 AST SmartSleep 65 Novell Netware b8 BSDI swap fd Linux raid auto

1b Hidden W95 FAT3 70 DiskSecure Mult bb Boot Wizard hid fe LANstep

1c Hidden W95 FAT3 75 PC/IX be Solaris boot ff BBT

1e Hidden W95 FAT1 80 Old Minix

Hex code (type L to list all codes): 82

Changed type of partition 'Linux' to 'Linux swap / Solaris'

Command (m for help): w

The partition table has been altered!

Calling ioctl() to re-read partition table.

WARNING: Re-reading the partition table failed with error 16: Device or resource busy.

The kernel still uses the old table. The new table will be used at

the next reboot or after you run partprobe(8) or kpartx(8)

Syncing disks.

[root@desktop0 ~]# partprobe

[root@desktop0 ~]# lsblk

NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT

vda 252:0 0 20G 0 disk

├─vda1 252:1 0 10G 0 part /

├─vda2 252:2 0 500M 0 part

│ └─vg1-lv1 253:0 0 300M 0 lvm /mnt/data

├─vda3 252:3 0 500M 0 part

├─vda4 252:4 0 1K 0 part

├─vda5 252:5 0 111M 0 part

└─vda6 252:6 0 2G 0 part

[root@desktop0 ~]# mkswap /dev/vda6

Setting up swapspace version 1, size = 2097148 KiB

no label, UUID=5d605402-95c7-48a5-9de6-3fa307207d9b

[root@desktop0 ~]# vim /etc/fstab

fstab文件

/dev/vda6 swap swap defaults 0 0

[root@desktop0 ~]# swapon -a

[root@desktop0 ~]# swapon -s

Filename Type Size Used Priority

/dev/vda6 partition 2097148 0 -1

15、RHCSA试题EX200详解(十五)查找文件题目要求:查找文件l 找出 harry 用户拥有的文件,拷贝到目录 /opt/finddir解题步骤:

(1)查看目录状态,无:

[root@desktop0 ~]# ls /opt/finddir

ls: cannot access /opt/finddir: No such file or directory

(2)创建目录:

[root@desktop0 ~]# mkdir /opt/finddir

(3)按题意拷贝harry用户资料到该目录:

[root@desktop0 ~]# find / -user harry -exec cp -a {} /opt/finddir \;

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

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

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

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

cp: cannot overwrite non-directory ‘/opt/finddir/harry’ with directory ‘/home/harry’

cp: ‘/opt/finddir/harry’ and ‘/opt/finddir/harry’ are the same file

cp: ‘/opt/finddir/.bash_logout’ and ‘/opt/finddir/.bash_logout’ are the same file

cp: ‘/opt/finddir/.bash_profile’ and ‘/opt/finddir/.bash_profile’ are the same file

cp: ‘/opt/finddir/.bashrc’ and ‘/opt/finddir/.bashrc’ are the same file

cp: ‘/opt/finddir/.mozilla’ and ‘/opt/finddir/.mozilla’ are the same file

cp: ‘/opt/finddir/extensions’ and ‘/opt/finddir/extensions’ are the same file

cp: ‘/opt/finddir/plugins’ and ‘/opt/finddir/plugins’ are the same file

cp: ‘/opt/finddir/.config’ and ‘/opt/finddir/.config’ are the same file

cp: ‘/opt/finddir/gnome-initial-setup-done’ and ‘/opt/finddir/gnome-initial-setup-done’ are the same file

cp: ‘/opt/finddir/monitors.xml’ and ‘/opt/finddir/monitors.xml’ are the same file

cp: ‘/opt/finddir/abrt’ and ‘/opt/finddir/abrt’ are the same file

cp: ‘/opt/finddir/.cache’ and ‘/opt/finddir/.cache’ are the same file

cp: ‘/opt/finddir/lastnotification’ and ‘/opt/finddir/lastnotification’ are the same file

16、RHCSA试题EX200详解(十六)过滤文件内容题目要求:过滤文件内容l 从文件 /usr/share/dict/words 中找出包含 seismic 的行,写入到文件 /root/lines.txt 中,要求顺序与原文件中一致,并没有空行知识点小贴士:

grep -v '^$' :命令的作用是过滤空白符

linux中“grep -v '^$' /etc/rsyslog.conf | grep -v '^#'”是什么意思?

1、-v是grep排除的参数,例如查询除了包含ABC的行,例如cat a.txt|grep -v 'ABC'

2、^代表行首,$代表行尾。 ^$是空行的意思

3、^#表示首字母为#的行,linux里的文件,#号开头一般都是注释内容

4、grep -v '^$' /etc/rsyslog.conf | grep -v '^#'

查询/etc/rsyslog.conf文件,但是不包含空行和注释行。

解题步骤:

(1)执行命令:

[root@desktop0 ~]# grep seismic /usr/share/dict/words | grep -v ^$ > /root/lines.txt

(2)验证:

[root@desktop0 ~]# cat /root/lines.txt

seismic

httpd seismic

http seismic

[root@desktop0 ~]# grep seismic /usr/share/dict/words

seismic

httpd seismic

http seismic

17、RHCSA试题EX200详解(十七)创建一个归档题目要求:创建一个归档l 将 /usr/local 中的所有文件归档到 /root/backup.tar.bz2, 要求压缩类型为 gzip知识点小贴士:

Linux下的tar压缩解压缩命令详解

tar

-c: 建立压缩档案

-x:解压

-t:查看内容

-r:向压缩归档文件末尾追加文件

-u:更新原压缩包中的文件

这五个是独立的命令,压缩解压都要用到其中一个,可以和别的命令连用但只能用其中一个。下面的参数是根据需要在压缩或解压档案时可选的。

-z:有gzip属性的

-j:有bz2属性的

-Z:有compress属性的

-v:显示所有过程

-O:将文件解开到标准输出

下面的参数-f是必须的

-f: 使用档案名字,切记,这个参数是最后一个参数,后面只能接档案名。

# tar -cf all.tar *.jpg

这条命令是将所有.jpg的文件打成一个名为all.tar的包。-c是表示产生新的包,-f指定包的文件名。

# tar -rf all.tar *.gif

这条命令是将所有.gif的文件增加到all.tar的包里面去。-r是表示增加文件的意思。

# tar -uf all.tar logo.gif

这条命令是更新原来tar包all.tar中logo.gif文件,-u是表示更新文件的意思。

# tar -tf all.tar

这条命令是列出all.tar包中所有文件,-t是列出文件的意思

# tar -xf all.tar

这条命令是解出all.tar包中所有文件,-t是解开的意思

解题步骤:

[root@desktop0 ~]# tar -czvf /root/backup.tar.gzip /usr/local/

tar: Removing leading `/' from member names

/usr/local/

/usr/local/bin/

/usr/local/bin/lab

/usr/local/etc/

/usr/local/games/

/usr/local/include/

/usr/local/lib/

/usr/local/lib64/

/usr/local/libexec/

/usr/local/sbin/

/usr/local/sbin/rhcsa_setup

/usr/local/share/

/usr/local/share/applications/

/usr/local/share/applications/mimeinfo.cache

/usr/local/share/info/

/usr/local/share/man/

/usr/local/share/man/man1/

/usr/local/share/man/man1x/

/usr/local/share/man/man2/

/usr/local/share/man/man2x/

/usr/local/share/man/man3/

/usr/local/share/man/man3x/

/usr/local/share/man/man4/

/usr/local/share/man/man4x/

/usr/local/share/man/man5/

/usr/local/share/man/man5x/

/usr/local/share/man/man6/

/usr/local/share/man/man6x/

/usr/local/share/man/man7/

/usr/local/share/man/man7x/

/usr/local/share/man/man8/

/usr/local/share/man/man8x/

/usr/local/share/man/man9/

/usr/local/share/man/man9x/

/usr/local/share/man/mann/

/usr/local/src/

18、RHCSA试题EX200详解(十八)创建逻辑卷题目要求:创建逻辑卷l 创建一个逻辑卷 databasel 来自卷组 datastoragel 卷组每个 extends 是 16MB,database 是 50 个extendsl 格式化成 vfat 文件系统,并开机自动挂载到 /mnt/measure 下解题步骤:

(1)查看分区状态:

[root@desktop0 ~]# lsblk

NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT

vda 252:0 0 20G 0 disk

├─vda1 252:1 0 10G 0 part /

├─vda2 252:2 0 500M 0 part

│ └─vg1-lv1 253:0 0 300M 0 lvm /mnt/data

├─vda3 252:3 0 500M 0 part

├─vda4 252:4 0 1K 0 part

├─vda5 252:5 0 111M 0 part

└─vda6 252:6 0 2G 0 part [SWAP]

(2)格式化分区:

[root@desktop0 ~]# fdisk /dev/vda

Welcome to fdisk (util-linux 2.23.2).

Changes will remain in memory only, until you decide to write them.

Be careful before using the write command.

Command (m for help): n

All primary partitions are in use

Adding logical partition 7

First sector (27447296-41943039, default 27447296):

Using default value 27447296

Last sector, +sectors or +size{K,M,G} (27447296-41943039, default 41943039):

Using default value 41943039

Partition 7 of type Linux and of size 6.9 GiB is set

Command (m for help): t

Partition number (1-7, default 7):

Hex code (type L to list all codes): L

0 Empty 24 NEC DOS 81 Minix / old Lin bf Solaris

1 FAT12 27 Hidden NTFS Win 82 Linux swap / So c1 DRDOS/sec (FAT-

2 XENIX root 39 Plan 9 83 Linux c4 DRDOS/sec (FAT-

3 XENIX usr 3c PartitionMagic 84 OS/2 hidden C: c6 DRDOS/sec (FAT-

4 FAT16 <32M 40 Venix 80286 85 Linux extended c7 Syrinx

5 Extended 41 PPC PReP Boot 86 NTFS volume set da Non-FS data

6 FAT16 42 SFS 87 NTFS volume set db CP/M / CTOS / .

7 HPFS/NTFS/exFAT 4d QNX4.x 88 Linux plaintext de Dell Utility

8 AIX 4e QNX4.x 2nd part 8e Linux LVM df BootIt

9 AIX bootable 4f QNX4.x 3rd part 93 Amoeba e1 DOS access

a OS/2 Boot Manag 50 OnTrack DM 94 Amoeba BBT e3 DOS R/O

b W95 FAT32 51 OnTrack DM6 Aux 9f BSD/OS e4 SpeedStor

c W95 FAT32 (LBA) 52 CP/M a0 IBM Thinkpad hi eb BeOS fs

e W95 FAT16 (LBA) 53 OnTrack DM6 Aux a5 FreeBSD ee GPT

f W95 Ext'd (LBA) 54 OnTrackDM6 a6 OpenBSD ef EFI (FAT-12/16/

10 OPUS 55 EZ-Drive a7 NeXTSTEP f0 Linux/PA-RISC b

11 Hidden FAT12 56 Golden Bow a8 Darwin UFS f1 SpeedStor

12 Compaq diagnost 5c Priam Edisk a9 NetBSD f4 SpeedStor

14 Hidden FAT16 <3 61 SpeedStor ab Darwin boot f2 DOS secondary

16 Hidden FAT16 63 GNU HURD or Sys af HFS / HFS+ fb VMware VMFS

17 Hidden HPFS/NTF 64 Novell Netware b7 BSDI fs fc VMware VMKCORE

18 AST SmartSleep 65 Novell Netware b8 BSDI swap fd Linux raid auto

1b Hidden W95 FAT3 70 DiskSecure Mult bb Boot Wizard hid fe LANstep

1c Hidden W95 FAT3 75 PC/IX be Solaris boot ff BBT

1e Hidden W95 FAT1 80 Old Minix

Hex code (type L to list all codes): 8e

Changed type of partition 'Linux' to 'Linux LVM'

Command (m for help): w

The partition table has been altered!

Calling ioctl() to re-read partition table.

WARNING: Re-reading the partition table failed with error 16: Device or resource busy.

The kernel still uses the old table. The new table will be used at

the next reboot or after you run partprobe(8) or kpartx(8)

Syncing disks.

[root@desktop0 ~]# partprobe

[root@desktop0 ~]# lsblk

NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT

vda 252:0 0 20G 0 disk

├─vda1 252:1 0 10G 0 part /

├─vda2 252:2 0 500M 0 part

│ └─vg1-lv1 253:0 0 300M 0 lvm /mnt/data

├─vda3 252:3 0 500M 0 part

├─vda4 252:4 0 1K 0 part

├─vda5 252:5 0 111M 0 part

├─vda6 252:6 0 2G 0 part [SWAP]

└─vda7 252:7 0 6.9G 0 part

[root@desktop0 ~]# pvcreate /dev/vda7

Physical volume "/dev/vda7" successfully created

[root@desktop0 ~]# vgcreate -s 16M datastorage /dev/vda7

Volume group "datastorage" successfully created

[root@desktop0 ~]# lvcreate -l 50 -n database datastorage

Logical volume "database" created

[root@desktop0 ~]# mkfs.vfat /dev/datastorage/database

mkfs.fat 3.0.20 (12 Jun 2013)

unable to get drive geometry, using default 255/63

[root@desktop0 ~]# vim /etc/fstab

dev/datastorage/database /mnt/measure vfat defaults 1 2

[root@desktop0 ~]# mkdir /mnt/measure

[root@desktop0 ~]# mount -a

[root@desktop0 ~]# df -h /mnt/measure/

Filesystem Size Used Avail Use% Mounted on

/dev/mapper/datastorage-database 799M 4.0K 799M 1% /mnt/measure

[root@desktop0 ~]# vgdisplay datastorage |grep -i 'pe'

Open LV 1

PE Size 16.00 MiB

Total PE 442

Alloc PE / Size 50 / 800.00 MiB

Free PE / Size 392 / 6.12 GiB

测试验证:

在foundation主机上执行:exam-grade,对上述操作进行验证:

[root@foundation0 ~]# exam-grade

INFO: [foundation] - import function

Syncing desktop0

Are you sure you want to poweroff desktop? (y/n) y

Powering off desktop..

Starting desktop.

· Waiting for desktop0 to become available.................... SUCCESS

===================================================================

PASS INIT - root password = "redhat"

PASS INIT - /etc/hostname: exists

PASS INIT - IP=172.25.0.10/24, GATEWAY=172.25.0.254, DNS=172.25.254.254

PASS SELINUX - getenforce: Permissive

PASS SELINUX - config: permissive

PASS REPO - url=

PASS LVM - extend: 300M

PASS USERADD - groupadd sysadm: exists

PASS USERADD - useradd harry,natasha,tom: exists

PASS USERADD - harry,natasha member Group sysadm: exists

PASS USERADD - tom shell: /sbin/nologin

PASS USERADD - harry,natasha,tom password = redhat

PASS PERMISSION - /var/tmp/fstab: exists

PASS PERMISSION - /var/tmp/fstab owner: root

PASS PERMISSION - chmod: a-x

PASS PERMISSION - harry: +rw

PASS PERMISSION - natasha: ---

PASS CRON - list: 23 14 * * * /bin/echo hello

PASS SGID - chgrp: sysadm

PASS SGID - g+rw,o=-

PASS SGID - sgid: -s-

PASS KERNEL - menuentry: exists

PASS KERNEL - menuentry: new

PASS LDAP - account,authentication: true

PASS LDAP - example-ca.crt: exists

PASS NTP - server: classroom.example.com

PASS AUTOFS - target: /home/guests/ldapuserX

PASS AUTOFS - source: classroom.example.com:/home/guests/ldapuserX

PASS AUTOFS - permission: rw

PASS AUTOFS - vers=3

PASS USERMOD - uid=1111, username=fred

PASS USERMOD - fred password = fred1111

PASS SWAP - size: 2GB

PASS FIND - result: true

PASS GREP - result: true

PASS TAR - result: true

PASS LVM - lvcreate database: exists

PASS LVM - vgcreate datastorage: exists

PASS LVM - PE Size=16MiB, Alloc PE=50

PASS LVM - filesystem=vfat, fstab: /mnt/measure

===================================================================

The results of your EX200: PASS Your score: 300

测试验证通过(300分 PASS)

标签: #netaliases