Red Hat EX200
Get real exam questions for EX200 EX200 Red Hat Certified System Administrator (RHCSA) Exam. 100% Free.
EX200 Premium VCE File
Learn More
100% Pass Guarantee - Dumps Verified - Instant Download
150 Lectures, 20 Hours
Q1. CORRECT TEXT Install a FTP server, and request to anonymous download from /var/ftp/pub catalog. (it needs you to configure yum direct to the already existing file server. ) View AnswerAnswer: # cd /etc/yum.repos.d # vim local.repo [local] name=local.repo baseurl=file:///mnt enabled=1 gpgcheck=0 # yum makecache # yum install -y vsftpd # service vsftpd restart # chkconfig vsftpd on
Q1. CORRECT TEXT Configure a task: plan to run echo hello command at 14:23 every day. View AnswerAnswer: # which echo # crontab -e 23 14 * * * /bin/echo hello # crontab -l (Verify) Q2. CORRECT TEXT Create a user named alex, and the user id should be 1234, and the password should be alex111. View AnswerAnswer: # useradd -u 1234 alex # passwd alex alex111 alex111 OR echo alex111|pas
Q1. CORRECT TEXT Configure a HTTP server, which can be accessed through http://station.domain40.example.com. Please download the released page from http://ip/dir/example.html. View AnswerAnswer: # yum install -y httpd # chkconfig httpd on # cd /var/www/html # wget http://ip/dir/example.html # cp example.com index.html # vim /etc/httpd/conf/httpd.conf NameVirtualHost 192.168.0.254:80 &l
Q1. CORRECT TEXT Configure the system synchronous as 172.24.40.10. View AnswerAnswer: Graphical Interfaces: System-->Administration-->Date & Time OR # system-config-date Q2. CORRECT TEXT Add users: user2, user3. The Additional group of the two users: user2, user3 is the admin group Password: redhat View AnswerAnswer: # useradd -G admin user2 # useradd -G admin user3 # pass
Q1. CORRECT TEXT Configure the verification mode of your host account and the password as LDAP. And it can ldapuser40. The password is set as "password". And the certificate login successfully through can be downloaded from http://ip/dir/ldap.crt. After the user logs on , the user has no host directory unless you configure the autofs in the following questions. View AnswerAnswer: system-confi
Q1. 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. View AnswerAnswer: # 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 Q2. CO
Q1. CORRECT TEXT Create a volume group,and set 8M as a extends. Divided a volume group containing 50 extends on volume group lv (lvshare), make it as ext4 file system, and mounted automatically under /mnt/data. And the size of the floating range should set between 380M and 400M. View AnswerAnswer: # fdisk # partprobe # pvcreate /dev/vda6 # vgcreate -s 8M vg1 /dev/vda6 -s # lvcreate -n lvsh