Systemnotes.org RHCE Study Guide for RHEL5. v /12/02

Size: px
Start display at page:

Download "Systemnotes.org RHCE Study Guide for RHEL5. v /12/02"

Transcription

1 v /12/02 It is very important to study the official objectives for any exam, as that is the only way to know what to expect. It is not meant to replace official training courses and manuals, but is meant to help students quickly review, so they can determine where to focus their efforts and study in more detail. This guide is based on the official redhat objectives for the RHEL5 exam see: This guide is freely available from For more detailed study info on each objective see: This guide was prepared by looking at each objective, and asking the questions: -- What could they ask in order to test for knowledge of this objective?, or -- What kind of troubleshooting might be required? -- How can this requirement be met? Q: is used to denote possible questions, and A: for possible answers. Note that there may be more than one answer based on what the objective is, or depending which method is preferred to meet the objective. Some items and ideas were taken from labs in the RHCE course book, and great care was taken to not give away any hints about what might be on the exam, other than what the labs and official objectives lead one to infer. Page 1 of 17

2 RHCT skills Troubleshooting and System Maintenance RHCTs should be able to: 1) boot systems into different run levels for troubleshooting and system maintenance boot single to set root password, or fix mounting, or init problem Q: Machine won't boot A: modify /boot/grub/grub.conf root (hd0,0) A: Check files /etc/rc.local /etc/inittab A: Fix initrd mkinitrd initrd-`uname -r`.img `uname -r` Q: root password not known A: 1) boot single (at grub screen, "a", "space", "1", enter), 2) passwd root Items to study: grub, initrd,vmlinuz, inittab, rc.sysinit... 2) diagnose and correct misconfigured networking system-config-network, or vi /etc/sysconfig/network-scripts/ifcfg-eth0 check IPADDR, NETMASK, GATEWAY ONBOOT=yes PEERDNS=no vi /etc/sysconfig/network 3) diagnose and correct hostname resolution problems /etc/resolv.conf /etc/hosts 4) configure the X Window System and a desktop environment Remember X troubleshooting should be done from the command prompt, and not within X. Files: /etc/x11/xinit/xinitrc.d /etc/x11/xorg.conf Page 2 of 17

3 Q: Boot to X A: Set runlevel 5 in /etc/inittab vi /etc/inittab change id:3:initdefault: to id:5:initdefault: Q: X won't load A: Check config files A: system-config-display --reconfig A: /tmp or /home is full 5) add new partitions, filesystems, and swap to existing systems This one is a little hard to explain. It just takes some practice to understand. Tools available: fdisk /dev/hda t / fd (raid) partprobe mdadm -C /dev/md0 -l 5 -n 3 /dev/hda6 /dev/hda7 /dev/hda8 mke2fs -j /dev/md0 Q: mount something, such as: /dev/hda7 on /data A: make directory, mount, modify /etc/fstab 1) mkdir /data 2) mount -t ext3 /dev/hda7 /data 3) vi /etc/fstab /data /data ext3 defaults 1 2 view or change label: e2label /dev/hda2 e2label /dev/vg0/data0 /data 6) use standard command-line tools to analyze problems and configure system ls, cp, mv, rm, tail, cat, etc system-config-<tab> Page 3 of 17

4 Installation and Configuration RHCTs must be able to: 1) perform network OS installation Enter the nfs, or ftp server address and path 2) implement a custom partitioning scheme Probably easiest during GUI install 3) configure printing probably the easiest thing to do is use: system-config-printer /etc/cups/cupsd.conf lpadmin lpstat, lpq reject disable accept /usr/bin/enable 4) configure the scheduling of tasks using cron and at Understand how cron fields work: min hr month_day month weekday copy script to /etc/cron.daily, /etc.cron.monthly, etc. or Modify /etc/crontab: crontab -e List cron jobs: crontab -l Add an at job: at [-f file] TIME View at queue: atq Remove at jog: atrm job 5) attach system to a network directory service, such as NIS or LDAP 1) Install ypbind, portmap 2) system-config-authentication check: Enable NIS Support, or Enable LDAP Support click: Configure NIS..., or Configure LDAP... 3) configure firewall, if required iptables -A INPUT -s / p tcp -m tcp --dport 835:837 -j ACCEPT service iptables save Page 4 of 17

5 test: files: ypwhich nisdomainname -y genent services getent passwd smith rpcinfo -p /etc/yp.conf /etc/sysconfig/network /etc/pam.d/system-auth /etc/nsswitch.conf 6) configure autofs /etc/auto.master /home/guests /etc/auto.guests --timeout=60 /etc/auto.guests * -rw,soft,intr server1:/home/guests/& service autofs restart chkconfig portmap on chkconfig autofs on 7) add and manage users, groups, quotas, and File Access Control Lists Q: Create group, add users, set primary group A: Use groupadd, useradd, usermod groupadd -g 1000 groupname useradd username usermod -G groupname username (-G for primary group) quotas Q: Setup a 70kb hard block user quota for user tim on /home/tim: A: Use a Hard Block user quota (or Soft depending on question). 1) modify /etc/fstab change defaults to usrquota for /home 2) mount -o remount /home 3) quotacheck -cuf /home 4) quotaon /home 5) setquota -u tim /home or 5a) edquota tim Page 5 of 17

6 Disk quotas for user tim (uid 502): Filesystem blocks soft hard inodes soft hard /dev/hda ) repquota /home or quota tim 7) test a) quota tim b) su - tim c) dd if=/dev/zero of=/home/tim/somefile bs=1024 count=70 d) ls -l file should be less than 70 kilobytes Quota Command to remember: quotacheck -cuf /home quotaon /home edquota tim quota tim repquota /home *** Lab: Set a user soft block quota of 1MB for user diskhog on /blackhole, (or hard block, hard / soft inode). Know when to use each type of quota *** Enable quotas: quotacheck -cuf /blackhole quotaon /blackhole Set Quota: block inode h s h s setquota -u diskhog /blackhole or edquota -u diskhog Report on Quota for user or directory: quota -u diskhog repquota /blackhole Password defaults: /etc/login.defs chage [options] username Page 6 of 17

