Lpi 101-500 LPI Linux Administrator – 101 (LPIC-1 101) Online Training
Lpi 101-500 Online Training
The questions for 101-500 were last updated at Dec 20,2024.
- Exam Code: 101-500
- Exam Name: LPI Linux Administrator - 101 (LPIC-1 101)
- Certification Provider: Lpi
- Latest update: Dec 20,2024
What is the purpose of the Bash built-in export command?
- A . It allows disks to be mounted remotely.
- B . It runs a command as a process in a subshell.
- C . It makes the command history available to subshells.
- D . It sets up environment variables for applications.
- E . It shares NFS partitions for use by other systems on the network.
What is the effect of the egrep command when the -v option is used?
- A . It enables color to highlight matching parts.
- B . It only outputs non-matching lines.
- C . It shows the command’s version information.
- D . It changes the output order showing the last matching line first.
Which of the following are valid stream redirection operators within Bash? (Choose THREE Answer s.)
- A . <
- B . <<<
- C . >
- D . >>>
- E . %>
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 . #
In Bash, inserting 1>&2 after a command redirects
- A . standard error to standard input.
- B . standard input to standard error.
- C . standard output to standard error.
- D . standard error to standard output.
- E . standard output to standard input.
Which variable defines the directories in which a Bash shell searches for executable commands?
- A . BASHEXEC
- B . BASHRC
- C . PATH
- D . EXECPATH
- E . PATHRC
Regarding the command:
nice -5 /usr/bin/prog
Which of the following statements is correct?
- A . /usr/bin/prog is executed with a nice level of -5.
- B . /usr/bin/prog is executed with a nice level of 5.
- C . /usr/bin/prog is executed with a priority of -5.
- D . /usr/bin/prog is executed with a priority of 5.
What does ?the symbol within regular expressions represent?
- A . Match the preceding qualifier one or more times.
- B . Match the preceding qualifier zero or more times.
- C . Match the preceding qualifier zero or one times.
- D . Match a literal ?character.
Which shell command is used to continue background execution of a suspended command?
- A . &
- B . bg
- C . cont
- D . exec
- E . :&
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/ letter < newletter
- C . sed’s/bob/Bob’ letter > newletter
- D . sed ‘s/bob/Bob/g’ letter > newletter
- E . sed ‘s/bob, Bob/’ letter > newletter
Error
in this question :
What is the first program that is usually started, at boot time, by the Linux kernel when using SysV init?
Hide Solution
Correct Answer: C
Are you sure this is the correct annswer?
i think it is B