EX200日本語試験無料問題集「RedHat Red Hat Certified System Administrator - RHCSA (EX200日本語版) 認定」
パート1(Node1サーバー上)
タスク6 [Linuxファイルシステムへのアクセス]
ファイル/usr/share/mime/packages/freedesktop.org.xmlで、文字列ichを含むすべての行を検索します。
これらの行のコピーをファイル/ root / linesに元の順序で配置します。
/ root / linesには空の行が含まれていてはならず、すべての行は元の行の正確なコピーである必要があります。
/usr/share/mime/packages/freedesktop.org.xml
タスク6 [Linuxファイルシステムへのアクセス]
ファイル/usr/share/mime/packages/freedesktop.org.xmlで、文字列ichを含むすべての行を検索します。
これらの行のコピーをファイル/ root / linesに元の順序で配置します。
/ root / linesには空の行が含まれていてはならず、すべての行は元の行の正確なコピーである必要があります。
/usr/share/mime/packages/freedesktop.org.xml
正解:
* [root@node1 ~]# cat /usr/share/mime/packages/freedesktop.org.xml | grep ich > /root/lines
[root@node1 ~]# cat /root/lines
<comment xml:lang="ast">Ficheru codificau en BinHex de Machintosh</comment>
<comment xml:lang="fr">fichier code Macintosh BinHex</comment>
<comment xml:lang="gl">ficheiro de Macintosh codificado con BinHex</comment>
<comment xml:lang="oc">fichier encodat Macintosh BinHex</comment>
<comment xml:lang="pt">ficheiro codificado em BinHex de Macintosh</comment>
<comment xml:lang="fr">fichier boite aux lettres</comment>
[root@node1 ~]# cat /root/lines
<comment xml:lang="ast">Ficheru codificau en BinHex de Machintosh</comment>
<comment xml:lang="fr">fichier code Macintosh BinHex</comment>
<comment xml:lang="gl">ficheiro de Macintosh codificado con BinHex</comment>
<comment xml:lang="oc">fichier encodat Macintosh BinHex</comment>
<comment xml:lang="pt">ficheiro codificado em BinHex de Macintosh</comment>
<comment xml:lang="fr">fichier boite aux lettres</comment>
論理ボリュームvoとそのファイルシステムのサイズを290 MBに変更します。ファイルシステムの内容が損なわれていないことを確認してください。
注:パーティションが要求されるサイズとまったく同じになることはめったにないため、260 MBから320 MiBの範囲内のサイズが許容されます。
注:パーティションが要求されるサイズとまったく同じになることはめったにないため、260 MBから320 MiBの範囲内のサイズが許容されます。
正解:
df -hT
lvextend -L +100M /dev/vg0/vo
lvscan
xfs_growfs /home/ // home is LVM mounted directory
Note: This step is only need to do in our practice environment, you do not need to do in the real exam resize2fs /dev/vg0/vo // Use this comand to update in the real exam df -hT OR e2fsck -f/dev/vg0/vo umount /home resize2fs /dev/vg0/vo required partition capacity such as 100M lvreduce -l 100M /dev/vg0/vo mount /dev/vg0/vo /home df -Ht
lvextend -L +100M /dev/vg0/vo
lvscan
xfs_growfs /home/ // home is LVM mounted directory
Note: This step is only need to do in our practice environment, you do not need to do in the real exam resize2fs /dev/vg0/vo // Use this comand to update in the real exam df -hT OR e2fsck -f/dev/vg0/vo umount /home resize2fs /dev/vg0/vo required partition capacity such as 100M lvreduce -l 100M /dev/vg0/vo mount /dev/vg0/vo /home df -Ht
サイズが100MBの新しい論理パーティションを追加し、新しいパーティションのマウントポイントとなるデータを作成します。
正解:
1. Use fdisk /dev/hda-> To create new partition.
2. Type n ->For New partitions
3. It will ask for Logical or Primary Partitions. Press l for logical.
4. It will ask for the Starting Cylinder: Use the Default by pressing Enter Keys
5. Type the size: +100M you can specify either Last cylinder of size here.
6. Press P to verify the partitions lists and remember the partitions name.
7. Press w to write on partitions table.
8. Either Reboot or use partprobe command.
9. Use mkfs -t ext3 /dev/hda?
OR
1. mke2fs -j /dev/hda? ->To create ext3 filesystem.
2. vi /etc/fstab
3. Write:
/dev/hda? /data ext3 defaults 0 0
4. Verify by mounting on current sessions also:
mount /dev/hda? /data
2. Type n ->For New partitions
3. It will ask for Logical or Primary Partitions. Press l for logical.
4. It will ask for the Starting Cylinder: Use the Default by pressing Enter Keys
5. Type the size: +100M you can specify either Last cylinder of size here.
6. Press P to verify the partitions lists and remember the partitions name.
7. Press w to write on partitions table.
8. Either Reboot or use partprobe command.
9. Use mkfs -t ext3 /dev/hda?
OR
1. mke2fs -j /dev/hda? ->To create ext3 filesystem.
2. vi /etc/fstab
3. Write:
/dev/hda? /data ext3 defaults 0 0
4. Verify by mounting on current sessions also:
mount /dev/hda? /data
インストール
http://server.domain11.example.com/pub/updatesからの適切なカーネル更新。
次の基準も満たす必要があります。
更新されたカーネルは、システムが再起動されたときのデフォルトのカーネルです
元のカーネルはシステム上で利用可能でブート可能のままです
http://server.domain11.example.com/pub/updatesからの適切なカーネル更新。
次の基準も満たす必要があります。
更新されたカーネルは、システムが再起動されたときのデフォルトのカーネルです
元のカーネルはシステム上で利用可能でブート可能のままです
正解:
ftp server.domain11.example.com Anonymous login
ftp> cd /pub/updates ftp> ls
ftp> mget kernel* ftp> bye
rpm -ivh kernel*
vim /etc/grub.conf
Check the updatted kernel is the first kernel and the orginal kernel remains available. set default=0 wq!
ftp> cd /pub/updates ftp> ls
ftp> mget kernel* ftp> bye
rpm -ivh kernel*
vim /etc/grub.conf
Check the updatted kernel is the first kernel and the orginal kernel remains available. set default=0 wq!
次の要件に従って新しい論理ボリュームを作成します。
論理ボリュームはdatabaseという名前で、データストアボリュームグループに属し、サイズは50エクステントです。
データストアボリュームグループの論理ボリュームのエクステントサイズは16 MBである必要があります。
ext3ファイルシステムで新しい論理ボリュームをフォーマットします。
論理ボリュームは、システムの起動時に/ mnt / databaseの下に自動的にマウントされる必要があります。
論理ボリュームはdatabaseという名前で、データストアボリュームグループに属し、サイズは50エクステントです。
データストアボリュームグループの論理ボリュームのエクステントサイズは16 MBである必要があります。
ext3ファイルシステムで新しい論理ボリュームをフォーマットします。
論理ボリュームは、システムの起動時に/ mnt / databaseの下に自動的にマウントされる必要があります。
正解:
fdisk -cu /dev/vda
partx -a /dev/vda
pvcreate /dev/vdax
vgcreate datastore /dev/vdax -s 16M
lvcreate-l 50 -n database datastore
mkfs.ext3 /dev/datastore/database
mkdir /mnt/database
mount /dev/datastore/database /mnt/database/ df -Th
vi /etc/fstab
/dev/datastore /database /mnt/database/ ext3 defaults 0 0 mount -a
partx -a /dev/vda
pvcreate /dev/vdax
vgcreate datastore /dev/vdax -s 16M
lvcreate-l 50 -n database datastore
mkfs.ext3 /dev/datastore/database
mkdir /mnt/database
mount /dev/datastore/database /mnt/database/ df -Th
vi /etc/fstab
/dev/datastore /database /mnt/database/ ext3 defaults 0 0 mount -a
/ var / tmp / fstabのアクセス許可を構成します
ファイル/ etc / fstabを/ var / tmp / fstabにコピーします。 / var / tmp / fstabの許可を構成して、次のようにします。
ファイル/ var / tmp / fstabの所有者はrootユーザーです。
ファイル/ var / tmp / fstabはグループルートに属します。
ファイル/ var / tmp / fstabは、誰でも実行可能ではありません。
ユーザーnatashaは、/ var / tmp / fstabを読み書きできます。
ユーザーharryは、/ var / tmp / fstabの書き込みも読み取りもできません。
他のすべてのユーザー(現在または将来)は/ var / tmp / fstabを読み取ることができます。
ファイル/ etc / fstabを/ var / tmp / fstabにコピーします。 / var / tmp / fstabの許可を構成して、次のようにします。
ファイル/ var / tmp / fstabの所有者はrootユーザーです。
ファイル/ var / tmp / fstabはグループルートに属します。
ファイル/ var / tmp / fstabは、誰でも実行可能ではありません。
ユーザーnatashaは、/ var / tmp / fstabを読み書きできます。
ユーザーharryは、/ var / tmp / fstabの書き込みも読み取りもできません。
他のすべてのユーザー(現在または将来)は/ var / tmp / fstabを読み取ることができます。
正解:
cp -a /etc/fstab /var/tmp
cd /var/tmp
ls -l
getfacl /var/tmp/fstab
chmod ugo-x /var/tmp/fstab
[ No need to do this, there won't be execute permission for the file by default]
# setfacl -m u:natasha:rw /var/tmp/fstab # setfacl -m u:harry:0 /var/tmp/fstab(zero)
[Read permission will be there for all the users, by default. Check it using ls -l /var/tmp/fstab] Verify by
[ ls -la /var/tmp/fstab]
cd /var/tmp
ls -l
getfacl /var/tmp/fstab
chmod ugo-x /var/tmp/fstab
[ No need to do this, there won't be execute permission for the file by default]
# setfacl -m u:natasha:rw /var/tmp/fstab # setfacl -m u:harry:0 /var/tmp/fstab(zero)
[Read permission will be there for all the users, by default. Check it using ls -l /var/tmp/fstab] Verify by
[ ls -la /var/tmp/fstab]
スワップスペースを作成し、サイズを600 MBに設定し、システムの再起動後に自動的にマウントされるようにします(永久マウント)。
正解:
if=/dev/zero of=/swapfile bs=1M count=600 mkswap /swapfile
/etc/fstab:
/swapfile swap swap defaults 0 0 mount -a
/etc/fstab:
/swapfile swap swap defaults 0 0 mount -a
一部のユーザーのホームディレクトリは、システムから共有されます。 showmount -e localhostコマンドを使用すると、共有ディレクトリは表示されません。共有ユーザーのホームディレクトリにアクセスします。
正解:
Verify the File whether Shared or not ? : cat /etc/exports
Start the nfs service: service nfs start
Start the portmap service: service portmap start
Make automatically start the nfs service on next reboot: chkconfig nfs on Make automatically start the portmap service on next reboot: chkconfig portmap on Verify either sharing or not: showmount -e localhost Check that default firewall is running on system?
If running flush the iptables using iptables -F and stop the iptables service.
Start the nfs service: service nfs start
Start the portmap service: service portmap start
Make automatically start the nfs service on next reboot: chkconfig nfs on Make automatically start the portmap service on next reboot: chkconfig portmap on Verify either sharing or not: showmount -e localhost Check that default firewall is running on system?
If running flush the iptables using iptables -F and stop the iptables service.
ftp://instructor.example.com/pub/updatesからカーネルを更新します。
次の要件に従って:
*システムの再起動後、更新されたカーネルがデフォルトのカーネルとして存在する必要があります。
*元のカーネルはまだ存在し、システムで利用可能です。
次の要件に従って:
*システムの再起動後、更新されたカーネルがデフォルトのカーネルとして存在する必要があります。
*元のカーネルはまだ存在し、システムで利用可能です。
正解:
rpm -ivh kernel-firm...
rpm -ivh kernel...
rpm -ivh kernel...
サイズ100MBのパーティションを1つ作成し、データにマウントします。
正解:
1. Use fdisk /dev/hda to create new partition.
2. Type n For New partitions.
3. It will ask for Logical or Primary Partitions. Press l for logical.
4. It will ask for the Starting Cylinder: Use the Default by pressing Enter Key.
5. Type the Size: +100M you can specify either Last cylinder of size here.
6. Press P to verify the partitions lists and remember the partitions name.
7. Press w to write on partitions table.
8. Either Reboot or use partprobe command.
9. Use mkfs -t ext3 /dev/hda?
OR
mke2fs -j /dev/hda? To create ext3 filesystem.
vi /etc/fstab
Write:
/dev/hda? /data ext3 defaults 1 2
Verify by mounting on current Sessions also: mount /dev/hda? /data
2. Type n For New partitions.
3. It will ask for Logical or Primary Partitions. Press l for logical.
4. It will ask for the Starting Cylinder: Use the Default by pressing Enter Key.
5. Type the Size: +100M you can specify either Last cylinder of size here.
6. Press P to verify the partitions lists and remember the partitions name.
7. Press w to write on partitions table.
8. Either Reboot or use partprobe command.
9. Use mkfs -t ext3 /dev/hda?
OR
mke2fs -j /dev/hda? To create ext3 filesystem.
vi /etc/fstab
Write:
/dev/hda? /data ext3 defaults 1 2
Verify by mounting on current Sessions also: mount /dev/hda? /data