πŸ”

XK0-005 β€” questions

Page 9 of 14 Β· 263 total questions.

Topic 1 Β· Question 163

Which of the following enables administrators to configure and enforce MFA on a Linux system?

  • AKerberos
  • BSELinux
  • CPAM (correct answer)
  • DPKI
Reveal answer & explanation
Correct answer: C

The correct answer is C. Option C: PAM

Topic 1 Β· Question 164

A database administrator requested the installation of a custom database on one of the servers. Which of the following should the Linux administrator configure so the requested packages can be installed?

  • A/etc/yum.conf
  • B/etc/ssh/sshd.conf
  • C/etc/yum.repos.d/db.repo (correct answer)
  • D/etc/resolv.conf
Reveal answer & explanation
Correct answer: C

The correct answer is C. Option C: /etc/yum.repos.d/db.repo

Topic 1 Β· Question 165

In which of the following filesystems are system logs commonly stored?

  • A/var (correct answer)
  • B/tmp
  • C/etc
  • D/opt
Reveal answer & explanation
Correct answer: A

The correct answer is A. Option A: /var

Topic 1 Β· Question 166

A systems administrator has been unable to terminate a process. Which of the following should the administrator use to forcibly stop the process?

  • Akill -1
  • Bkill -3 (correct answer)
  • Ckill -15
  • Dkill -HUP
  • Ekill -TERM
Reveal answer & explanation
Correct answer: B

The correct answer is B. Option B: kill -3

Topic 1 Β· Question 167

A systems administrator is compiling a report containing information about processes that are listening on the network ports of a Linux server. Which of the following commands will allow the administrator to obtain the needed information?

  • Ass -plnt (correct answer)
  • Btcpdump -nL
  • Cnetstat -pn
  • Dlsof -lt
Reveal answer & explanation
Correct answer: A

The correct answer is A. Option A: ss -plnt

Topic 1 Β· Question 168

At what point is the Internal Certificate Authority (ICA) created?

  • ADuring the primary Security Management Server installation process. (correct answer)
  • BUpon creation of a certificate.
  • CWhen an administrator decides to create one.
  • DWhen an administrator initially logs into SmartConsole.
Reveal answer & explanation
Correct answer: A

The correct answer is A. Option A: During the primary Security Management Server installation process.

Topic 1 Β· Question 169

Rugged appliances are small appliances with ruggedized hardware and like Quantum Spark appliance they use which operating system?

  • ACentos Linux
  • BGaia embedded (correct answer)
  • CGaia
  • DRed Hat Enterprise Linux version 5
Reveal answer & explanation
Correct answer: B

The correct answer is B. Option B: Gaia embedded

Topic 1 Β· Question 170

Using AD Query, the security gateway connections to the Active Directory Domain Controllers using what protocol?

  • AWindows Management Instrumentation (WMI) (correct answer)
  • BHypertext Transfer Protocol Secure (HTTPS)
  • CLightweight Directory Access Protocol (LDAP)
  • DRemote Desktop Protocol (RDP)
Reveal answer & explanation
Correct answer: A

The correct answer is A. Option A: Windows Management Instrumentation (WMI) This option keeps traffic private / properly secured as required.

Topic 1 Β· Question 171

What is the main objective when using Application Control?

  • ATo filter out specific content.
  • BTo assist the firewall blade with handling traffic.
  • CTo see what users are doing.
  • DEnsure security and privacy of information. (correct answer)
Reveal answer & explanation
Correct answer: D

The correct answer is D. Option D: Ensure security and privacy of information.

Topic 1 Β· Question 172

As part of the requirements for installing a new application, the swappiness parameter needs to be changed to 0. This change needs to persist across reboots and be applied immediately. A Linux systems administrator is performing this change. Which of the following steps should the administrator complete to accomplish this task?

  • Aecho "vm.swappiness=0" >> /etc/sysctl.conf && sysctl -p (correct answer)
  • Becho "vm.swappiness=0" >> /proc/meminfo && sysctl -a
  • Csysctl -v >> /proc/meminfo && echo "vm.swapiness=0"
  • Dsysctl -h "vm.swapiness=0" && echo /etc/vmswapiness
Reveal answer & explanation
Correct answer: A

The correct answer is A. Option A: echo "vm.swappiness=0" >> /etc/sysctl.conf && sysctl -p

Topic 1 Β· Question 173

A systems administrator wants to list all local accounts in which the UID is greater than 500. Which of the following commands will give the correct output?

  • Afind /etc/passwd -size +500
  • Bcut -d: -f1 /etc/passwd > 500
  • Cawk -F: '$3 > 500 {print $1}' /etc/passwd (correct answer)
  • Dsed '/UID/' /etc/passwd < 500
