RSS2.0

RHCT RHCE Exam: questions

Thursday, March 30, 2006

For RHCT and RHCE exam questions, you should know about networking as it is required for these exams under Networking configuration :

  • network card/device is recognised as eth0 in redhat linux and other flavours of linux
  • ifconfig eth0 will display ip address for network interface
  • you should expect questions in RHCE/RHCT exam to bring up and down network interface:
    • ifup eth0
    • ifdown eth0
  • For RHCT/RHCE exam question you should know network configuration files:
    • /etc/sysconfig/network-scripts/ifcfg-eth0 is network configuration file
DEVICE=eth0
BOOTPROTO=none
ONBOOT=yes
IPADDR=192.168.30.29
NETMASK=255.255.255.0
GATEWAY=192.168.30.1
    • For RHCT/RHCE exam you should know how to change static ip to dhcp
    • Simply change BOOTPROTO to dhcp from none
  • you can also run system-config-network to change these settings by GUI but for RHCT and RHCE exam you should know how to change network setting using command line that will save time as time is critical in RHCT and RHCE exams.

RHCT RHCE Exam :Redhat Linux Exam Certification Tip 1

Sunday, March 26, 2006

RHCE RHCT Linux Certification Exam :Tip 1

Since RHCT and RHCE exam are Performance based exam, you don't need any book or Exam Cram. I realized this when i passed my RHCT exam without reading a book. All you need is PC running Linux. If you don't have PC at work or at home ..Buy one PC , belive me this will help you for RHCT and RHCE Linux certification Exam.Best tip for RHCE/RHCT exam is to have hands on experience... a pc running linux at home

If you already have PC then for installing Linux you have to partition your har drive and this is critical step , if you are not an PC expert you might loose your data while partitioning your single har drive and might loose important data. But here is good news using VMware you can install Redhat Linux on your windows operating system. Search this blog on your left you will find where and how you can get Vmware.

RHCE RHCT Exam: How to enable root telnet for redhat enterprise Linux RHEL4

Thursday, March 23, 2006

How to enable root telnet for redhat enterprise Linux RHEL4:

To enable direct telnet for root account on redhat linux enterprise servers ( i have done wthis on RHEL3 and RHEL4 without any issues ) over the network :

under /etc/ directory edit /etc/securetty file and add pts entries :

pts/0
pts/1
pts/2
pts/3
pts/4
pts/5
pts/6
pts/7
pts/8
pts/9
pts/10

or Just remove /etc/securetty file alltogether , i prefer moving /etc/securetty it.

mv /etc/securetty /etc/securetty.sav


Bingo root telnet is enabled now ... on redhat enterprise Linux 4 .That's all you need to do to enable telnet access for root account on Linux servers. Root access is activated right away you don't need to restart any services on redhat linux .


Warning : telnet is not secure and you should be using SSH only for logins on RHEL4.Keep reading redhatcert blog to find out how to enable SSH logins on redhat enterprise Linux 4.

RHCE RHCT Linux EXAM CRAM

RHCE and RHCT Linux Exam Cram :

Although there are several books available online and in stores for RHCE and RHCT Exam Cram.But Buying Linux Exam Cram doen't make any sense. There are books out there :
Don't Buy any more Linux "Exam Cram" because Linux is performance based exam.I don't understand there are so many Linux Exam Cram book out there and many websites claiming Exam Cram online to pass RHCT and RHCE exam. Truth is there are no multiple choice questions in RHCE and RHCT exam . so..... don't get fooled and please don't purchase any Linux exam cram for RHCT and RHCE.. If you really want to purchase any RHCE/RHCT exam book
buy RHCE exam study Guide RH302

But again no linux exam cram ....don't buy any linux exam cram and don't get fooled.

RHCE RHCT EXAM: configure kernel parameters in redhat enterprise Linux

Tuesday, March 21, 2006

configure kernel parameters in redhat enterprise Linux :


How to turn off ping response in redhat Linux :

#cat /proc/sys/net/ipv4/icmp_echo_ignore_all
0

