
Latest [Feb 24, 2023] Real Lpi 101-500 Exam Dumps Questions
101-500 Dumps To Pass LPIC Level1 Exam in One Day (Updated 246 Questions)
Prospective Job Roles and Salary Potential
On average, an LPIC-1 certification holder earns about $77,066 annually as stated by Payscale. This certificate alone prepares students for the following jobs:
- Systems Administrator.
- Computer Scientist;
- Systems Engineer;
- Linux Systems Administrator;
Helpful Study Resources
In order to assist candidates with these subjects and ensure they understand each aspect, LPI provides a comprehensive training course for all students interested in taking the LPI 101-500 exam. It contains an extensive overview of the syllabus and supplies applicants with the tools they need in order to complete the test with the required score. The course comes in the form of well-structured study material and is available for free on the official website. By following this learning path, one will be able to grasp all the above topics in a thorough and precise manner and will understand what to expect in the real exam.
NEW QUESTION 129
Which chown command changes the ownership to dave and the group to staffon a file named data.txt?
chown dave/staff data.txt
- A.
- B. chown dave+staff data.txt
- C. chown --user dave --group staff data.txt
- D. chown dave:staff data.txt
- E. chown -u dave -g staff data.txt
Answer: A
NEW QUESTION 130
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. wait dbmaint
- B. nohup dbmaint &
- C. bg dbmaint
- D. dbmaint &>/dev/pts/null
- E. job -b dmaint
Answer: B
NEW QUESTION 131
Which of the following commands replaces each occurrence of 'bob' in the file letter with 'Bob' and writes the result to the file newletter?
- A. sed '/bob/Bob' letter > newletter
- B. sed 's/bob/Bob/g' letter > newletter
- C. sed 's/bob, Bob/' letter > newletter
- D. sed's/bob/Bob' letter > newletter
- E. sed s/bob/Bob/ letter < newletter
Answer: B
NEW QUESTION 132
In a nested directory structure, which find command line option would be used to restrict the command to searching down a particular number of subdirectories?
-maxdepth
- A. -s
- B. -n
- C. -dirmax
- D. -maxlevels
- E.
Answer: C
NEW QUESTION 133
Which run levels should never be declared as the default run level when using SysV init? (Choose TWO correct answers.)
- A. 0
- B. 1
- C. 2
- D. 3
- E. 4
Answer: D,E
NEW QUESTION 134
What can the Logical Volume Manager (LVM) be used for? (Choose three.)
- A. To create snapshots.
- B. To dynamically create or delete logical volumes.
- C. To encrypt logical volumes.
- D. To dynamically change the size of logical volumes.
- E. To create RAID 9 arrays.
Answer: A,B,D
NEW QUESTION 135
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. Deleting the kernel module's directory from the file system and recompiling the kernel, including its modules
- B. Using lsmod --remove --autocleanwithout specifying the name of a specific module
- C. Adding a blacklistline including the name of the offending module to the file /etc/modprobe.d/ blacklist.conf
- D. Using modinfo -kfollowed by the name of the offending module
- E. Using modprobe -rfollowed by the name of the offending module
Answer: C
NEW QUESTION 136
In compliance with the FHS, in which of the directories are man pages found?
- A. /opt/man
- B. /usr/doc/
- C. /var/man
- D. /usr/share/man
- E. /var/pkg/man
Answer: D
NEW QUESTION 137
Which of the following commands loads a kernel module along with any required dependency modules?
- A. module_install
- B. insmod
- C. loadmod
- D. modprobe
- E. depmod
Answer: D
Explanation:
Explanation/Reference:
NEW QUESTION 138
Which utility would be used to change how often a filesystem check is performed on an ext2 filesystem without losing any data stored on that filesystem?
- A. fixe2fs
- B. fsck
- C. tune2fs
- D. mod2fs
- E. mke2fs
Answer: C
NEW QUESTION 139
When redirecting the output of findto the xargscommand, what option to findis useful if the filenames contain spaces?
- A. -nospace
- B. -print0
- C. c-printnul
- D. -ignore-space
- E. -rep-space
Answer: B
NEW QUESTION 140
When booting from the hard disk, a computer successfully loads the Linux kernel and initramfs but hangs during the subsequent startup tasks. The system is booted using a Linux based rescue CD to investigate the problem. Which of the following methods helps to identify the root cause of the problem?
- A. Using the dmesgcommand from the rescue CD's shell to view the original system's boot logs.
- B. Rebooting again from the hard drive since the system successfully booted from the rescue CD.
- C. Using chrootto switch to the file system on the hard disk and use dmesgto view the logs.
- D. Investigating the file /var/log on the computer's hard disk for possible errors.
- E. Investigating the file /proc/kmsg on the computer's hard disk for possible errors.
Answer: D
NEW QUESTION 141
Which of the following statements is correct when talking about /proc/?
- A. All changes to files in /proc/ are stored in /etc/proc.d/ and restored on reboot.
- B. All files within /proc/ are only readable by the root user.
- C. All files within /proc/ are read-only and their contents cannot be changed.
- D. All changes to files in /proc/ are immediately recognized by the kernel.
Answer: D
NEW QUESTION 142
Which of the following commands makes /bin/foo executable by everyone but writable only by its owner?
- A. chmod 577 /bin/foo
- B. chmod o+rwx,a+rx /bin/foo
- C. chmod u=rwx,go=rx /bin/foo
- D. chmod 775 /bin/foo
Answer: C
NEW QUESTION 143
What is the name of the main configuration file for GNU GRUB? (Specify the file name only without any path.)
Answer:
Explanation:
menu.lst, grub.conf, grub.cfg
NEW QUESTION 144
When considering the use of hard links, what are valid reasons not to use hard links?
- A. Hard links are not available on all Linux systems because traditional filesystems, such as ext4, do not support them
- B. If users other than root should be able to create hard links, suln has to be installed and configured
- C. Each hard link has individual ownership, permissions and ACLs which can lead to unintended disclosure of file content
- D. Hard links are specific to one filesystem and cannot point to files on another filesystem
- E. When a hard linked file is changed, a copy of the file is created and consumes additional space
Answer: A
NEW QUESTION 145
In the vi editor, how can commands such as moving the cursor or copying lines into the buffer be issued multiple times or applied to multiple rows?
- A. By using the command :repeat followed by the number and the command.
- B. By selecting all affected lines using the shift and cursor keys before applying the command.
- C. By specifying the number right in front of a command such as 4l or 2yj.
- D. By issuing a command such as :set repetition=4 which repeats every subsequentcommand 4 times.
Answer: C
NEW QUESTION 146
Which of the following files, located in a user's home directory, contains the Bash history?
- A. .history_bash
- B. .bash_history
- C. .bash_histfile
- D. .history
- E. .bashrc_history
Answer: C
NEW QUESTION 147
Which of the following shell redirections will write standard output and standard error output to a file named filename?
- A. 2>&1 >filename
- B. >>filename
- C. 1>&2>filename
- D. 1&2>filename
- E. >filename 2>&1
Answer: E
NEW QUESTION 148
The message "Hard Disk Error" is displayed on the screen during Stage 1 of the GRUB boot process. What does this indicate?
- A. The kernel was unable to execute /bin/init
- B. The next Stage cannot be read from the hard disk because GRUB was unable to determine the size and geometry of the disk
- C. The BIOS was unable to read the necessary data from the Master Boot Record to begin the boot process
- D. One or more of the filesystems on the hard disk has errors and a filesystem check should be run
Answer: B
NEW QUESTION 149
Which of the following commands is used to update the list of available packages when using dpkg based package management?
- A. apt-get refresh
- B. apt-get update
- C. apt-cache update
- D. apt-cache upgrade
- E. apt-get upgrade
Answer: B
NEW QUESTION 150
When given the following command line.
echo "foo bar" | tee bar | cat
Which of the following output is created?
- A. cat
- B. foo
- C. tee bar
- D. foo bar
- E. bar
Answer: D
NEW QUESTION 151
Where does the BIOS search for a bootloader?
- A. The BIOS is not responsible to search for a valid bootloader.
- B. Only on the last added storage media.
- C. On all connected storage media in the defined boot device order.
- D. Only on hard disk drives in the defined boot device order.
- E. On all connected storage media regardless of the boot device order.
Answer: C
NEW QUESTION 152
During a system boot cycle, what is the program that is run after the BIOS completes its tasks?
- A. The inetd program
- B. The bootloader
- C. The kernel
- D. The init program
Answer: B
NEW QUESTION 153
Which of the following signals is sent to a process when the key combination CTRL+C is pressed on the keyboard?
- A. SIGKILL
- B. SIGSTOP
- C. SIGTERM
- D. SIGINT
Answer: D
NEW QUESTION 154
......
101-500 Exam Brain Dumps - Study Notes and Theory: https://www.exam4labs.com/101-500-practice-torrent.html
100% Guaranteed Results 101-500 Unlimited 246 Questions: https://drive.google.com/open?id=1wVqN8Y628_TAgRZ_QKqOo9ZkKa7aezK3