Practice Examples and Dumps & Tips for 2022 Latest 101-500 Valid Tests Dumps [Q99-Q117]

Share

Practice Examples and Dumps & Tips for 2022 Latest 101-500 Valid Tests Dumps

Latest [Feb 27, 2022] 100% Passing Guarantee - Brilliant 101-500 Exam Questions PDF


Associated Certificate

101-500 exam is a crucial component for the careers of Linux IT professionals and one part of the requirements for LPIC-1. It assesses students’ abilities to perform maintenance on the command line, configure and install a computer with Linux, and set up basic networking capabilities. It measures all the knowledge necessary for a holder of a middle-level IT certificate. With the successful completion of both 101-500 and 102-500 tests, students will obtain the desired certificate.

 

NEW QUESTION 99
What is the difference between the --remove and the --purge action with the dpkg command?

  • A. --remove only removes the program, --purge only removes the config files
  • B. --remove removes only the package file itself, --purge removes all files related to the package
  • C. --remove removes the program, --purge also removes the config files
  • D. --remove removes a package, --purge also removes all packages dependent on it

Answer: C

 

NEW QUESTION 100
When removing a package on a system using dpkg package management, which dpkgoption ensures configuration files are removed as well?
--clean

  • A. --declare
  • B. --purge
  • C. --vacuum
  • D.
  • E. --remove

Answer: C

 

NEW QUESTION 101
A faulty kernel module is causing issues with a network interface card. Which of the following actions ensures that this module is not loaded automatically when the system boots?

  • A. Using modinfo -kfollowed by the name of the offending module
  • B. Deleting the kernel module's directory from the file system and recompiling the kernel, including its modules
  • C. Using modprobe -rfollowed by the name of the offending module
  • D. Adding a blacklistline including the name of the offending module to the file /etc/modprobe.d/ blacklist.conf
  • E. Using lsmod --remove --autocleanwithout specifying the name of a specific module

Answer: D

 

NEW QUESTION 102
Which daemon handles power management events on a Linux system?

  • A. inetd
  • B. pwrmgntd
  • C. batteryd
  • D. psd
  • E. acpid

Answer: E

 

NEW QUESTION 103
Which of the following sequences in the vi editor saves the opened document and exits the editor? (Choose two.) Ctrl XX

  • A.
  • B. Esc ZZ
  • C. Esc zz
  • D. Esc :wq
  • E. Ctrl :W

Answer: A,B

 

NEW QUESTION 104
Given the following input stream:
txt1.txt
atxt.txt
txtB.txt
Which of the following regular expressions turns this input stream into the following output stream?
txt1.bak.txt
atxt.bak.txt
txtB.bak.txt

  • A. s/^txt$/.bak^/
  • B. s/txt/bak.txt/
  • C. s/txt$/bak.txt/
  • D. s/[.txt]/.bak$1/
  • E. s/^.txt/.bak/

Answer: C

Explanation:
Explanation/Reference:

 

NEW QUESTION 105
Given a log file loga.log with timestamps of the format DD/MM/YYYY:hh:mm:ss, which command filters out all log entries in the time period between 8:00 am and 8:59 am?
grep -E ':08:[09]+:[09]+' loga.log

  • A. grep -E ':08:[00]+' loga.log
  • B.
  • C. grep -E loga.log ':08:[0-9]+:[0-9]+'
  • D. grep -E ':08:[0-9]+:[0-9]+' loga.log
  • E. grep loga.log ':08:[0-9]:[0-9]'

Answer: B

 

NEW QUESTION 106
What information can the lspci command display about the system hardware? (Choose THREE correct answers.)

  • A. Device IRQ settings
  • B. Device vendor identification
  • C. Ethernet MAC address
  • D. System battery type
  • E. PCI bus speed

Answer: A,B,E

 

NEW QUESTION 107
Which of the following statements are correct about the initial RAM disk involved in the boot process of Linux?
(Choose two.)

  • A. An initramfs file contains the MBR, the bootloader and the Linux kernel.
  • B. The kernel uses the initramfs temporarily before accessing the real root file system.
  • C. An initramfs is a compressed file system archive, which can be unpacked to examine its contents.
  • D. After a successful boot, the initramfs contents are available in /run/initramfs/.
  • E. An initramfs does not depend on a specific kernel version and is not changed after the initial installation.

Answer: C,D

 

NEW QUESTION 108
What does the command mount --bind do?

  • A. It mounts all file systems listed in /etc/fstab which have the option userbind set
  • B. It mounts all available filesystems to the current directory
  • C. It makes the contents of one directory available in another directory
  • D. It permanently mounts a regular file to a directory
  • E. It mounts all user mountable filesystems to the user's home directory

Answer: C

 

NEW QUESTION 109
You suspect that a new ethernet card might be conflicting with another device. Which file should you check within the /proc tree to learn which IRQs are being used by which kernel drivers?

Answer:

Explanation:
interrupts, /proc/interrupts

 

NEW QUESTION 110
FILL BLANK
What directory contains configuration files for additional yum repositories? (Specify the full path to the directory.)

Answer:

Explanation:
/etc/yum.conf

 

NEW QUESTION 111
You are trying to make a hard link to an ordinary file but ln returns an error. Which of the following could cause this?

  • A. You do not own the source file.
  • B. The source file is a shell script.
  • C. The source and the target are on different filesystems.
  • D. The source file is read-only.
  • E. The source file is hidden.

Answer: C

 

NEW QUESTION 112
Which command uninstalls a package but keeps its configuration files in case the package is re-installed?

  • A. dpkg -s pkgname
  • B. dpkg -r pkgname
  • C. dpkg -v pkgname
  • D. dpkg -L pkgname
  • E. dpkg -P pkgname

Answer: B

 

NEW QUESTION 113
When redirecting the output of findto the xargscommand, what option to findis useful if the filenames contain spaces?
-rep-space

  • A. -printnul
  • B. -ignore-space
  • C. -print0
  • D. -nospace

Answer: C

 

NEW QUESTION 114
When redirecting the output of find to the xargs command, what option to find is useful if the filenames contain spaces?

  • A. -printnul
  • B. -ignore-space
  • C. -print0
  • D. -nospace
  • E. -rep-space

Answer: C

 

NEW QUESTION 115
Which of the following commands can be used to search for the executable file foo when it has been placed in a directory not included in $PATH?

  • A. whereis
  • B. which
  • C. find
  • D. apropos
  • E. query

Answer: C

 

NEW QUESTION 116
A Debian package creates several files during its installation. Which of the following commands searches for packages owning the file /etc/debian_version?

  • A. apt-file /etc/debian_version
  • B. apt-get search /etc/debian_version
  • C. dpkg -S /etc/debian_version
  • D. apt -r /etc/debian_version
  • E. find /etc/debian_version -dpkg

Answer: C

Explanation:
Explanation/Reference:

 

NEW QUESTION 117
......


The Linux Professional Institute represents a global certificate standard for open source professionals and provides online learning about complex computational systems. One of the most popular exams offered by this vendor is 101-500, and it is essential to understand its components and layout in order to gain the most from it. The opportunities this test brings include earning the LPIC-1 certification.

 

101-500 are Available for Instant Access: https://examcollection.prep4king.com/101-500-latest-questions.html