Zero means ping is enable and Linux machine will respond to ping requests.

# echo "1" > /proc/sys/net/ipv4/icmp_echo_ignore_all

This kernel change is not permanent , to make it permanent add to /etc/sysctl.conf :

net.ipv4.icmp_echo_ignore_all=1

RHCE RHCT Exam questions : enable telnet services on Linux

How to enable telnet services on Redhat enterprise Linux :

# chkconfig telnet --list
#chkconfig telnet on
#chkconfig --level 35 telnet on

where 3 and 5 are run levels , so telnet will run when Linux is running in runlevel 3 and 5 only.

RHCE RHCT Exam questions : How to change Linux default run level

You shoud know how to change Redhat Linux system default run level for RHCE and RHCT exam preparation and questions :

1. edit /etc/inittab file and changerun level from level 5 (which is X or GUI mode ) to run level 3


# vi /etc/inittab
id:3:initdefault:

2. simply reboot the server and your default run level changes to level 3 which is text based linux session.

3.How to dynamically change the runlevel of Linux system without rebooting

  • e.g: switch to single user mode :
# telinit S
  • e.g: switch to X or GUI (desktop) mode
#telinit 5
  • e.g:If you have made changes to the /etc/inittab file to change the default runlevel and want to change the system to that new default you can do so by using the telinit with the q command-line option:
# telinit q

RHCE RHCT EXAM: Pass exam

About Passing RHCT and RHCE exam , both exams are Pass or non-Pass. Redhat Send results for pass or did not pass within 3 Business days.

How do you receive your RHCT/RHCE Certificate:

If you pass your RHCT and RHCE exams , you will receive certificate in form of PDF emailed to you.Redhat doesn't mail RHCT and RHCE certificate bia regular mail.

RHCE RHCT EXAM: How to reboot Redhat linux

Sunday, March 19, 2006

How to reboot or Shutdown Redhat linux :

REBOOT REDHAT LINUX :

#shutdown -r now

OR

# reboot

OR init 6

OR CTRL+ALT+DEL

RHCE RHCT Linux Certification Exam : GRUB Boot loader

Configuring the GRUB Boot Loader for RHCE/RHCT :

To configure the boot loader or edit anything for GRUB configuration file is:

  • /boot/grub/grub.conf
  • In case MBR is corrupted try
    • /sbin/grub-install /dev/hda
where hda is first installed PCI hard drive on your RHEL 4 server.




#NOTICE: You have a /boot partition. This means that
# all kernel paths are relative to /boot/
default=0
timeout=30
splashimage=(hd0,0)/grub/splash.xpm.gz

title Red Hat Linux (2.4.18-0.12)
root (hd0,0)
kernel /vmlinuz-2.4.18-0.12 ro root=/dev/hda3
initrd /initrd-2.4.18-0.12.img

RHCE RHCT Linux Certification Exam Guide :LINUX BIOS

LINUX BIOS :

When a microprocessor powers up, it starts executing instructions located in a ROM chip. These initial instructions are responsible for initializing the hardware (especially enabling RAM) and loading an operating system. The implementations and interfaces to this functionality vary from machine to machine, but its basic responsibility remains the same.

Here is an excelllent Resource on LINUX BIOS initialization ....

RHCE RHCT Linux Certification Exam: RHEL Boot sequence

Redhat Enterprise Linux 4 Boot Sequence :


For RHCE and RHCT exam you should know RHEL4 boot sequence as follows:

  • Bios Initialization
  • Loading Boot Loader phase
  • Kernel initialization
  • init startup which is first process to run in Linux during startup
  • Launching X or GUI if enabled

RHCE RHCT Linux Certification:RHCE Voted #1 Unix/Linux Certification

Friday, March 17, 2006

In December 2005 RHCE is vite #1 in Linux/UNIX Certification according to certcities.com. Red Hat's hands-on, flagship RHCE title is once again your pick for the best Linux certification, easily taking the top spot thanks to its stellar reputation, earned thanks to its eight-hour, hands-on lab exam and marketability in the industry.

