Q1. CORRECT TEXTRaw (Model) printer named printer1 is installed and shared on 192.168.0.254. You should install the shared printer on your PC to connect shared printer using IPP Protocols.Answer and Explanation:IPP( Internet Printing Protocol), allows administrator to manage printer through browser so CUPS is called Internet Printing Protocol based on HTTP. We can Install the printer either through:system-confing-printer tool or…
Q1. CORRECT TEXTInstall the Cron Schedule for jeff user to display "Hello" on daily 5:30.Answer and Explanation:Login as a root usercat >schedule.txt30 05 * * * /bin/echo "Hello"3. crontab -u jeff schedule.txt4. service crond restartThe cron system is essentially a smart alarm clock. When the alarm sounds, Linux runs the commands of your choice automatically. You can set the alarm…
Q1. CORRECT TEXTYour System is going use as a router for 172.24.0.0/16 and 172.25.0.0/16. Enable the IP Forwarding.Answer and Explanation:1. echo "1" >/proc/sys/net/ipv4/ip_forward2. vi /etc/sysctl.confnet.ipv4.ip_forward=1/proc is the virtual filesystem, containing the information about the running kernel. To change the parameter of running kernel you should modify on /proc. From Next reboot the system, kernel will take the value from /etc/sysctl.conf.View…
Q1. CORRECT TEXTThere is a HTTP server 192.168.0.254 and all required packages are dumped in /var/www/html/rhel5 of that server. Install the Redhat Enterprise Linux 5 by creating following partitions:/ 1000/boot 200/home 1000/var 1000/usr 4000swap 2X256 (RAM SIZE)Answer and Explanation:Note: Examiner will provide you the Installation startup CD. And here mentioned size may vary see on the exam paper.1. Insert the…
Q1. CORRECT TEXTConfigure the webserver for your local domain. Download a www.html file fromftp.server1.example.com/pub/rhce and rename it as index.html.Answer and Explanation:Your local domain mean example.com domain. Lookup the example.com using host example.com you will get the IP address 192.168.0.254.1. vi /etc/httpd/conf/httpd.confServerName sexample.comDocumentRoot /var/www/exampleDirectoryIndex index.htmlServerAdmin webmaster@example.com2. mkdir /var/www/example3. Download the index.html file from the ftp server specified in question4. Rename the…
Q1. CORRECT TEXTDeny to john user login locally.Answer and Explanation:1. vi /etc/security/access.conf-:john:LOCAL2. vi /etc/pam.d/system-authaccount required /lib/security/pam_access.so/etc/security/access.conf file helps to allow or deny login to users on the basis of origin.Syntax of /etc/security/access.confpermission : users : originsThe first field should be a "+" (access granted) or "-" (access denied) character.The second field should be a list of one or more login…
Q1. CORRECT TEXTCreate the user named jane and john.Answer and Explanation:1. useradd jane2. useradd johnuseradd command is used to create the user. All user's information stores in /etc/passwd and user;s shadow password stores in /etc/shadow.View AnswerAnswer: Q2. CORRECT TEXTYou have a domain in your LAN named example.com and my133t.org. Allow the- Allow the FTP connection only from local domain.- Deny…
Q1. CORRECT TEXTCreate a RAID Device /dev/md0 by creating equal two disks from available free space on your harddisk and mount it on /data.Answer and Explanation:Redhat Enterprise Linux 5 Supports the RAID LEVEL 0, RAID LEVEL 1, RAID LEVEL 5 and RAID LEVEL 6 at installation time. You can create it at installation time later no need to type lots…
Q1. CORRECT TEXTConfigure the send mail server for your local LAN. As well as the mail of user john should get by the jane user.Answer and Explanation:Here your Local LAN means your domain named example.com.1. vi /etc/mail/local-host-namesexample.com2. vi /etc/mail/sendmail.mcdnl # DEAMON_OPTIONS(`Port=smtp,Addr=127.0.0.1,Name=MTA`)dnl3. m4 /etc/mail/sendmail.mc >/etc/mail/sendmail.cf4. vi /etc/mail/access192.168.0 RELAY5. service sendmail start | restart6. chkconfig sendmail on/etc/mail/local-host-names file contains the aliases to…
Q1. CORRECT TEXTneo user tried by:dd if=/dev/zero of=/home/neo/somefile bs=1024 count=70files created successfully. Again neo tried to create file having 70K using following command:dd if=/dev/zero of=/home/neo/somefile bs=1024 count=70But he is unable to create the file. Make the user can create the file less then 70K.Answer and Explanation:Very Tricky question from redhat. Actually question is giving scenario to you to implement quota…
Q1. CORRECT TEXTAdd a job on Cron schedule to display Hello World on every two Seconds in terminal 8.Answer and Explanation:cat >schedule*/2 * * * * /bin/echo "Hello World" >/dev/tty8crontab scheduleVerify using: crontab -lservice crond restartCron helps to schedule on recurring events. Pattern of Cron is:Minute Hour Day of Month Month Day of Week Commands0-59 0-23 1-31 1-12 0-7 where…
Q1. CORRECT TEXTYou Completely Install the Redhat Enterprise Linux 5 on your System. While start the system, it's giving error to load X window System. How will you fix that problem and make boot successfully run X Window System.Answer and Explanation:Think while Problems occurred on booting System on Runlevel 5 (X Window)./tmp is full or notQuota is already reachedVideo card…