EX200 Exam - EX200 Red Hat Certified System Administrator (RHCSA) Exam

certleader.com

Q1. CORRECT TEXT 

Find the files owned by harry, and copy it to catalog: /opt/dir 

Answer: # cd /opt/ 

# mkdir dir 

# find / -user harry -exec cp -rfp {} /opt/dir/ \; 

Q2. CORRECT TEXT 

Configure a task: plan to run echo hello command at 14:23 every day. 

Answer: # which echo 

# crontab -e 

23 14 * * * /bin/echo hello 

# crontab -l (Verify) 

Q3. CORRECT TEXT 

Upgrading the kernel as 2.6.36.7.1, and configure the system to Start the default kernel, keep the old kernel available. 

Answer: # cat /etc/grub.conf 

# cd /boot 

# lftp it 

# get dr/dom/kernel-xxxx.rpm 

# rpm -ivh kernel-xxxx.rpm 

# vim /etc/grub.conf 

default=0 

Q4. CORRECT TEXT 

Download ftp://192.168.0.254/pub/boot.iso to /root, and mounted automatically under /media/cdrom and which take effect automatically at boot-start. 

Answer: # cd /root; wget ftp://192.168.0.254/pub/boot.iso 

# mkdir -p /media/cdrom 

# vim /etc/fstab 

/root/boot.iso /media/cdrom iso9660 defaults,loop 0 0 

# mount -a 

mount [-t vfstype] [-o options] device dir 

Q5. CORRECT TEXT 

Copy /etc/fstab to /var/tmp name admin, the user1 could read, write and modify it, while user2 without any permission. 

Answer: # cp /etc/fstab /var/tmp/ 

# chgrp admin /var/tmp/fstab 

# setfacl -m u:user1:rwx /var/tmp/fstab 

# setfacl -m u:user2:--- /var/tmp/fstab 

# ls -l 

-rw-rw-r--+ 1 root admin 685 Nov 10 15:29 /var/tmp/fstab 

Q6. CORRECT TEXT 

Configure the system synchronous as 172.24.40.10. 

Answer: Graphical Interfaces: 

System-->Administration-->Date & Time 

OR 

# system-config-date 

Q7. CORRECT TEXT 

Configure the system synchronous as 172.24.40.10. 

Answer: Graphical Interfaces: 

System-->Administration-->Date & Time 

OR 

# system-config-date 

Q8. CORRECT TEXT 

Download ftp://192.168.0.254/pub/boot.iso to /root, and mounted automatically under /media/cdrom and which take effect automatically at boot-start. 

Answer: # cd /root; wget ftp://192.168.0.254/pub/boot.iso 

# mkdir -p /media/cdrom 

# vim /etc/fstab 

/root/boot.iso /media/cdrom iso9660 defaults,loop 0 0 

# mount -a 

mount [-t vfstype] [-o options] device dir 

Q9. CORRECT TEXT 

Find the files owned by harry, and copy it to catalog: /opt/dir 

Answer: # cd /opt/ 

# mkdir dir 

# find / -user harry -exec cp -rfp {} /opt/dir/ \; 

Q10. CORRECT TEXT 

Create a user named alex, and the user id should be 1234, and the password should be alex111. 

Answer: # useradd -u 1234 alex 

# passwd alex 

alex111 

alex111 

OR 

echo alex111|passwd -stdin alex