RHCE Red Hat Certification Guide for Linux Exam RH302

Tuesday, March 14, 2006

RHCE Red Hat Certified Engineer Linux (Exam RH302) Analysis :
This book is best for RHCE Linux certification exam. This linux certification exam book covers classroom-based integrated study system for professional certification gives you complete coverage of all objectives for the Red Hat Certified Linux Engineer exam, hundreds of review questions, and hands-on lab exercises. The CD-ROM features two complete pencil and paper RHCE practice exams (available to Linux users), an electronic book, and a bonus Red Hat installation screen review.


If you are looking for good book to help you prepare for Red Hat Certification Engineer (RHCE) exam , you should look no further.Since RHCE exam is now hands-on the CD covers two complete sample exams based on what is publicly known about the RHCE exam experience.If you're really serious about getting most famous Linux certification exam (RHCE), read this book. I am working on Linux since 2001 but didn't appear for any Linux Certification exam. Finally when i heard RHCE - is very popular linux certification exam i brought this Linux certification book to prepare for RHCE exam.

RHCE RHCT Linux Certification: Top rated Linux certifications

RHCT and RHCE Linux certifications are top rated Linux certifications in Market.A recent Independent Survey ranked RHCE highest quality training and certification in IT.
RHCT and RHCE certifications are Current for Red Hat Enterprise Linux 4 .RHCE is best fit for :

  • Experienced Linux and UNIX systems administrators and engineers.
  • UNIX administrators who have other UNIX certtifications but want to be Linux administrator as well with current growing demand for Linux in market.
  • UNIX and/or Linux power-users who may want focused training and certification on Red Hat Enterprise Linux
RH300 is best suited Training consists of 4 days of intensive training, emphasizing hands-on lab workshops with realistic configuration and administration tasks using Red Hat Linux, plus the Certification Lab Exam on day 5th day.

What it means to have RHCE and RHCT Certification ?

  • RHCE or RHCT certification serve as a metric of use to both individuals and employers to assess individual preparation and competency for key job roles involving Red Hat Linux computing
  • RHCE certification indicates that the person has passed a performance-based lab exam that tests his/her ability to: install and configure Red Hat Linux; understand limitations of hardware; configure basic networking and file systems for a network; configure the X Window System; perform essential Red Hat Linux system administration; configure basic security for a network server; set up and manage common enterprise networking (IP) services for the organization, carry out server diagnostics and troubleshooting.
  • RHCT certification indicates that the person has passed a realistic performance-based lab exam that tests his/her ability to: install and configure Red Hat Linux; understand limitations of hardware; configure basic networking and file systems for a single system attached to a network; configure the X Window System; perform essential Red Hat Linux system administration; configure basic host security, set up client-side networking services required to attach to a production network, and carry out basic diagnostics and troubleshooting.
RHCE and RHCT linux certification exams are lab-based, performance-based practical exams.

RHCT RHCE Linux Certification Exam:what you need to know for RHCT Certification

Wednesday, March 08, 2006

If you are already working on linux or even you are new you should know some of the required
skills for RHCT certification exam:

RHCTs should be able to perfoorm following Trouble shooting and system maintenance work :

  • boot systems into different run levels for troubleshooting and system maintenance
  • diagnose and correct misconfigured networking
  • diagnose and correct hostname resolution problems
  • configure the X Window System and a desktop environment
  • add new partitions, filesystems, and swap to existing systems
  • use standard command-line tools to analyze problems and configure system

RHCT RHCE Linux Certification EXAM GUIDE :RHCT exam course

Redhat offers Instructor based courses forRHCT and RHCE exams. If you are a working Professional chances are your Employer will send you for Training. If you have some working experience on redhat linux you should take course RH133 .RH133 is 4 and hald day class and included RHCT exam at the end of last day. Not to get confused here RHCT exam is also called RH202 RHCT Certification lab exam. If you are windows professional or new in IT you should go
with RH033 - Redhat Linux essentials course.

Again RHCT exam is performance based exam , all you need is hands on experience on Linux.

