Garantie de satisfaction à 100% Disponible immédiatement après paiement En ligne et en PDF Tu n'es attaché à rien
logo-home
Red Hat Certified Systems Administrator (EX200) - RHEL7 €12,43   Ajouter au panier

Examen

Red Hat Certified Systems Administrator (EX200) - RHEL7

 4 vues  0 achat
  • Cours
  • Établissement

What command would you execute to view the default systemd target / runlevel? - Answer- systemctl get-default What command would you execute to set the default systemd target to the functional equivalent of runlevel 3? - Answer- systemctl set-default multi-user What command would you execute ...

[Montrer plus]

Aperçu 4 sur 40  pages

  • 4 septembre 2023
  • 40
  • 2023/2024
  • Examen
  • Questions et réponses
avatar-seller
RED HAT CERTIFIED SYSTEMS ADMINISTRATOR
(EX200) - RHEL7
What command would you execute to view the default systemd target / runlevel? -
Answer- systemctl get-default

What command would you execute to set the default systemd target to the functional
equivalent of runlevel 3? - Answer- systemctl set-default multi-user

What command would you execute to set the default systemd target to the functional
equivalent of runlevel 5? - Answer- systemctl set-default graphical.target

When using the "systemctl" utility, what is the default systemd type if omitted? - Answer-
service

What actions would you perform in order to reset the root password on a RHEL7
system? - Answer- - Append "rd.break" to the respective kernel entry in GRUB2
- Boot system
- mount -o remount,rw /sysroot
- chroot /sysroot
- passwd
- touch /.autorelabel
- reboot

How much memory does RHEL7 support on a single host? - Answer- 3TB

What log file records the configuration entered during install? - Answer- /root/anaconda-
ks.cfg

What file lists the packages being installed during installation? - Answer- /root/install.log

What log file stores general messages generated during the installation? - Answer-
/root/install.log.syslog

What log file captures messages related to network interfaces? - Answer-
/var/log/anaconda.ifcfg.log

What log file contains informational, debug, and other general messages? - Answer-
/var/log/anaconda.log

What log file records messages related to the kernel? - Answer- /var/log/anaconda.log

What log file stores X window information? - Answer- /var/log/anaconda.xlog

,What log file records messages generated by the yum and rpm commands during
software installation? - Answer- /var/log/anaconda.packaging.log

What log file captures messages generated by external programs? - Answer-
/var/log/anaconda.program.log

What log file records messages generated by storage modules? - Answer-
/var/log/anaconda.storage.log

What log file contains messages related to yum packages? - Answer-
/var/log/anaconda.yum.log

Where are log files generated during installation, and where are they moved to when
installation is complete? - Answer- /tmp; /var/log

What command would you execute to install graphical support? - Answer- yum group
install -y 'GNOME' 'X Window System'

What command would you execute to display the terminal name we are currently
logged on to? - Answer- tty

What is the name of the standard virtualization toolset available with RHEL7? - Answer-
libvirt

What command would you execute to verify that your system supports virtualization in
general? - Answer- lscpu | grep Virtualization

What command would you execute to verify that your system with an Intel processor will
support virtualization? - Answer- grep vmx /proc/cpuinfo

What command would you execute to verify that your system with an Intel processor will
support virtualization? - Answer- grep svm /proc/cpuinfo

What command would you execute to install all of the pertinent KVM virtualization
packages? - Answer- yum group install "virtualization tools" "virtualization hypervisor"
"virtualization client" "virtualization platform" -y

What is the name of the first virtual switch that is created by default when libvirtd is
started? - Answer- virbr0

What IP address will automatically be assigned to the default switch, virbr0? - Answer-
192.168.122.1

What are two types of virtual network switch configuations that are supported by libvirt?
- Answer- isolated and routed

,What are isolated switches? - Answer- Isolated switches allow guests to communicate
with one another and with the host, but not to external networks, and uses NAT and
forwarding

What are routed switches? - Answer- Routed switches connect directly to the physical
host's network, allow guests to communicate directly to external hosts.

What is a storage pool? - Answer- A storage pool is a storage area that is used for the
provision of storage to virtual machines

What command would you execute to create virtual machines and install RHEL in
them? - Answer- virt-install

What command would you execute to launch the graphical utility for management of
virtual machines? - Answer- virt-manager

What is the default location for storing virtual machine images? - Answer-
/var/lib/libvirt/images

What command would you execute to display a list of present virtual networks? -
Answer- virsh net-list

What would you enter into an XML file to address the following objectives when creating
a new virtual network with the virsh utility?