7 password files: /etc/passwd /etc/shadow /etc/group 8) configure filesystem permissions for collaboration Q: Make user alex a member of sales with write permissions to /depts/sales Q: Make user sales, hr, and web groups in /depts/ A: mkdir -p /depts/{sales,hr,web} for GROUP in sales hr web;do chgrp $GROUP /depts/$group;done chmod 770 /depts/* chmod g+s /depts/* Test permissions as alex: su - alex 9) install and update packages using rpm You may have to mount a directory over nfs, or install directly from rpm -Uvh filenamex.i386.rpm rpm --import /usr/share/rhn/rpm-gpg-key rpm -K /tmp/rpmversion.i386.rpm 10) properly update the kernel package Just remember to use rpm -i, so the old kernel will still be there. 1) mkdir /server1 2) mount server1:/var/ftp/pub /server1 3) cd /server1/redhat/rpms 4) rpm -ivh kernel-* 5) vi /boot/grub/grub.conf default=0 11) configure the system to update/install packages from remote repositories using yum or pup /etc/yum.conf 12) modify the system bootloader /boot/grub/grub.conf Page 7 of 17

8 13) implement software RAID at install-time and run-time fdisk /dev/hda fd (raid) partprobe mdadm -C /dev/md0 -l 5 -n 3 /dev/hda6 /dev/hda7 /dev/hda8 mke2fs -j /dev/md0 mount /etc/fstab mdadm --detail /dev/md0 recover mdadm /dev/md0 -a /dev/sda1 14) use /proc/sys and sysctl to modify and set kernel run-time parameters Q: turn on ip forwardarding A: 1) vi /etc/sysctl.conf net.ipv4.ip_forward=1 2) sysctl -p or echo 1 > /proc/sys/net/ipv4/ip_forward to view: sysctl -a grep ipv4 to find available options for ipv4: ls /proc/sys/net/ipv4 15) use scripting to automate system maintenance tasks Maybe put a script in /etc/cron.daily? Login Shell Scripts /etc/profile /etc/profile.d/*.sh ~/.bash_profile ~/.bashrc /etc/bashrc Page 8 of 17

9 RHCE skills Troubleshooting and System Maintenance RHCEs must demonstrate the RHCT skills listed above, and should be able to: 1) use the rescue environment provided by first installation CD linux rescue 2) diagnose and correct boot failures arising from bootloader, module, and filesystem errors init /etc/rc.d/rc.sysinit /etc/rc.d/rc adn /etc/rc.d/rc?.d /etc/rc.d/rc.local grub /boot/grub/grub.conf filesystem /etc/fstab fsck /dev/hda 3) diagnose and correct problems with network services (see Installation and Configuration below for a list of these services) 4) add, remove, and resize logical volumes LVM - Hint: use apropos quota, or just lvm to find commands. Q: expand or shrink logical volume (RHCE) A: Make sure there is enough space, and volume is online, use vgconvert if necessary ext2online /dev/vg0/data0 120M lvextend -L +100M /dev/vg0/data0 lvreduce -L 120M /dev/vg0/data0 vgdisplay -v vg0 pvdisplay lvdisplay Q: Create a logical volume A: First create physical volume, then volume group, then logical volume PV -> VG -> LV pvcreate /dev/hda6 /dev/hda7 /dev/hda8 vgcreate vg0 /dev/hda6 /dev/hda7 lvcreate -L 50M -n data0 vg0 ext2online /dev/vg0/data0 lvextend -L +6M /dev/vg0/data0 Page 9 of 17

10 resize2fs -L /dev/vg0/data0 40M lvreduce -L 40M /dev/vg0/data0 vgconvert 5) diagnose and correct networking services problems where SELinux contexts are interfering with proper operation. SELinux getenforce setenforce 1 check context with ls -Z Q: Set up directory to use context of another directory A: Use the other directory as a reference chcon -R --reference /var/www/html /var/www/html/www1 Page 10 of 17

11 Installation and Configuration RHCEs must demonstrate the RHCT-level skills listed above, and they must be capable of configuring the following network services: 1) HTTP/HTTPS 2) SMB 3) NFS install httpd, check context with ls -Z Q: Create a virtual host www1.example.com w/ subdirectory /var/www/html/www1 A: 1) install httpd, modify /etc/httpd/conf/httpd.conf file <VirtualHost :80> ServerName www1.example.com DocumentRoot /var/www/html/www1 </VirtualHost> 2) chcon -R --reference /var/www/html /var/www/html/www1 3) service httpd restart 4) chkconfig httpd on Testing service httpd configtest Q: Configure Samba share /home/depts/legal 1) install samba rpm -Uvh samba-* system-config-samba*(optional) 2) vi /etc/samba/smb.conf [sharename] path = /home/depts/legal browseable = no writeable = no 3) configure firewall port 445, Q: Export /data directory with nfs The nfs server is an RPC service, and thus requires portmap A: Modify /etc/exports, start nfs & portmap (make sure /data directory exists) 1) modify /etc/exports /data *(sync,rw) 2) start services service nfs start service portmap start Page 11 of 17

12 chkconfig nfs on chkconfig portmap on 3) verify config, & check mounts exportfs -v showmount -e localhost rpcinfo -p localhost 4) restart exportfs -r, or service nfs reload Q: Mount server1:/var/ftp/pub with nfs on /server1 1) mkdir /server1 2) vi /etc/fstab :/var/ftp/pub /server1 nfs soft,defaults 0 0 3) mount -a * configure autofs Automount Q: Configure automount for nfs mount from nis domain on server1 A: 1) mkdir /net 2) vi /etc/auto.master # uncomment /net line /net /etc/auto.net 3) start services service portmap start service autofs start chkconfig autofs on chkconfig portmap on Q: Configure automount for nfs mount of /rhome directories from nis domain on server1 A: Create base directory 1) mkdir /rhome 2) vi /etc/auto.master # copy and modify /misc line /rhome /etc/auto.rhome 3) vi /etc/auto.rhome * -rw,soft.intr server1:/home/guests/& 4) start services service portmap start service autofs start chkconfig autofs on chkconfig portmap on Page 12 of 17

13 4) FTP Q: Configure ftp with /var/ftp/incoming directory A: install vsftpd 1) rpm -Uvh vsftpd* 2) service vsftpd start 3) chkconfig vsftpd on 4) create incoming directory cd /var/ftp mkdir incoming chown root:ftp fincoming chmod 730 incoming 5) vi /etc/vsftpd/vsftpd.conf uncomment the lines -- #anon_upload_enable=yes #chown_uploads=yes #chown_username=whoever add anon_umask=077 6) service vsftpd restart 7) configure firewall iptables -A INPUT -s /24 -p tcp --dport 21 -j ACCEPT service iptables save 5) Web proxy Q: Install a web proxy and allow a certain network to access it A: Install & configure squid 1) install squid, and start the service rpm -ivh --aid squid* service squid start chkconfig squid on 2) vi /etc/squid acl example src /24 http_access allow example 3) service squid reload 4) Configure browser to test: Edit / Preferences /General / Connection Settings Manual proxy configuration / HTTP Proxy: localhost Port: 3128 Enable port in firewall, if required iptables -A INPUT -s /24 -p tcp --dport j ACCEPT service iptables save Page 13 of 17

14 6) SMTP Useful parameters: http_port 3128 cache_mem 8 MB cache_dir ufs /var/spool/squid acl all src / http_access allow localhost http_access deny all hint: find out that port number is 3128 grep squid /etc/services install sendmail, sendmail-cf, sendmail-doc (optional) Q: Configure mail server to accept internet A: modify /etc/mail/sendmail.mc 1) cd /etc/mail 2) vi /etc/mail/sendmail.mc search for 127.0, put dnl at the front of the line 3) make or m4 sendmail.mc > sendmail.cf service sendmail restart Q: Mail alias A: modify /etc/aliases, run newaliases Q: Receive mail for DomainX.example.com A: modify sendmail mc as above, and add domain to /etc/mail/local-host-names domainx.example.com Debugging: mail -v root mailq, mailq -Ac sendmail -q tail -f /var/log/maillog 7) IMAP, IMAPS, and POP3 Q: Configure for pop3 (or imap) A: 1) install dovecot 2) vi /etc/dovcot.conf protocols = pop3 3) service dovecot restart 4) chkconfig dovecot on Testing: note: root is not permitted to login Page 14 of 17

15 8) SSH echo "pop" mail -s test student telnet localhost 110 user student pass student stat list retr 1 quit /etc/ssh/ ~/.ssh/ 9) DNS (caching name server, slave name server) Q: Setup a slave name server A: 1) install bind, bind-utils, and caching-nameserver 2) when configuring a slave name server, start with caching, and modify 3) vi /etc/named.conf comment out dump-file section add: zone "example.com" { type slave; masters { }; file "slaves/slave-example.com.zone"; }; 4) vi in-addr.arpa add: zone " in-addr.arpa" { type slave; masters { }; file "slaves/ zone"; }; To verify: named-checkconf named-checkconf -t /var/named named-checkzone example.com example.com.zone 5) start named, and make it start at boot service named restart; tail -f /var/log/messages grep named chkconfig named on Remember to check /etc/resolv.conf on all client machines. Page 15 of 17

16 10) NTP /etc/ntp.conf For each of these services, RHCEs must be able to: 1) install the packages needed to provide the service rpm -Uvh packagename.rpm, or yum install packagename 2) configure SELinux to support the service getenforce setenforce 1 check context with ls -Z chcon -R --reference /var/www/html /var/www/html/www1 3) configure the service to start when the system is booted chkconfig servicename on 4) configure the service for basic operation different for each service 5) Configure host-based and user-based security for the service setuid? /etc/xinet.d/ RHCEs must also be able to: 1) configure hands-free installation using Kickstart 2) implement logical volumes at install-time 3) use iptables to implement packet filtering and/or NAT iptables is usually configured to be as restrictive as possible, but this may be difficult to implement in an exam environment. Read the instructions carefully, and try to find the best way to implement it. Page 16 of 17

17 --- commands --- iptables -L iptables -F service iptables save service iptables restart chkconfig iptables on --- starting config --- iptables -P INPUT DROP iptables -A INPUT -i lo -j ACCEPT iptables -A INPUT -m state --state ESTABLISHED, RELATED -j ACCEPT --- sample file --- cat /etc/sysconfig/iptables *filter :INPUT DROP [67:11217] :FORWARD ACCEPT [0:0] :OUTPUT ACCEPT [58:6450] -A INPUT -s p tcp -m tcp --dport 22 -j ACCEPT -A INPUT -s p tcp -m tcp --dport 22 -j ACCEPT -A INPUT -i lo -j ACCEPT -A INPUT -s p tcp -m tcp --dport 22 -j ACCEPT -A INPUT -s p udp -m udp --sport 53 -j ACCEPT -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT -A INPUT -s / p tcp -m tcp --dport 22 -j ACCEPT -A INPUT -s / p udp -m udp --dport 53 -j ACCEPT -A INPUT -s / p tcp -m tcp --dport 445 -j ACCEPT -A INPUT -s / p tcp -m tcp --dport 21 -j ACCEPT -A INPUT -s / p tcp -m tcp --dport j ACCEPT -A INPUT -s / p udp -m udp --dport j ACCEPT -A INPUT -s / p tcp -m tcp --dport 25 -j ACCEPT -A INPUT -s / p tcp -m tcp --dport 110 -j ACCEPT -A INPUT -s / p tcp -m tcp --dport 80 -j ACCEPT -A INPUT -s / p tcp -m tcp --dport j ACCEPT -A INPUT -s / p tcp -m tcp --dport 835:837 -j ACCEPT COMMIT 4) use PAM to implement user-level restrictions /lib/security/ /etc/pam.d/ Page 17 of 17

Actual4Test. Actual4test - actual test exam dumps-pass for IT exams

Actual4Test.   Actual4test - actual test exam dumps-pass for IT exams Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : RH-302 Title : Red Hat Certified Engineer on Redhat Enterprise Linux 5 (Labs) Vendors : RedHat Version

More information

EX200 EX200. Red Hat Certified System Administrator RHCSA

EX200 EX200. Red Hat Certified System Administrator RHCSA EX200 Number: EX200 Passing Score: 800 Time Limit: 120 min File Version: 14.0 http://www.gratisexam.com/ EX200 Red Hat Certified System Administrator RHCSA EX200 QUESTION 1 Configure your Host Name, IP

More information

RH202. Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) Exam.

RH202. Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) Exam. REDHAT RH202 Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) Exam TYPE: DEMO http://www.examskey.com/rh202.html Examskey REDHAT RH202 exam demo product is here for you to test the quality

More information

Red Hat.Actualtests.EX200.v by.Dixon.22q. Exam Code: EX200. Exam Name: Red Hat Certified System Administrator (RHCSA) Exam

Red Hat.Actualtests.EX200.v by.Dixon.22q. Exam Code: EX200. Exam Name: Red Hat Certified System Administrator (RHCSA) Exam Red Hat.Actualtests.EX200.v2014-12-02.by.Dixon.22q Number: EX200 Passing Score: 800 Time Limit: 120 min File Version: 14.5 http://www.gratisexam.com/ Exam Code: EX200 Exam Name: Red Hat Certified System

More information

EX200.Lead2pass.Exam.24q. Exam Code: EX200. Exam Name: Red Hat Certified System Administrator RHCSA. Version 14.0

EX200.Lead2pass.Exam.24q. Exam Code: EX200. Exam Name: Red Hat Certified System Administrator RHCSA. Version 14.0 EX200.Lead2pass.Exam.24q Number: EX200 Passing Score: 800 Time Limit: 120 min File Version: 14.0 http://www.gratisexam.com/ Exam Code: EX200 Exam Name: Red Hat Certified System Administrator RHCSA Version

More information

Seltestengine EX200 24q

Seltestengine EX200 24q Seltestengine EX200 24q Number: EX200 Passing Score: 800 Time Limit: 120 min File Version: 22.5 http://www.gratisexam.com/ Red Hat EX200 Red Hat Certified System AdministratorRHCSA Nicely written Questions

More information

Exam Name: Red Hat Certified Engineer on Redhat

Exam Name: Red Hat Certified Engineer on Redhat Vendor: Red Hat Exam Code: RH302 Exam Name: Red Hat Certified Engineer on Redhat Version: DEMO QUESTION 1 One Logical Volume is created named as myvol under vo volume group and is mounted. The Initial

More information

Vendor: RedHat. Exam Code: EX200. Exam Name: Red Hat Certified System Administrator - RHCSA. Version: Demo

Vendor: RedHat. Exam Code: EX200. Exam Name: Red Hat Certified System Administrator - RHCSA. Version: Demo Vendor: RedHat Exam Code: EX200 Exam Name: Red Hat Certified System Administrator - RHCSA Version: Demo EX200 Exam A QUESTION NO: 1 CRECT TEXT Configure your Host Name, IP Address, Gateway and DNS. Host

More information

Exam Questions RH202

Exam Questions RH202 Exam Questions RH202 Redhat Certified Technician on Redhat Enterprise Linux 5 (Labs) https://www.2passeasy.com/dumps/rh202/ 1.CORRECT TEXT Change the root Password to redtophat Boot the system in Single

More information

Testpassport.

Testpassport. Testpassport http://www.testpassport.cn Exam : RH-302 Title : Red Hat Certified Engineer on Redhat Enterprise Linux 5 (Labs) Version : Demo 1 / 12 1.CORRECT TEXT Change the root Password to redtophat Boot

More information

Braindumps EX200 15q

Braindumps EX200 15q Braindumps EX200 15q Number: EX200 Passing Score: 800 Time Limit: 120 min File Version: 22.5 http://www.gratisexam.com/ Red Hat EX200 Red Hat Certified System AdministratorRHCSA This is the best VCE I

More information

EX200.redhat

EX200.redhat EX200.redhat Number: EX200 Passing Score: 800 Time Limit: 120 min Exam A QUESTION 1 Configure the verification mode of your host account and the password as LDAP. And it can login successfully through

More information

EX200.exam.35q. Number: EX200 Passing Score: 800 Time Limit: 120 min. EX200. Red Hat Certified System Administrator RHCSA

EX200.exam.35q. Number: EX200 Passing Score: 800 Time Limit: 120 min.   EX200. Red Hat Certified System Administrator RHCSA EX200.exam.35q Number: EX200 Passing Score: 800 Time Limit: 120 min EX200 Red Hat Certified System Administrator RHCSA Exam A QUESTION 1 Configure the verification mode of your host account and the password

More information

example.com index.html # vim /etc/httpd/conf/httpd.conf NameVirtualHost :80 <VirtualHost :80> DocumentRoot /var/www/html/

example.com index.html # vim /etc/httpd/conf/httpd.conf NameVirtualHost :80 <VirtualHost :80> DocumentRoot /var/www/html/ example.com index.html # vim /etc/httpd/conf/httpd.conf NameVirtualHost 192.168.0.254:80 DocumentRoot /var/www/html/ ServerName station.domain40.example.com

More information

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

EX200 - EX200 Red Hat Certified System Administrator (RHCSA) Exam EX200 - EX200 Red Hat Certified System Administrator (RHCSA) Exam 1.CORRECT TEXT Add users: user2, user3. The Additional group of the two users: user2, user3 is the admin group Password: redhat Answer:

More information

Exam Questions EX200

Exam Questions EX200 Exam Questions EX200 EX200 Red Hat Certified System Administrator (RHCSA) Exam http://www.2passeasy.com/dumps/ex200/ 1.CORRECT TEXT Add users: user2, user3. The Additional group of the two users: user2,

More information

EX200 Exam Questions Demo https://www.surepassexam.com/ex200-exam-dumps.html. Red Hat. Exam Questions EX200

EX200 Exam Questions Demo https://www.surepassexam.com/ex200-exam-dumps.html. Red Hat. Exam Questions EX200 Red Hat Exam Questions EX200 EX200 Red Hat Certified System Administrator (RHCSA) Exam Version:Demo 1.CORRECT TEXT Add users: user2, user3. The Additional group of the two users: user2, user3 is the admin

More information

SA3 E7 Advanced Linux System Administration III Internet Network Services and Security

SA3 E7 Advanced Linux System Administration III Internet Network Services and Security SA3 E7 Advanced Linux System Administration III Internet Network Services and Security Synopsis: This is a fast paced, level 3, advanced class for experienced administrators of Linux based hosts on a network

More information

RedHat. Rh202. Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs)

RedHat. Rh202. Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) RedHat Rh202 Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) http://killexams.com/exam-detail/rh202 QUESTION: 156 Who ever creates the files/directories on /data group owner should be automatically

More information

Exam Questions RH302

Exam Questions RH302 Exam Questions RH302 Red Hat Certified Engineer on Redhat Enterprise Linux 5 (Labs) https://www.2passeasy.com/dumps/rh302/ 1.. CORRECT TEXT We are working on /data initially the size is 2GB. The /dev/test0/lvtestvolume

More information

RH-302. RedHat. Red Hat Certified Engineer on Redhat Enterprise Linux 4 (Labs)

RH-302. RedHat. Red Hat Certified Engineer on Redhat Enterprise Linux 4 (Labs) RedHat RH-302 Red Hat Certified Engineer on Redhat Enterprise Linux 4 (Labs) Download Full Version : http://killexams.com/pass4sure/exam-detail/rh-302 local domain and another is cracker.org which is called

More information

Lab on User administration

Lab on User administration Lab on User administration To add user #useradd [options] -c Change the comment field. This is often the users full name. -d Change the home directory -e Set

More information

Linux Administration

Linux Administration Linux Administration This course will cover all aspects of Linux Certification. At the end of the course delegates will have the skills required to administer a Linux System. It is designed for professionals

More information

RH-202. RedHat. Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs)

RH-202. RedHat. Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) RedHat RH-202 Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) Download Full Version : https://killexams.com/pass4sure/exam-detail/rh-202 QUESTION: 159 Install the dialog-* Questions asking

More information

"Charting the Course... RHCE Rapid Track Course. Course Summary

Charting the Course... RHCE Rapid Track Course. Course Summary Course Summary Description This course is carefully designed to match the topics found in the Red Hat RH299 exam prep course but also features the added benefit of an entire extra day of comprehensive

More information

EX200 Q&A. DEMO Version

EX200 Q&A. DEMO Version Red Hat Certified System Administrator (RHCSA) Exam Q&A DEMO Version Copyright (c) 2015 Chinatag LLC. All rights reserved. Important Note Please Read Carefully For demonstration purpose only, this free

More information

RH133. Red Hat Linux System Administration

RH133. Red Hat Linux System Administration RH133 Red Hat Linux System Administration Version 3.5 QUESTION NO: 1 RH133 John works as a Network Administrator for Perfect Solutions Inc. The company has a Linux-based network. He is working as a root

More information

RedHat Certified Engineer

RedHat Certified Engineer RedHat Certified Engineer Red Hat Certified Engineer (RHCE) is a performance-based test that measures actual competency on live systems. Called the "crown jewel of Linux certifications," RHCE proves an

More information

SA2 v6 Linux System Administration II Net Configuration, Software, Troubleshooting

SA2 v6 Linux System Administration II Net Configuration, Software, Troubleshooting SA2 v6 Linux System Administration II Net Configuration, Software, Troubleshooting Synopsis: This is the second System Administration class, a follow-on class for new administrators with limited networking

More information

Prepared by Shiba Ratna Tamrakar

Prepared by Shiba Ratna Tamrakar Lab on Package management with RPM and Yum 1. to install the package bind-utils #rpm -hiv bind-utils* Note: i for install, h for hash, v for verbose 2. to install the package bind-utils from URL ftp://www.xyz.com/rpms

More information

CIS UNIX System Administration

CIS UNIX System Administration Lab 11: Lab notes: - Lab 10 successful completion is a prerequisite for this lab - The sda8, sda9 partitions below may change based on current disk partition. See instructor for current # s. - After the

More information

Linux for UNIX Administrators

Linux for UNIX Administrators A fast paced 5-day course that is a combination of "Enterprise Linux Systems Administration", and "Enterprise Linux Networking Services. Particular focus is given to translating Solaris and HP-UX skills

More information

Vendor: RedHat. Exam Code: EX300. Exam Name: Red Hat Certified Engineer (RHCE) Version: Demo

Vendor: RedHat. Exam Code: EX300. Exam Name: Red Hat Certified Engineer (RHCE) Version: Demo Vendor: RedHat Exam Code: EX300 Exam Name: Red Hat Certified Engineer (RHCE) Version: Demo Exam Times: RHCE: Two hours. Pass Scores: Total 300 points. Pass at 210 points. Exam Environment: Take examinations

More information

1Z Oracle Linux 5 and 6 System Administration Exam Summary Syllabus Questions

1Z Oracle Linux 5 and 6 System Administration Exam Summary Syllabus Questions 1Z0-100 Oracle Linux 5 and 6 System Administration Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-100 Exam on Oracle Linux 5 and 6 System Administration2 Oracle 1Z0-100 Certification

More information

Unit 2: Manage Files Graphically with Nautilus Objective: Manage files graphically and access remote systems with Nautilus

Unit 2: Manage Files Graphically with Nautilus Objective: Manage files graphically and access remote systems with Nautilus Linux system administrator-i Unit 1: Get Started with the GNOME Graphical Desktop Objective: Get started with GNOME and edit text files with gedit Unit 2: Manage Files Graphically with Nautilus Objective:

More information

FastTrack to Red Hat Linux System Administrator Course Overview

FastTrack to Red Hat Linux System Administrator Course Overview Course Overview This highly practical instructor led training course is designed to give experienced LINUX/UNIX administrators practical experience in the administration of a LINUX system to a level required

More information

More on file systems, Booting Todd Kelley CST8177 Todd Kelley 1

More on file systems, Booting Todd Kelley CST8177 Todd Kelley 1 More on file systems, Booting Todd Kelley kelleyt@algonquincollege.com CST8177 Todd Kelley 1 bind mounts quotas Booting process and SysVinit Installation Disk rescue mode 2 A bind mount is used to mount

More information

Accurate study guides, High passing rate! IT TEST BOOK QUESTION & ANSWER. Ittestbook provides update free of charge in one year!

Accurate study guides, High passing rate! IT TEST BOOK QUESTION & ANSWER. Ittestbook provides update free of charge in one year! IT TEST BOOK QUESTION & ANSWER Ittestbook provides update free of charge in one year! Accurate study guides, High passing rate! Exam : RH133 Title : Red Hat Linux System Administration Version : Demo 1

More information

Critical Analysis and last hour guide for RHCSA/RHCE Enterprise 7

Critical Analysis and last hour guide for RHCSA/RHCE Enterprise 7 Critical Analysis and last hour guide for RHCSA/RHCE Enterprise 7 Disclaimer: I haven t gone through RHCSA/RHCE EL 7. I am preparing for upgrade of my RHCE certificate from RHCE EL4 to RHCE EL7. I don

More information

"Charting the Course... Enterprise Linux System Administration Course Summary

Charting the Course... Enterprise Linux System Administration Course Summary Course Summary Description This is an in-depth course that explores installation, configuration and maintenance of Linux systems. The course focuses on issues universal to every workstation and server.

More information

CompTIA Linux Course Overview. Prerequisites/Audience. Course Outline. Exam Code: XK0-002 Course Length: 5 Days

CompTIA Linux Course Overview. Prerequisites/Audience. Course Outline. Exam Code: XK0-002 Course Length: 5 Days CompTIA Linux+ 2009 Exam Code: XK0-002 Course Length: 5 Days Course Overview This instructor-led course will prepare students for the 2009 CompTIA Linux+ certification exam. It provides a comprehensive

More information

ITDumpsKR. IT 인증시험한방에패스시키는최신버전시험대비덤프

ITDumpsKR.   IT 인증시험한방에패스시키는최신버전시험대비덤프 ITDumpsKR http://www.itdumpskr.com IT 인증시험한방에패스시키는최신버전시험대비덤프 Exam : EX200 Title : Red Hat Certified System Administrator - RHCSA Vendor : RedHat Version : DEMO Get Latest & Valid EX200 Exam's Question

More information

RED HAT ENTERISE LINUX 5, 6, AND 7 Common administrative commands

RED HAT ENTERISE LINUX 5, 6, AND 7 Common administrative commands RED HAT ENTERISE LINUX,, AND Common administrative commands SYSTEM BASICS View subscription information /etc/sysconfig/rhn/systemid /etc/sysconfig/rhn/systemid subscription-manager identity subscription-manager

More information

Chapter 5: User Management. Chapter 5 User Management

Chapter 5: User Management. Chapter 5 User Management Chapter 5: User Management Chapter 5 User Management Last revised: 20/6/2004 Chapter 5 Outline In this chapter we will learn Where user and group account information is stored How to manage user accounts

More information

Exam Questions RH133

Exam Questions RH133 Exam Questions RH133 Red Hat Linux System Administration https://www.2passeasy.com/dumps/rh133/ 1.John works as a Network Administrator for Perfect Solutions Inc. The company has a Linux-based network.

More information

The table below lists the domains measured by this examination and the extent to which they are represented in the examination.

The table below lists the domains measured by this examination and the extent to which they are represented in the examination. Introduction The Linux+ Certification is designed to measure the competencies of the Linux Professional with six to twelve months experience with the Linux operating system. This person provides basic

More information

NETW 110 Lab 5 Creating and Assigning Users and Groups Page 1

NETW 110 Lab 5 Creating and Assigning Users and Groups Page 1 NETW 110 Lab 5 Creating and Assigning Users and Groups Page 1 Objective At the conclusion of this lab, the student will be able to add and delete users, create and assign users to groups, and assign users

More information

Check the FQDN of your server by executing following two commands in the terminal.

Check the FQDN of your server by executing following two commands in the terminal. LDAP or Lightweight Directory Access Protocol, is a protocol designed to manage and access related information in a centralized, hierarchical file and directory structure. An LDAP server is a non-relational

More information

"Charting the Course... MOC B: Linux System Administration. Course Summary

Charting the Course... MOC B: Linux System Administration. Course Summary Description Course Summary This four-day instructor-led course is designed to provide students with the necessary skills and abilities to work as a professional Linux system administrator. The course covers

More information

At course completion. Overview. Audience profile. Course Outline. : 55187B: Linux System Administration. Course Outline :: 55187B::

At course completion. Overview. Audience profile. Course Outline. : 55187B: Linux System Administration. Course Outline :: 55187B:: Module Title Duration : 55187B: Linux System Administration : 4 days Overview This four-day instructor-led course is designed to provide students with the necessary skills and abilities to work as a professional

More information

Exam LFCS/Course 55187B Linux System Administration

Exam LFCS/Course 55187B Linux System Administration Exam LFCS/Course 55187B Linux System Administration About this course This four-day instructor-led course is designed to provide students with the necessary skills and abilities to work as a professional

More information

Web Server rpm. Web Server. #rpm q apache apache sis. package apache not installed CD-ROM

Web Server rpm. Web Server. #rpm q apache apache sis. package apache not installed CD-ROM 7 Server Web Server Web Server rpm #rpm q apache apache-1.3.20-16+sis package apache not installed CD-ROM Linux Redhat, Linux SiS Linux rpm I apache-1.3.20-16+sis /etc/httpd/conf/httpd.conf ServerRoot

More information

Quota LVM (Logical Volume Manager)

Quota LVM (Logical Volume Manager) Quota, LVM 1 Quota LVM (Logical Volume Manager) 2 https://access.redhat.com/knowledge/docs/en- US/Red_Hat_Enterprise_Linux/6/html/Storage_Administration_Guide/c h-disk-quotas.html Quotas give us the ability

More information

ENTERPRISE LINUX SYSTEM ADMINISTRATION

ENTERPRISE LINUX SYSTEM ADMINISTRATION ENTERPRISE LINUX SYSTEM ADMINISTRATION COURSE DESCRIPTION: The GL250 is an in-depth course that explores installation, configuration and maintenance of Linux systems. The course focuses on issues universal

More information

ITDUMPS QUESTION & ANSWER. Accurate study guides, High passing rate! IT dumps provides update free of charge in one year!

ITDUMPS QUESTION & ANSWER. Accurate study guides, High passing rate! IT dumps provides update free of charge in one year! ITDUMPS QUESTION & ANSWER Accurate study guides, High passing rate! IT dumps provides update free of charge in one year! HTTP://WWW.ITDUMPS.COM Exam : 1Z0-100 Title : Oracle Linux 5 and 6 System Administration

More information

Actual4Test. Actual4test - actual test exam dumps-pass for IT exams

Actual4Test.   Actual4test - actual test exam dumps-pass for IT exams Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : RH133 Title : Red Hat Linux System Administration Vendor : RedHat Version : DEMO Get Latest & Valid

More information

More on file systems, Booting Todd Kelley CST8177 Todd Kelley 1

More on file systems, Booting Todd Kelley CST8177 Todd Kelley 1 More on file systems, Booting Todd Kelley kelleyt@algonquincollege.com CST8177 Todd Kelley 1 bind mounts quotas Booting process and SysVinit Installation Disk rescue mode 2 A bind mount is used to mount

More information

Linux System Administration, level 1. Lecture 4: Partitioning and Filesystems Part II: Tools & Methods

Linux System Administration, level 1. Lecture 4: Partitioning and Filesystems Part II: Tools & Methods Linux System Administration, level 1 Lecture 4: Partitioning and Filesystems Part II: Tools & Methods The sequence 1. Create one or more empty partitions 1a. (optional) Arrange them into a RAID or LVM

More information

1Z Oracle Linux 6 Implementation Essentials Exam Summary Syllabus Questions

1Z Oracle Linux 6 Implementation Essentials Exam Summary Syllabus Questions 1Z0-460 Oracle Linux 6 Implementation Essentials Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-460 Exam on Oracle Linux 6 Implementation Essentials.. 2 Oracle 1Z0-460 Certification

More information

Linux File System Quotas

Linux File System Quotas yolinux.com Linux File System Quotas Greg Ippolito Configuration: Configuration of disk usage quotas on Linux - Perform the following as root: 1. Edit file /etc/fstab to add qualifier "usrquota" or "grpquota"

More information

Cluster Computing Spring 2004 Paul A. Farrell 4/25/2006. Dept of Computer Science Kent State University 1. Configuring & Tuning Cluster Networks

Cluster Computing Spring 2004 Paul A. Farrell 4/25/2006. Dept of Computer Science Kent State University 1. Configuring & Tuning Cluster Networks Configuring & Tuning Cluster Networks Node connectivity Node visibility Networking Services Security Performance Enhancement Network Designs Impact of Network Design Security from outside attack Usability

More information

1Z0-100 oracle.

1Z0-100 oracle. 1Z0-100 oracle Number: 1Z0-100 Passing Score: 800 Time Limit: 120 min www.examsforall.com Exam A QUESTION 1 Which two aspects can be determined from this output? A. A device is failed and has been removed

More information

RHCSA BOOT CAMP. Filesystem Administration

RHCSA BOOT CAMP. Filesystem Administration RHCSA BOOT CAMP Filesystem Administration PARTITIONING What is partitioning? Splitting up a hard drive into organizable chunks Why? Isolates filesystem corruption Simplifies/speeds backups Allows optimizing

More information

Ubuntu Sever Administration. Duration:40 Hrs

Ubuntu Sever Administration. Duration:40 Hrs Ubuntu 12.04 Sever Administration Duration:40 Hrs 1. Introduction to Ubuntu Linux Ubuntu Server Ubuntu Server 12.04 Server Installation Alternatives and Options Server on the Desktop Installation Desktop

More information

Exam Actual. Higher Quality. Better Service! QUESTION & ANSWER

Exam Actual. Higher Quality. Better Service! QUESTION & ANSWER Higher Quality Better Service! Exam Actual QUESTION & ANSWER Accurate study guides, High passing rate! Exam Actual provides update free of charge in one year! http://www.examactual.com Exam : 050-710 Title

More information

CompTIA Exam LX0-102 Linux Part 2 Version: 10.0 [ Total Questions: 177 ]

CompTIA Exam LX0-102 Linux Part 2 Version: 10.0 [ Total Questions: 177 ] s@lm@n CompTIA Exam LX0-102 Linux Part 2 Version: 10.0 [ Total Questions: 177 ] CompTIA LX0-102 : Practice Test Topic break down Topic No. of Questions Topic 1: Volume A 60 Topic 2: Volume B 59 Topic 3:

More information

Course 55187B Linux System Administration

Course 55187B Linux System Administration Course Outline Module 1: System Startup and Shutdown This module explains how to manage startup and shutdown processes in Linux. Understanding the Boot Sequence The Grand Unified Boot Loader GRUB Configuration

More information

RHCE BOOT CAMP. File Sharing Services. Wednesday, November 28, 12

RHCE BOOT CAMP. File Sharing Services. Wednesday, November 28, 12 RHCE BOOT CAMP File Sharing Services NFS The Network File Service, or NFS, is used to share data with other servers. For this service to work properly, portmap and nfs-utils rpms must be installed, and

More information

Linux Essentials Objectives Topics:

Linux Essentials Objectives Topics: Linux Essentials Linux Essentials is a professional development certificate program that covers basic knowledge for those working and studying Open Source and various distributions of Linux. Exam Objectives

More information

LPI Exam Questions & Answers

LPI Exam Questions & Answers LPI 117-102 Exam Questions & Answers Number: 117-102 Passing Score: 800 Time Limit: 120 min File Version: 25.6 http://www.gratisexam.com/ LPI 117-102 Exam Questions & Answers Exam Name: Lpi Level 1 Exam

More information

Linux Bible. Negus, C. Table of Contents ISBN-13: Part I: Getting Started 1 Chapter 1: Starting with Linux 3

Linux Bible. Negus, C. Table of Contents ISBN-13: Part I: Getting Started 1 Chapter 1: Starting with Linux 3 Linux Bible Negus, C ISBN-13: 9781118218549 Table of Contents Introduction xxxiii Part I: Getting Started 1 Chapter 1: Starting with Linux 3 Understanding What Linux Is 4 Understanding How Linux Differs

More information

7. Try shrinking / -- what happens? Why? Cannot shrink the volume since we can not umount the / logical volume.

7. Try shrinking / -- what happens? Why? Cannot shrink the volume since we can not umount the / logical volume. OPS235 Lab 4 [1101] Sample/suggested Answers/notes (Please ask your professor if you need any clarification or more explanation on concepts you don't understand.) Investigation 1: How are LVMs managed

More information

Disks, Filesystems Todd Kelley CST8177 Todd Kelley 1

Disks, Filesystems Todd Kelley CST8177 Todd Kelley 1 Disks, Filesystems Todd Kelley kelleyt@algonquincollege.com CST8177 Todd Kelley 1 sudo and PATH (environment) disks partitioning formatting file systems: mkfs command checking file system integrity: fsck

More information

Oracle Linux 7: System Administration Ed 1

Oracle Linux 7: System Administration Ed 1 Oracle University Contact Us: +603 2299 3600, 1 800 80 6277 Oracle Linux 7: System Administration Ed 1 Duration: 5 Days What you will learn The Oracle Linux 7: System Administration training helps you

More information

Oracle Linux 7: System Administration Ed 1 LVC

Oracle Linux 7: System Administration Ed 1 LVC Oracle University Contact Us: +27 (0)11 319-4111 Oracle Linux 7: System Administration Ed 1 LVC Duration: 5 Days What you will learn The Oracle Linux 7: System Administration training helps you develop

More information

Oracle 1Z Enterprise Linux System Administration. Download Full Version :

Oracle 1Z Enterprise Linux System Administration. Download Full Version : Oracle 1Z0-403 Enterprise Linux System Administration Download Full Version : http://killexams.com/pass4sure/exam-detail/1z0-403 B. It does not provide any protection to remote X connections. C. It allows

More information

SysadminSG RHCSA Study Guide

SysadminSG RHCSA Study Guide SysadminSG RHCSA Study Guide This is the RHCSA Study Guide for the System Administration Study Group. The study guide is intended to be printed by those who wish to study common tasks performed by many

More information

Using grub to Boot various Operating Systems

Using grub to Boot various Operating Systems Operating Systems and Systems Integration Using grub to Boot various Operating Systems Contents 1 Aim 2 2 What You Will Do 2 3 Background 2 3.1 Installing grub in MBR from a floppy, and from the OS........

More information

A guide to RHCSA & RHCE Certifications

A guide to RHCSA & RHCE Certifications A guide to RHCSA & RHCE Certifications Luis M. Arranz L. Arranz, 2012 1/223 0. Introduction... 10 1. RHCSA/RHCE Objectives... 11 1.1. RHCSA... 11 1.2. RHCE... 13 2. SysV Init Runlevels... 15 2.1. Runlevels...

More information

1 LINUX KERNEL & DEVICES

1 LINUX KERNEL & DEVICES GL-250: Red Hat Linux Systems Administration Course Length: 5 days Course Description: The GL250 is an in-depth course that explores installation, configuration and maintenance of Linux systems. The course

More information

Red Hat System Administration I - RH124

Red Hat System Administration I - RH124 Course outline Red Hat System Administration I - RH124 Access the command line Log in to a Linux system and run simple commands using the shell. Manage files from the command line Copy, move, create, delete,

More information

Oracle Linux 7: System Administration Ed 1

Oracle Linux 7: System Administration Ed 1 Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle Linux 7: System Administration Ed 1 Duration: 5 Days What you will learn The Oracle Linux 7: System Administration training

More information

SELinux Workshop Redux Jamie Duncan, Red Hat RVaLUG 19 April 2014

SELinux Workshop Redux Jamie Duncan, Red Hat RVaLUG 19 April 2014 SELinux Workshop Redux Jamie Duncan, Red Hat RVaLUG 19 April 2014 Introduction The expectation is that you will either have a virtual machine to use, or that you will revert any changes made to your machine

More information

Mail Server Setup using Sendmail on CentOS 5.8 Jeong Chul tland12.wordpress.com Computer Science ITC and RUPP in Cambodia

Mail Server Setup using Sendmail on CentOS 5.8 Jeong Chul tland12.wordpress.com Computer Science ITC and RUPP in Cambodia Mail Server Setup using Sendmail on CentOS 5.8 Jeong Chul tland12.wordpress.com Computer Science ITC and RUPP in Cambodia Mail Server Setup using Sendmail on CentOS 5.8 Part 1 Step 1 Email Service Step

More information

Part 1 : Getting Familiar with Linux. Hours. Part II : Administering Red Hat Enterprise Linux

Part 1 : Getting Familiar with Linux. Hours. Part II : Administering Red Hat Enterprise Linux Part 1 : Getting Familiar with Linux Chapter 1 : Getting started with Red Hat Enterprise Linux Chapter 2 Finding Your Way on the Command Line Hours Part II : Administering Red Hat Enterprise Linux Linux,

More information

Basic Linux Security. Roman Bohuk University of Virginia

Basic Linux Security. Roman Bohuk University of Virginia Basic Linux Security Roman Bohuk University of Virginia What is Linux? An open source operating system Project started by Linus Torvalds kernel Kernel: core program that controls everything else (controls

More information

How to Use This Lab Manual

How to Use This Lab Manual 3 Contents How to Use This Lab Manual........................................ 5 Lab 1: Setting Up the Student System.................................. 7 Lab 2: Installing Fedora............................................

More information

ITCertMaster. Safe, simple and fast. 100% Pass guarantee! IT Certification Guaranteed, The Easy Way!

ITCertMaster.   Safe, simple and fast. 100% Pass guarantee! IT Certification Guaranteed, The Easy Way! ITCertMaster Safe, simple and fast. 100% Pass guarantee! http://www.itcertmaster.com Exam : 1z0-100 Title : Oracle Linux 5 and 6 System Administration Vendor : Oracle Version : DEMO Get Latest & Valid

More information

Oracle - Oracle Linux 5 6 System Administration Ed 3

Oracle - Oracle Linux 5 6 System Administration Ed 3 Oracle - Oracle Linux 5 6 System Administration Ed 3 Code: Lengt h: URL: D74508GC30 5 days View Online The Oracle Linux 5 & 6 System Administration course covers a range of skills including installation,

More information

Oracle Linux 5 & 6 System Administration

Oracle Linux 5 & 6 System Administration Oracle University Contact Us: 1.800.529.0165 Oracle Linux 5 & 6 System Administration Duration: 5 Days What you will learn This Oracle Linux System Administration training helps you develop a range of

More information

Answers to Even- Numbered Exercises

Answers to Even- Numbered Exercises Answers to Even- 17 Numbered Exercises from page 1077 1. What option should you use with fsck if you want to review the status of your filesystems without making any changes to them? How does fsck determine

More information

Setting Up Identity Management

Setting Up Identity Management APPENDIX D Setting Up Identity Management To prepare for the RHCSA and RHCE exams, you need to use a server that provides Lightweight Directory Access Protocol (LDAP) and Kerberos services. The configuration

More information

Using Fluentd as an alternative to Splunk

Using Fluentd as an alternative to Splunk Using Fluentd as an alternative to Splunk As infrastructure within organizations grows in size and the number of hosts, the cost of Splunk may become prohibitive. I created this document to demonstrate,

More information

Please choose the best answer. More than one answer might be true, but choose the one that is best.

Please choose the best answer. More than one answer might be true, but choose the one that is best. Introduction to Linux and Unix - endterm Please choose the best answer. More than one answer might be true, but choose the one that is best. SYSTEM STARTUP 1. A hard disk master boot record is located:

More information

Disks, Filesystems, Booting Todd Kelley CST8177 Todd Kelley 1

Disks, Filesystems, Booting Todd Kelley CST8177 Todd Kelley 1 Disks, Filesystems, Booting Todd Kelley kelleyt@algonquincollege.com CST8177 Todd Kelley 1 sudo and PATH (environment) disks partitioning formatting file systems: mkfs command checking file system integrity:

More information

Oracle Linux 7: System Administration Ed 2 Duration: 5 Days

Oracle Linux 7: System Administration Ed 2 Duration: 5 Days Oracle Linux 7: System Administration Ed 2 Duration: 5 Days The Oracle Linux 7: System Administration course covers a range of skills including installation, using the Unbreakable Enterprise Kernel, configuring

More information

Oracle Linux System AdministrationNEW

Oracle Linux System AdministrationNEW Oracle University Contact Us: 1.800.529.0165 Oracle Linux System AdministrationNEW Duration: 5 Days What you will learn The Oracle Linux System Administration course covers a range of skills including

More information

Oracle Linux 5 & 6 System Administration TOD

Oracle Linux 5 & 6 System Administration TOD Oracle University Contact Us: Local: 0845 777 7 711 Intl: +44 845 777 7 711 Oracle Linux 5 & 6 System Administration TOD Duration: 5 Days What you will learn The Oracle Linux System Administration course

More information

B. The configuration will deny access to /var/web/dirl/private.html, but it will allow access to /var/web/dirl/subdir2/private.html, for example.

B. The configuration will deny access to /var/web/dirl/private.html, but it will allow access to /var/web/dirl/subdir2/private.html, for example. Volume: 294 Questions Question No: 1 Given this excerpt from an Apache configuration file, which of the numbered lines has INCORRECT syntax? 1: 2: ServerAdmin admin9@server.example.org

More information

Exam Linux-Praxis - 1 ( From )

Exam Linux-Praxis - 1 ( From  ) Exam Linux-Praxis - 1 ( From http://www.linux-praxis.de ) (1)Which of the following commands results in mailing the content of the current directory to Bob? A. mail Bob < ls B. ls > mail Bob C. ls mail

More information