RHCSA

Primary tabs

Ray Test's picture

RHCSA Flash cards EX200

Bookmark to learn: Login to use bookmarks.

Bookmark to learn: Login to use bookmarks.

Add to collection ... add RHCSA to your collections:

Help using Flashcards ...just like in real life ;)

  1. Look at the card, do you know this one? Click to flip the card and check yourself.
  2. Mark card Right or Wrong, this card will be removed from the deck and your score kept.
  3. At any point you can Shuffle, Reveal cards and more via Deck controls.
  4. Continue to reveal the wrong cards until you have correctly answered the entire deck. Good job!
  5. Via the Actions button you can Shuffle, Unshuffle, Flip all Cards, Reset score, etc.
  6. Come back soon, we'll keep your score.
    “Repetition is the mother of all learning.”
  7. Signed in users can Create, Edit, Import, Export decks and more!.

Bookmark to learn: Login to use bookmarks.

Share via these services ...

Email this deck:

Right: #
Wrong: #
# Right & # Wrong of #

does LVM save metadata about each volume?
how many copies does it make? where, and why there?

Yes, LVM saves metadata about volumes in the begging, and we can choose ourselves whether we want to make 0,1 or 2 copies of this metadata.

how to show enabled repositories on the system?

yum repolist

which file should you modify in order to mount specific files on reboot? (automatically)

/etc/fstab

If I am the user user1, will I be able to watch the Virtual Machines of user2?
what If I will be root?

You can only watch your own Virtual Machines, unless you are the root user, then, you can watch everyone's.

where are the DNS servers addresses are being saved?
(The servers which we send DNS requests to)

/etc/resolv.conf

what is a volume group?

A combination of physical volumes, which creates a space that can be allocated by the LVM.

what is the commands for:
finding files in your current directory who owned by root, and modified in the last 3 days

find . -name root -mtime -3

LVM acronym

Logical Volume Manager

how to remove all process owned by the user "user"?

pkill - u user $(pgrep -u user)
get all process of the user user and kill them.

Remove the httpd package, and it's cache files

yum remove httpd
yum clean all

where are the repositories configuration files (.repo) are being kept?

/etc/yum.repos.d

what is the tool for working on GPT based partitions?

gdisk

how to install, enable, and start the at daemon?

yum install at
systemctl enable atd
systemctl start atd

how to select your current time zone?

tzselect
timedatectl set-timezone America/Chicago
chronic restart

Inside virsh, how to watch running domains?
how to start a virtual machine?
how to shut down a virtual machine?

list - will show only running domains
start domain_name - will start the specific domain
shutdown domain_name - will shut down the domain
0 0