Reveal answer & explanation
Correct answer: C

The correct answer is C. Option C: awk -F: '$3 > 500 {print $1}' /etc/passwd

Topic 1 Β· Question 174

A systems administrator is tasked with changing the default shell of a system account in order to disable iterative logins. Which of the following is the BEST option for the administrator to use as the new shell?

  • A/sbin/nologin (correct answer)
  • B/bin/sh
  • C/sbin/setenforce
  • D/bin/bash
Reveal answer & explanation
Correct answer: A

The correct answer is A. Option A: /sbin/nologin

Topic 1 Β· Question 175

A junior systems administrator recently installed an HBA card in one of the servers that is deployed for a production environment. Which of the following commands can the administrator use to confirm on which server the card was installed?

  • Alspci | egrep β€˜hba|fibr’ (correct answer)
  • Blspci | zgrep β€˜hba|fibr’
  • Clspci | pgrep β€˜hba|fibr’
  • Dlspci | β€˜hba|fibr’
Reveal answer & explanation
Correct answer: A

The correct answer is A. Option A: lspci | egrep β€˜hba|fibr’

Topic 1 Β· Question 176

A new disk was presented to a server as /dev/sdd. The systems administrator needs to check if a partition table is on that disk. Which of the following commands can show this information?

  • Alsscsi
  • Bfdisk
  • Cblkid (correct answer)
  • Dpartprobe
Reveal answer & explanation
Correct answer: C

The correct answer is C. Option C: blkid

Topic 1 Β· Question 177

A systems administrator wants to upgrade /bin/someapp to a new version, but the administrator does not know the package name. Which of the following will show the RPM package name that provides that binary file?

  • Arpm -qf /bin/someapp (correct answer)
  • Brpm -Vv /bin/someapp
  • Crpm -p /bin/someapp
  • Drpm -i /bin/someapp
Reveal answer & explanation
Correct answer: A

The correct answer is A. Option A: rpm -qf /bin/someapp

Topic 1 Β· Question 178

A systems administrator is installing various software packages using a package manager. Which of the following commands would the administrator use on the Linux server to install the package?

  • Awinget
  • Bsoftwareupdate
  • Cyum-config
  • Dapt (correct answer)
Reveal answer & explanation
Correct answer: D

The correct answer is D. Option D: apt

Topic 1 Β· Question 180

An administrator started a long-running process in the foreground that needs to continue without interruption. Which of the following keystrokes should the administrator use to continue running the process in the background?

  • Abg
  • Bbg (correct answer)
  • Cjobs -1
  • Dbg &
Reveal answer & explanation
Correct answer: B

The correct answer is B. Option B: bg

Topic 1 Β· Question 181 Β· Select all that apply

A Linux administrator has physically added a new RAID adapter to a system. Which of the following commands should the Linux administrator run to confirm that the device has been recognized? (Choose two.)

  • Armmod
  • Bls -ll /etc
  • Clshw -class disk (correct answer)
  • Dpvdisplay
  • Ermdir /dev
  • Fdmesg (correct answer)
Reveal answer & explanation
Correct answer: C, F

The correct answer is C, F. Option C: lshw -class disk Option F: dmesg

Topic 1 Β· Question 182

Based on the given command: find /home/user1 -type f -name "*.txt" -size +100M Which of the following will the command accomplish?

  • AIt finds all the files ending with .txt with a size less than 100MB in /home/user1 directory.
  • BIt finds all the files ending with .txt with a size of 100MB in /home/user1 directory.
  • CIt finds all the directories with .txt files with a size of 100MB in /home folder.
  • DIt finds all the files ending with .txt with a size of over 100MB in /home/user1 directory. (correct answer)
Reveal answer & explanation
Correct answer: D

The correct answer is D. Option D: It finds all the files ending with .txt with a size of over 100MB in /home/user1 directory.

Topic 1 Β· Question 183

While inspecting a recently compromised Linux system, the administrator identified a number of processes that should not have been running: Which of the following commands should the administrator use to terminate all of the identified processes?

Exhibit 1 for question 183
  • Apkill -9 -f "upload*.sh" (correct answer)
  • Bkill -9 "upload*.sh"
  • Ckillall -9 "upload*.sh"
  • Dskill -9 "upload*.sh"
Reveal answer & explanation
Correct answer: A

The correct answer is A. Option A: pkill -9 -f "upload*.sh"

Showing questions 161–180 of 263 Β· Page 9 of 14