• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/22

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

22 Cards in this Set

  • Front
  • Back
What does RHEL MBR contains to boot the system?
grub boot loader
GRUB boot loader config file locations
/etc/grub.conf or /boot/grub/grub.conf
How to boot into Rescue Mode
a) boot RHEL installation CD b) at installation boot prompt type: linux rescue
How to boot into Rescue Mode with third-party driver support?
linux rescue dd
How do you prvent a RHEL driver from loading if it causes a problem?
Blacklist that driiver from loading with: linux rescue rdblacklist=driver_name
How to permanently disable a driver from loading at startup?
add rdblacklist=driver_name to /boot/grub/grub.conf file
Steps to restore GRUB bootloader on MBR
a) boot linux rescue mode b) chroot /mnt/sysimage to mount root partition c) grub-install /dev/sda d) modify grub.conf file if necessary
How to enter single user mode?
At boot type: init 1 or single
What is the difference between emergency mode and single user mode?
Emergency mode boot into the most minimal environment. Root file system is loaded as read only and no INIT scripts are loaded
How to boot into emergency mode?
at boot prompt, type: emergency
How to uinstall a driver in rescue mode?
a) boot into rescue mode b) chroot /mnt/sysimage c) rpm -e driver_name
How to do in-place upgrade of RHE systems?
a) boot install CD b) type: linux upgradeany
What can be used to capture dump file when system crashes?
kdump
What can be used to analyze vmcore dump file generated from kdump tool?
crash
How to configure order in which domain name is resolved?
/etc/nsswitch.conf
How to restrict resource usage for users such as memory and cpu time?
/etc/security/limits.conf
How to convert ext2 partition to ext3 partition without data loss?
tune2fs -j
ntp configuration file
/etc/ntp.conf
time zone configuration file
/etc/sysconfig/clock
Utility to change services start-up options for desired runlevels (eg 3 and 5). Similar to Windows services.msc
ntsysv --level 35
How to check what services/user is using what process/files/dir/mount points/ports etc..?
fuser -v
How to kill all process that is using a filename?
fuser -k filename