LCP-001 Linux Certified Professional (LCP) Powered by LPI

Loading demo links...

Showing 10–12 of 15 questions

Question 10 (Volume D)

You ran out of space and added a eighth disk to your SCSI-I system. When you try to start, the system no longer boots. What is most likely the cause of this problem?

Select an option, then click Submit answer.

  • SCSI-I supports only 8 devices including the adaptor

  • SCSI-I supports only6 disks per adaptor

  • There is a SCSI-ID conflict that causes that problem

  • You forgot to set the SCSI-ID #8 for the new disk

Question 11 (Volume D)

Which of the following sed commands will replace all instances of the string foo with the string foobar changing the file file1.txt in place?

Select an option, then click Submit answer.

  • sed 's/foo/foobar/g' file1.txt

  • sed 's/foo/foobar/g' file1.txt > file1.txt

  • sed 's/foo/foobar/g' file1.txt | file1.txt

  • sed -i 's/foo/foobar/g' file1.txt

  • sed -i 's/foo/foobar/g' file1.txt > file1.txt

Question 12 (Volume F)

Which of the following shell redirections will write standard output and standard error output to a file named filename?

Select an option, then click Submit answer.

  • 2>&1 >filename

  • >filename 2>&1

  • 1>&2>filename

  • >>filename

  • 1&2>filename