1) Create a persistent NAT virtual network rhcsa7_xml?
2) Assign it subnet 192.168.3.0/24
3) Assign a gateway of 192.168.3.1
4) Assign a DHCP range of 192.168.3.2 to 192.168.3.254
5) Assign a port range of 1024 to 65535 - Answer- <network>
<name>rhcsa7_xml</name>
<bridge name='virbr2' stp='on' delay='0' />
<forward mode='nat'>
<nat>
<port start='1024' end='65535'/>
</nat>
</forward>
<ip address='192.168.3.1' netmask='255.255.255.0'>
<dhcp>
<range start='192.168.3.2' end='192.168.3.254' />
</dhcp>
</ip>
</network>

, What command would you execute to create a new virtual network from a definition
contained within the file /home/stanky/rhcsa7.xml? - Answer- virsh net-define
/home/stanky/rhcsa7.xml

What command would you execute to set automatic start-up of the virtual network
named rhcsa7_xml? - Answer- virsh net-autostart rhcsa7_xml

What command would you execute to start the virtual network named rhcsa7_xml? -
Answer- virsh net-start rhcsa7_xml

What command would you execute to display details for the rhcsa7_xml network? -
Answer- virsh net-info rhcsa7_xml

What command would you execute to define a new storage pool as type "dir" with a
source path of "- - - -" and a target path of the /var/lib/libvrirt/rhcsa7_pool directory? -
Answer- virsh pool-define-as rhcsa7_pool dir - - - - /var/lib/libvirt/rhcsa7_pool

What command would you execute to set automatic start-up of the storage pool named
rhcsa7_pool? - Answer- virsh pool-autostart rhcsa7_pool

What command would you execute to start the storage pool named rhcsa7_pool? -
Answer- virsh pool-start rhcsa7_pool

What command would you execute to display all existent storage pools? - Answer- virsh
pool-list

What command would you execute to display details for the rhcsa7_pool storage pool?
- Answer- virsh pool-info rhcsa7_pool

What command would you execute to create a volume named rhcsa7_vol with a size of
25G within a storage pool named rhcsa7_pool? - Answer- virsh vol-create-as
rhcsa7_pool rhcsa7_vol 25G

What command would you execute to install FTP server software? - Answer- yum install
-y vsftpd

What command would you execute to add a permanent rule to the firewall to allow FTP
traffic to pass through? - Answer- firewall-cmd --permanent --add-service=ftp &&
firewall-cmd --reload

What command would you execute to validate the syntax of a Kickstart file located at
/var/kick_me.ks? - Answer- ksvalidator /var/kick_me.ks

What package would you install to provide the ksvalidator utility? - Answer- pykickstart

wget placeholder - Answer-

Les avantages d'acheter des résumés chez Stuvia:

Qualité garantie par les avis des clients

Qualité garantie par les avis des clients

Les clients de Stuvia ont évalués plus de 700 000 résumés. C'est comme ça que vous savez que vous achetez les meilleurs documents.

L’achat facile et rapide

L’achat facile et rapide

Vous pouvez payer rapidement avec iDeal, carte de crédit ou Stuvia-crédit pour les résumés. Il n'y a pas d'adhésion nécessaire.

Focus sur l’essentiel

Focus sur l’essentiel

Vos camarades écrivent eux-mêmes les notes d’étude, c’est pourquoi les documents sont toujours fiables et à jour. Cela garantit que vous arrivez rapidement au coeur du matériel.

Foire aux questions

Qu'est-ce que j'obtiens en achetant ce document ?

Vous obtenez un PDF, disponible immédiatement après votre achat. Le document acheté est accessible à tout moment, n'importe où et indéfiniment via votre profil.

Garantie de remboursement : comment ça marche ?

Notre garantie de satisfaction garantit que vous trouverez toujours un document d'étude qui vous convient. Vous remplissez un formulaire et notre équipe du service client s'occupe du reste.

Auprès de qui est-ce que j'achète ce résumé ?

Stuvia est une place de marché. Alors, vous n'achetez donc pas ce document chez nous, mais auprès du vendeur GEEKA. Stuvia facilite les paiements au vendeur.

Est-ce que j'aurai un abonnement?

Non, vous n'achetez ce résumé que pour €12,43. Vous n'êtes lié à rien après votre achat.

Peut-on faire confiance à Stuvia ?

4.6 étoiles sur Google & Trustpilot (+1000 avis)

72841 résumés ont été vendus ces 30 derniers jours

Fondée en 2010, la référence pour acheter des résumés depuis déjà 14 ans

Commencez à vendre!
€12,43
  • (0)
  Ajouter