Updated Nov 19, 2021 101-500 Exam Dumps - PDF Questions and Testing Engine
New (2021) Lpi 101-500 Exam Dumps
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:
- Systems Administrator.
- Cyber Security Engineer.
- Linux System Administrator.
- System Administrator, Computer / Network.
LPIC-1 Linux Administrator , 101-500 Certified Professional salary
The average salary of a LPIC-1 Linux Administrator in
- Europe - 42,347 EURO
- United State - 55,123 USD
- England - 40,432 POUND
- India - 10,42,327 INR
NEW QUESTION 129
Which of the following signals is sent to a process when the key combination CTRL+C is pressed on the keyboard?
- A. SIGTERM
- B. SIGSTOP
- C. SIGINT
- D. SIGKILL
Answer: C
NEW QUESTION 130
FILL BLANK
Which command is used to change the priority of an already running process? (Specify ONLY the command without any path or parameters.)
Answer:
Explanation:
renice
NEW QUESTION 131
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)?
- A. ln a.txt c.txt
- B. ln -i 525385 c.txt
- C. ln -h a.txt c.txt
- D. ln c.txt a.txt
- E. ln -f c.txt a.txt
Answer: A
Explanation:
Explanation
NEW QUESTION 132
The dpkg-____ command will ask configuration questions for a specified package, just as if the package were being installed for the first time.
Answer:
Explanation:
reconfigure
NEW QUESTION 133
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. /bin/bash /usr/local/bin/runme.sh
- C. . /usr/local/bin/runme.sh
- D. /usr/local/bin/runme.sh
- E. run /usr/local/bin/runme.sh
Answer: A,C
NEW QUESTION 134
Which shell command is used to continue background execution of a suspended command?
- A. bg
- B. exec
- C. &
- D. :&
- E. cont
Answer: A
NEW QUESTION 135
Which of the following commands will change all CR-LF pairs in an imported text file, userlist.txt, to Linux standard LF characters and store it as newlist.txt?
- A. tr -c '\n\r' '' < newlist.txt > userlist.txt
- B. tr -s '^M' '^J' userlist.txt newlist.txt
- C. tr '\r' '\n' userlist.txt newlist.txt
- D. tr '\r\n' '' < userlist.txt > newlist.txt
- E. tr -d '\r' < userlist.txt > newlist.txt
Answer: E
NEW QUESTION 136
Which character, added to the end of a command, runs that command in the background as a child process of the current shell?
- A. #
- B. %
- C. &
- D. +
- E. !
Answer: C
NEW QUESTION 137
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.) source /usr/local/bin/runme.sh
- A. /bin/bash /usr/local/bin/runme.sh
- B. . /usr/local/bin/runme.sh
- C. /usr/local/bin/runme.sh
- D. run /usr/local/bin/runme.sh
- E.
Answer: C,D
NEW QUESTION 138
The message "Hard Disk Error" is displayed on the screen during Stage 1 of the GRUB boot process. What does this indicate?
- A. The next Stage cannot be read from the hard disk because GRUB was unable to determine the size and geometry of the disk
- B. The BIOS was unable to read the necessary data from the Master Boot Record to begin the boot process
- C. The kernel was unable to execute /bin/init
- D. One or more of the filesystems on the hard disk has errors and a filesystem check should be run
Answer: A
NEW QUESTION 139
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 140
How many fields are in a syntactically correct line of /etc/fstab?
- A. 0
- B. 1
- C. 2
- D. 3
- E. 4
Answer: B
NEW QUESTION 141
Which of the following Linux filesystems preallocate a fixed number of inodes when creating a new filesystem instead of generating them as needed? (Choose two.)
- A. ext2
- B. XFS
- C. JFS
- D. ext3
- E. procfs
Answer: A,D
NEW QUESTION 142
An administrator has issued the following command:
grub-install --root-directory=/custom-grub /dev/sda
In which directory will new configuration files be found? (Provide the full directory path only without the filename)
Answer:
Explanation:
/custom-grub/boot/grub/, /custom-grub/boot/grub
NEW QUESTION 143
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 144
Which command is used in a Linux environment to create a new directory? (Specify ONLY the command without any path or parameters.)
Answer:
Explanation:
mkdir, /usr/bin/mkdir
NEW QUESTION 145
Which of the following commands displays the output of the foocommand on the screen and also writes it to a file called /tmp/foodata?
foo | less /tmp/foodata
- A. foo > /tmp/foodata
- B. foo | cp /tmp/foodata
- C. foo > stdout >> /tmp/foodata
- D. foo | tee /tmp/foodata
- E.
Answer: C
NEW QUESTION 146
Which of the following commands prints all files and directories within the /tmp directory or its subdirectories which are also owned by the user root? (Choose TWO correct answers.)
- A. find -path /tmp -user root -print
- B. find /tmp -user root
- C. find /tmp -uid root -print
- D. find -path /tmp -uid root
- E. find /tmp -user root -print
Answer: B,E
NEW QUESTION 147
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.default=rescue.target
- B. systemd.service=rescue.target
- C. systemd.unit=rescue.target
- D. systemd.runlevel=rescue.target
- E. systemd.target=rescue.target
Answer: C
NEW QUESTION 148
What command will generate a list of user names from /etc/passwd along with their login shell?
- A. column -s : 1,7 /etc/passwd
- B. chop -c 1,7 /etc/passwd
- C. colrm 1,7 /etc/passwd
- D. cut -d: -f1,7 /etc/passwd
Answer: D
NEW QUESTION 149
......
What is the duration, language, and format of LPIC-1 Linux Administrator , 101-500 Exam
- Passing Score : 500 / 800
- Duration : 90 minutes
- Validity Period : 5 years
- Number of questions : 60 questions
- Language : English, German, Japanese, Portuguese, Spanish, Chinese (Simplified) and Chinese (Traditional)
Updated Verified Pass 101-500 Exam - Real Questions & Answers: https://www.guidetorrent.com/101-500-pdf-free-download.html
Best Way To Study For Lpi 101-500 Exam Brilliant 101-500 Exam Questions PDF: https://drive.google.com/open?id=1kHNcLJQmhm9ztkjfhhXh7QNrCOIFBbow