
[2022] 101-500.pdf - Questions Answers PDF Sample Questions Reliable
Lpi 101-500 Dumps PDF Are going to be The Best Score
Exam Overview
During the LPI 101-500 exam, students will be tested on their knowledge of different topics ranging from hardware configuration to booting processes to virtualization, and more. The skills they validate are used in real-world situations which the exam will replicate, showing one’s competency in business environment scenarios.
The pattern of the LPI 101-500 exam includes 60 multiple-choice and fill-in-the-blank questions that should be answered within a 90-minute period. No prerequisites are set for it, and its cost is dependent on the applicant’s country of residence (with typical pricing is of about $200 USD). The languages available are English and Japanese.
NEW QUESTION 72
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 73
Which of the following commands is used to change options and positional parameters within a running Bash shell?
- A. history
- B. bashconf
- C. envsetup
- D. setsh
- E. set
Answer: E
Explanation:
Explanation/Reference:
NEW QUESTION 74
The command dbmaint & was used to run dbmaintin the background. However, dbmaintis terminated after logging out of the system. Which alternative dbmaintinvocation lets dbmaintcontinue to run even when the user running the program logs out?
- A. nohup dbmaint &
- B. job -b dmaint
- C. wait dbmaint
- D. bg dbmaint
- E. dbmaint &>/dev/pts/null
Answer: A
NEW QUESTION 75
Which of the following information is stored within the BIOS? (Choose TWO correct answers.)
- A. Boot device order
- B. Hardware configuration
- C. Linux kernel version
- D. Timezone
- E. The system's hostname
Answer: A,B
NEW QUESTION 76
When considering the use of hard links, what are valid reasons not to use hard links?
- A. When a hard linked file is changed, a copy of the file is created and consumes additional space
- B. Each hard link has individual ownership, permissions and ACLs which can lead to unintended disclosure of file content
- C. Hard links are not available on all Linux systems because traditional filesystems, such as ext4, do not support them
- D. Hard links are specific to one filesystem and cannot point to files on another filesystem
- E. If users other than root should be able to create hard links, sulnhas to be installed and configured
Answer: D
Explanation:
Explanation/Reference:
NEW QUESTION 77
What is the effect of the -voption for the grepcommand?
- A. It only outputs non-matching lines.
- B. It enables color to highlight matching parts.
- C. It outputs all lines and prefixes matching lines with a+.
- D. It changes the output order showing the last matching line first.
- E. It shows the command's version information.
Answer: A
NEW QUESTION 78
Which file in /proc describes the IRQs that are used by various kernel drivers?
(Specify the file name only without any path.)
Answer:
Explanation:
interrupts
NEW QUESTION 79
Which of the following commands displays the manual page command from section 1?
man command(1)
- A. man -s 1 command
- B.
- C. man 1 command
- D. man command@1
- E. man 1.command
Answer: E
NEW QUESTION 80
Which of the following files, located in a user's home directory, contains the Bash history?
- A. .bash_history
- B. history
- C. bashrc_history
- D. .history_bash
- E. bash_histfile
Answer: A
NEW QUESTION 81
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. s/^txt$/.bak^/
- B. s/txt/bak.txt/
- C.
- D. s/[.txt]/.bak$1/
- E. s/txt$/bak.txt/
Answer: A
NEW QUESTION 82
Which of the following options for the kernel's command line changes the systemd boot target to rescue.target instead of the default target?
- A. systemd.unit=rescue.target
- B. systemd.service=rescue.target
- C. systemd.runlevel=rescue.target
- D. systemd.default=rescue.target
- E. systemd.target=rescue.target
Answer: A
NEW QUESTION 83
Which signal is missing from the following command that is commonly used to instruct a daemon to reinitialize itself, including reading configuration files?
killall -s _______ daemon
Answer:
Explanation:
HUP, SIGHUP, 1
NEW QUESTION 84
Which of the following is a limitation of the cut command?
- A. Thecutcommand cannot use different input and output delimiters.
- B. Thecutcommand cannot reorder fields.
- C. Thecutcommand only works on ASCIItext.
- D. Thecutcommand can only select output by field position.
Answer: B
NEW QUESTION 85
FILL BLANK
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
NEW QUESTION 86
Which of the following files, located in a user's home directory, contains the Bash history?
- A. .bash_histfile
- B. .bash_history
- C. .history
- D. .history_bash
- E. .bashrc_history
Answer: A
NEW QUESTION 87
Which command will display messages from the kernel that were output during the normal boot sequence?
Answer:
Explanation:
dmesg, /bin/dmesg
NEW QUESTION 88
Which program runs a command in specific intervals and refreshes the display of the program's output?
(Specify ONLY the command without any path or parameters.)
Answer:
Explanation:
watch
NEW QUESTION 89
Which of the following commands can perform searches on file contents using regular expressions?
find
- A. reggrep
- B. grep
- C. pgrep
- D.
- E. locate
Answer: A
NEW QUESTION 90
Which of the following commands determines a file's format by using a definition database file which contains information about all common file types?
- A. magic
- B. hash
- C. pmagic
- D. file
- E. type
Answer: D
NEW QUESTION 91
When in Normal mode invi, which character can be used to begin a reverse search of the text?
- A. F
- B. /
- C. ?
- D. r
Answer: C
NEW QUESTION 92
Which of the following commands can be used to create a new file that is 100kB in size?
- A. dd
- B. touch
- C. mkfile
- D. file
Answer: A
NEW QUESTION 93
Which of the following signals is sent to a process when the key combination Ctrl+C is pressed on the keyboard?
- A. SIGINT
- B. SIGCONT
- C. SIGKILL
- D. SIGSTOP
- E. SIGTERM
Answer: A
NEW QUESTION 94
Which of the following commands outputs testto the shell?
cat <!EOT
- A. test
EOT
cat <|EOT - B. test
EOT
cat !<EOT - C. test
EOT
cat <<EOT - D. test
EOT - E. test
EOT
cat &<EOT
Answer: D
NEW QUESTION 95
Which of the following sequences in the vi editor saves the opened document and exits the editor? (Choose two.)
- A. Esc ZZ
- B. Ctrl XX
- C. Esc zz
- D. Esc :wq
- E. Ctrl :W
Answer: A,D
NEW QUESTION 96
Which program updates the database that is used by the locate command?
Answer:
Explanation:
updatedb
NEW QUESTION 97
......
LPI 101-500 Exam Syllabus Topics:
| Topic | Details |
|---|---|
System Architecture | |
| Determine and configure hardware settings | Weight:2 Key Knowledge Areas: The following is a partial list of the used files, terms and utilities: |
| Boot the system | Weight:3 Key Knowledge Areas: The following is a partial list of the used files,terms and utilities: |
| Change runlevels / boot targets and shutdown or reboot system | Weight:3 Key Knowledge Areas: The following is a partial list of the used files,terms and utilities: |
Linux Installation and Package Management | |
| Design hard disk layout | Weight:2 Key Knowledge Areas: The following is a partial list of the used files,terms and utilities: |
| Install a boot manager | Weight:2 Key Knowledge Areas: The following is a partial list of the used files, terms and utilities: |
| Manage shared libraries | Weight:1 Key Knowledge Areas: The following is a partial list of the used files,terms and utilities: |
| Use Debian package management | Weight:3 Key Knowledge Areas: The following is a partial list of the used files,terms and utilities: |
| Use RPM and YUM package management | Weight:3 Key Knowledge Areas: The following is a partial list of the used files,terms and utilities: |
| Linux as a virtualization guest | Weight: 1 Description: Candidates should understand the implications of virtualization and cloud computing on a Linux guest system. Key Knowledge Areas: The following is a partial list of the used files, terms and utilities: |
GNU and Unix Commands | |
| Work on the command line | Weight:4 Key Knowledge Areas: The following is a partial list of the used files,terms and utilities: |
| Process text streams using filters | Weight:2 Key Knowledge Areas: The following is a partial list of the used files, terms and utilities: |
| Perform basic file management | Weight:4 Key Knowledge Areas: The following is a partial list of the used files, terms and utilities: |
| Use streams, pipes and redirects | Weight:4 Key Knowledge Areas: The following is a partial list of the used files, terms and utilities: |
| Create, monitor and kill processes | Weight:4 Key Knowledge Areas: The following is a partial list of the used files, terms and utilities: |
| Modify process execution priorities | Weight:2 Key Knowledge Areas: The following is a partial list of the used files, terms and utilities: |
| Search text files using regular expressions | Weight:2 Key Knowledge Areas: The following is a partial list of the used files,terms and utilities: |
| Basic file editing | Weight:3 Key Knowledge Areas: The following is a partial list of the used files, terms and utilities: |
Devices, Linux Filesystems, Filesystem Hierarchy Standard | |
Prerequisites for 101-500 exam
There are no prerequisites for this certification
Use 101-500 Exam Dumps (2022 PDF Dumps) To Have Reliable 101-500 Test Engine: https://pass4sure.actual4cert.com/101-500-pass4sure-vce.html