Requirement for RHCT exam is :RH033, RH133, or equivalent experience attaching new Red Hat systems to a corporate network. RHCT exam is best exam in Linux world and available at a proce tag of $2,298 from Redhat.

RHCE RHCT EXAM: Red Hat Linux Certification Exam Simulator

Sunday, March 05, 2006

Few websites are offering Red Hat Linux Certification Exam simultaor. I have't used any Redhat Linux Certification simulator mydelsf, but if you like and want to score 100% you can try one of these .

Ensure your success in RHCE (Red Hat Linux Certification) with Whizlabs simulator, the most effective training software for the Linux certification. Developed by highly experienced and certified professionals, it offers 5 mock exams (250 questions) on the latest pattern in a simulated environment. Last but not the least; it comes with FREE technical support and "Unconditional 100% Money Back Guarantee". Check out the FREE demo version.

RHCT RHCE Linux Certification EXAM GUIDE Simulator

Few websites are offering Red Hat Linux Certification Exam simultaor. I have't used any Redhat Linux Certification simulator mydelsf, but if you like and want to score 100% you can try one of these .


Whizlabs RHCE (Red Hat Linux Certification) Exam Simulator

Ensure your success in RHCE (Red Hat Linux Certification) with Whizlabs simulator, the most effective training software for the Linux certification. Developed by highly experienced and certified professionals, it offers 5 mock exams (250 questions) on the latest pattern in a simulated environment. Last but not the least; it comes with FREE technical support and "Unconditional 100% Money Back Guarantee". Check out the FREE demo version.

RHCT RHCE EXAM GUIDE : RAID 5 in Redhat Linux

RAID 5 requires 3 disks or disk partitions of same size. Like RAID 0 this RAID level also allows you to create filesystem larger then any one disk partititions. For eample if you have 3 - 72 Gb hard disks you can have one filesystem as big as "140 " Gb disk size third disk will be used for parity saving. If you loose one disk you will be able to recover your data without any issue unlike mirroring.

RHCT RHCE Linux Certification EXAM GUIDE :RAID 1 in Linux

RAID level 1 also called "mirroring" and requires two RAID partitions.If any disk in the RAID fails, the RAOD device continues to function without loosing any data.

This is very useful fault tolerant , it's costly interms of disk requirements...

Performcance for read and writes are good.

RHCT RHCE EXAM GUIDE: Software RAID 0 on Linux

RAID 0 in Linux requires atleast 2 RAID partitions. RAID 0 in Linux offers high performanxe for read and writes.In Linux RAID 0 t doesn't offer any redundancy if one device fails it destroys your whole disk device.

RHCT RHCE EXAM GUIDE: Can i use RAID on linux ?

Linux supports Both Hardware and Software RAID. RAID is an acronym for "redundant array of inexpensive disks". During linux installation you will have option to use

  • RAID 0 : called striping which offers no redundancy
  • RAID 1: called Mirroring
  • RAID 5 : Striping with distibuted parity

RHCT RHCE EXAM GUIDE : How much Swap needed for Linux

"swap" is also known as "virtual memory" in windows world. If you don't have enough physical memroy in your pc to run your operating system you can use "swap" to run your operating system in our case we will say Linux.

recommended swap space is usually twice as of real memory (2X)

Fast Internet surfing

Thursday, March 02, 2006

Recently i brought D-Link DI-624 Wireless router that supports 802.11g to upgrade my home wireless network.I got so frustrated using my 10 Mbps wireless router , i was getting disconnected and getting very weak signal in between... Many time i have to reboot my PC . I am running windows XP on my PC..... Finally when i was filing my taxes online last week .... my internet connection dropped 10
Buy on sale after MIR for $45.29
times....


I went to Best buy and Purchased D-Link wireless router for a faster 108Mbps network which cost me around $75 .... and a wireless USB adapter for my PC which costs me $70...

But let me tell you once i installed it and start surfing internet it was 100 times faster than speed that i used to work on ... Finally I jumped to amazon and find out it's selling same stuff was on sale for 22% less...