101-500 Dumps Updated Oct 23, 2023 Practice Test and 246 unique questions [Q94-Q111]

Share

101-500 Dumps Updated Oct 23, 2023 Practice Test and 246 unique questions

2023 Latest 100% Exam Passing Ratio - 101-500 Dumps PDF


Lpi 101-500 exam is intended for individuals who have basic knowledge of Linux and are interested in pursuing a career in Linux system administration. It is also suitable for experienced Linux administrators who want to obtain a recognized certification to validate their skills and knowledge. 101-500 exam is available in several languages, including English, German, Spanish, Portuguese, French, and Japanese, making it accessible to candidates worldwide.


What Is LPIC-1 Certification?

The LPIC-1 is the first training in the Linux professional certification path that validates your ability to configure basic networks, a computer running Linux, and complete maintenance using the command line. This certificate is intended to reflect the latest concepts and the candidate's ability to manage modern concepts in real-world working environments. Most of the objectives tested on this exam are centered around critical job skills which will determine if you are ready for a career in this field.


The LPIC-1 Exam 101, Part 1 of 2, version 5.0 is a valuable certification for anyone who is interested in Linux administration. It is an entry-level certification that provides a solid foundation in Linux administration, making it an ideal starting point for those who are new to the field. Additionally, the certification is globally recognized, which means that it is a valuable asset for anyone who wants to work in the Linux industry.

 

NEW QUESTION # 94
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. find /etc/debian_version -dpkg
  • C. apt -r /etc/debian_version
  • D. dpkg -S /etc/debian_version
  • E. apt-get search /etc/debian_version

Answer: D


NEW QUESTION # 95
A user accidentally created the subdirectory \dirin his home directory. Which of the following commands will remote that directory?

  • A. rmdir ~/'dir'
  • B. rmdir '~/\dir'
  • C. rmdir "~/\dir"
  • D. rmdir ~/\dir
  • E. rmdir ~/\\dir

Answer: D

Explanation:
Explanation/Reference:


NEW QUESTION # 96
Which option to the tee command will cause the output to be concatenated on the end of the output file instead of overwriting the existing file contents?

  • A. --continue
  • B. --no-clobber
  • C. -a
  • D. -c

Answer: C


NEW QUESTION # 97
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
s/^.txt/.bak/

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

Answer: D


NEW QUESTION # 98
When redirecting the output of findto the xargscommand, what option to findis useful if the filenames contain spaces?

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

Answer: B


NEW QUESTION # 99
Which command must be entered before exiting vi to save the current file as filea.txt?
%s filea.txt

  • A. :save filea.txt
  • B. %w filea.txt
  • C.
  • D. :w filea.txt
  • E. :s filea.txt

Answer: E


NEW QUESTION # 100
Which of the following are valid stream redirection operators within Bash? (Choose THREE correct answers.)

  • A. <<<
  • B. %>
  • C. <
  • D. >>>
  • E. >

Answer: A,C,E


NEW QUESTION # 101
Consider the following directory:
drwxrwxr-x 2 root sales 4096 Jan 1 15:21 sales
Which command ensures new files created within the directory salesare owned by the group sales?
(Choose two.)

  • A.
  • B. chown --persistent *.sales sales
  • C. chmod g+ssales
    setpol -R newgroup=sales sales
  • D. chmod 2775 sales
  • E. chgrp -p sales sales

Answer: A,C


NEW QUESTION # 102
Which file in the /proc filesystem lists parameters passed from the bootloader to the kernel?
(Specify the file name only without any path.)

Answer:

Explanation:
cmdline, /proc/cmdline


NEW QUESTION # 103
Which command will uninstall a package but leave its configuration files in case the package is re-installed?

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

Answer: B


NEW QUESTION # 104
Which of the following is correct when talking about mount points?

  • A. Files within a directory are deleted when the directory is used as a mount point.
  • B. Every existing directory can be used as a mount point.
  • C. Directories need to have the SetUID flag set to be used as a mount point.
  • D. Only empty directories can be used as a mount point.

Answer: B


NEW QUESTION # 105
Which of the following shell redirections will write standard output and standard error output to a file named filename?

  • A. 1>&2>filename
  • B. >>filename
  • C. >filename 2>&1
  • D. 1&2>filename
  • E. 2>&1 >filename

Answer: C


NEW QUESTION # 106
What is the first program the Linux kernel starts at boot time when using System V init?

  • A. /etc/rc.d/rcinit
  • B. /sbin/init
  • C. /boot/init
  • D. /lib/init.so
  • E. /proc/sys/kernel/init

Answer: B


NEW QUESTION # 107
Given the following two symbolic links in a System V init configuration:
/etc/rc1.d/K01apache2
/etc/rc2.d/S02apache2
When are the scripts executed that are referenced by these links? (Choose two.)

  • A. Both S02apache2and K01apache2are run during a system shutdown.
  • B. K01apache2is never run because K indicates a deactivated service.
  • C. S02apache2is run when runlevel 2 is entered.
  • D. S02apache2is run when runlevel 2 is left.
  • E. K01apache2is run when runlevel 1 is entered.

Answer: B,C

Explanation:
Explanation/Reference:


NEW QUESTION # 108
Which of the following commands installs all packages with a name ending with the string foo?

  • A. zypper update "foo?"
  • B. zypper install "*foo"
  • C. zypper add ".*foo"
  • D. zypper force "foo*"
  • E. zypper get "*foo"

Answer: B


NEW QUESTION # 109
Which SysV init configuration file is commonly used to set the default run level?
(Specify the full name of the file, including path.)

Answer:

Explanation:
inittab


NEW QUESTION # 110
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.txt/
  • B. s/^txt$/.bak^/
  • C. s/^.txt/.bak/
  • D. s/txt$/bak.txt/
  • E. s/[.txt]/.bak$1/

Answer: D


NEW QUESTION # 111
......

Verified 101-500 dumps Q&As - 100% Pass from ExamDumpsVCE: https://www.examdumpsvce.com/101-500-valid-exam-dumps.html

Pass Exam With Full Sureness - 101-500 Dumps with 246 Questions: https://drive.google.com/open?id=1iOwUidHKamYQxD99zFUsRUhODeT89tHu