Lpi 101-500 Real Exam Questions Test Engine Dumps Training With 246 Questions
101-500 Actual Questions Answers PDF 100% Cover Real Exam Questions
For more info visit:
LPIC1 exam information LPIC1 101-500 exam objectives
Who should take the LPIC-1 Linux Administrator , 101-500 Exam
The 101-500 exam’s target audience is professionals who are looking forward to build their career in Linux system Administration domain. This exam is for:
- Cyber Security Engineer.
- Linux System Administrator.
- System Administrator, Computer / Network.
- Systems Administrator.
NEW QUESTION 145
From a Bash shell, which of the following commands directly execute the instructions from the file /usr/ local/bin/runme.shwithout starting a subshell? (Choose two.)
- A. source /usr/local/bin/runme.sh
- B. /usr/local/bin/runme.sh
- C. /bin/bash /usr/local/bin/runme.sh
- D. /usr/local/bin/runme.sh
- E. run /usr/local/bin/runme.sh
Answer: A,B
NEW QUESTION 146
Which of the following commands can be used to determine how long the system has been running? (Choose two.) uptime
- A. time --up
- B. top
- C. up
- D. uname -u
- E.
Answer: C,E
NEW QUESTION 147
What are the main differences between GPT and MBR partition tables regarding maximum number and size of partitions? (Choose two.)
- A. MBR can handle partition sizes up to 2.2 TB, whereas GPT supports sizes up to 9.4 ZB.
- B. By default, GPT can manage up to 128 partitions while MBR only supports four primary partitions.
- C. By default, GPT can manage up to 64 partitions while MBR only supports 16 primary partitions.
- D. MBR can handle partition sizes up to 4 TB, whereas GPT supports partition sizes up to 128 ZB.
- E. Both GPT and MBR support up to four primary partitions, each with up to 4096 TB.
Answer: A,B
NEW QUESTION 148
What can the Logical Volume Manager (LVM) be used for? (Choose THREE correct answers.)
- A. To dynamically create or delete logical volumes.
- B. To dynamically change the size of logical volumes.
- C. To create RAID 9 arrays.
- D. To encrypt logical volumes.
- E. To create snapshots.
Answer: A,B,E
NEW QUESTION 149
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 150
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$1/
- D. s/^.txt/.bak/
- E. s/txt$/bak.txt/
Answer: E
NEW QUESTION 151
A Debian package creates several files during its installation. Which of the following commands searches for packages owning the file /etc/debian_version?
apt-get search /etc/debian_version
- A. dpkg -S /etc/debian_version
- B. apt -r /etc/debian_version
- C. find /etc/debian_version -dpkg
- D.
- E. apt-file /etc/debian_version
Answer: E
NEW QUESTION 152
Which of the following regular expressions represents a single upper-case letter?
- A. {AZ}
- B. :UPPER:
- C. !a-z
- D. %C
- E. [A-Z]
Answer: E
NEW QUESTION 153
Which of the following commands list all files and directories within the /tmp/ directory and its subdirectories which are owned by the user root? (Choose two.)
- A. find /tmp -uid root -print
- B. find -path /tmp -uid root
- C. find /tmp -user root
- D. find -path /tmp -user root -print
- E. find /tmp -user root -print
Answer: D,E
NEW QUESTION 154
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. dpkg -S /etc/debian_version
- C. apt-get search /etc/debian_version
- D. apt -r /etc/debian_version
- E. find /etc/debian_version -dpkg
Answer: E
NEW QUESTION 155
Which of the following sequences in the vi editor saves the opened document and exits the editor? (Choose two.) Ctrl XX
- A. Ctrl :W
- B.
- C. Esc ZZ
- D. Esc zz
- E. Esc :wq
Answer: B,C
NEW QUESTION 156
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. pmagic
- B. file
- C. magic
- D. type
- E. hash
Answer: B
NEW QUESTION 157
Consider the following output from the command ls -i:
How would a new file named c.txt be created with the same inode number as a.txt(Inode 525385)?
ln -h a.txt c.txt
- A. ln -f c.txt a.txt
- B. ln a.txt c.txt
- C. ln -i 525385 c.txt
- D. ln c.txt a.txt
Answer: A
NEW QUESTION 158
Which of the following properties of a Linux system should be changed when a virtual machine is cloned?
(Choose two.)
- A. The file system
- B. The SSH host keys
- C. The partitioning scheme
- D. The permissions of /root/
- E. The D-Bus Machine ID
Answer: B,D
NEW QUESTION 159
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. job -b dmaint
- B. wait dbmaint
- C. dbmaint &>/dev/pts/null
- D. bg dbmaint
- E. nohup dbmaint &
Answer: E
NEW QUESTION 160
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 specifying the number right in front of a command such as 41or 2yj.
- B. By issuing a command such as :set repetition=4 with repeats every subsequent command 4 times.
- C. By selecting all affected lines using the shit and cursor keys before applying the command.
- D. By using the command :repeat followed by the number and the command
- E. By specifying the number after a command such as 14or yj2followed by escape.
Answer: A
NEW QUESTION 161
Which of the following sequences in the vi editor saves the opened document and exits the editor? (Choose TWO correct answers.)
- A. esc zz
- B. esc ZZ
- C. ctrl :w!
- D. esc :wq!
- E. ctrl XX
Answer: B,D
NEW QUESTION 162
Which of the following regular expressions represents a single upper-case letter?
- A. {AZ}
- B. :UPPER:
- C. !a-z
- D. %C
- E. [A-Z]
Answer: E
Explanation:
Explanation/Reference:
NEW QUESTION 163
Running chmod 640 filea.txtas a regular user doesn't update filea.txt's permission. What might be a reason why chmod cannot modify the permissions? (Choose two.)
- A. filea.txtis a symbolic link whose permissions are a fixed value which cannot be charged.
- B. filea.txthas the sticky bit set and a regular user cannot remove this permission.
- C. filea.txtis owned by another user and a regular user cannot change the permissions of another user's file.
- D. filea.txtis a hard link whose permissions are inherited from the target and cannot be set directly.
- E. filea.txthas the SetUID bit set which imposes the restriction that only the rootuser can make changes to the file.
Answer: A,C
NEW QUESTION 164
Which of the following commands are common Linux commands for file management? (Choose three correct answers.)
- A. cp
- B. copy
- C. mv
- D. move
- E. mkdir
Answer: A,C,E
NEW QUESTION 165
Which of the following commands will produce the following output?
- A. ps
- B. proclist
- C. jobs
- D. netstat
Answer: A
NEW QUESTION 166
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. Each hard link has individual ownership, permissions and ACLs which can lead to unintended disclosure of file content
- C. If users other than root should be able to create hard links, sulnhas to be installed and configured
- 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: D
NEW QUESTION 167
Which of the following properties of a Linux system should be changed when a virtual machine is cloned?
(Choose two.)
- A. The D-Bus Machine ID
- B. The file system
- C. The SSH host keys
- D. The permissions of /root/
- E. The partitioning scheme
Answer: A,C
NEW QUESTION 168
What is the first program the Linux kernel starts at boot time when using System V init?
- A. /sbin/init
- B. /boot/init
- C. /lib/init.so
- D. /etc/rc.d/rcinit
- E. /proc/sys/kernel/init
Answer: A
NEW QUESTION 169
What is true regarding the configuration of yum? (Choose two.)
- A. Changes to the repository configuration become active after running yum confupdate
- B. In case /etc/yum.repos.d/ contains files, /etc/yum.conf is ignored
- C. Repository configurations can include variables such as $basearch or $releasever
- D. Changes to the yum configuration become active after restarting the yumd service
- E. The configuration of package repositories can be divided into multiple files
Answer: B,C
NEW QUESTION 170
......
BraindumpsIT 101-500 Exam Practice Test Questions : https://www.braindumpsit.com/101-500_real-exam.html
101-500 Exam questions and answers: https://drive.google.com/open?id=1SrJJ4rWnyn6MIevrJ7ZJLEv7oP1EuuXU