Valid 101-500 Test Answers & Lpi 101-500 Exam PDF [Q34-Q52]

Share

Valid 101-500 Test Answers & Lpi 101-500 Exam PDF

Lpi 101-500 Certification Real 2022 Mock Exam


How to Prepare For LPIC-1 Linux Administrator , 101-500 exam

Preparation Guide for LPIC-1 Linux Administrator , 101-500 exam

Introduction

LPIC-1 is the first certification in LPI’s multi-level Linux professional certification program. The LPIC-1 will validate the candidate’s ability to perform maintenance tasks on the command line, install and configure a computer running Linux and configure basic networking.

The LPIC-1 is designed to reflect current research and validate a candidate’s proficiency in real world system administration. The objectives are tied to real-world job skills, which we determine through job task analysis surveying during exam development.

In this guide, we will cover the 101-500 exam topics, LPIC-1 Linux Administrator , 101-500 Certified professional salary and all aspects of the LPIC-1 Linux Administrator , 101-500 Certification.


What topics are included in LPI 101-500 exam?

The LPI 101-500 exam consists of 4 topics that are divided into several subtopics. This means that the applicants have to prepare thoroughly. The domains that are presented in the test are as follows:

  • Devices, Linux Filesystems, & Filesystem Hierarchy Standard: In this part, the examinees have to be good at partitions and filesystems creation, maintenance of the integrity of filesystems, controlling of the mounting and unmounting processes of filesystems, and management of file permissions and ownership. Their knowledge base should also include the information about the hard and symbolic links as well as the creation, changing, and finding processes related to system files and their placement in the correct location. Also, this objective evaluates one’s ability to understand the correct locations of files under FHS, use links to support system administration tasks, create links, and skills in managing the access permissions on regular files, special files, as well as directories. It is important to have the expertise in using the group field to grant file access to group members, using labels and UUIDs for identifying and mounting file systems, repairing simple filesystem problems, and managing MBR and GPT partition tables.
  • Linux Installation & Package Management: To cover the questions of this subject area, the candidates have to demonstrate their understanding of Linux as a virtualization guest, knowledge of installing the boot manager, designing hard disk layout, managing shared libraries, as well as knowledge of the Debian package management as well as RPM and YUM package management. They have to know how to backup boot options and provide alternative boot locations, install the boot loader and configure it, as well as install, upgrade and uninstall Debian binary packages. Also, you should know how to obtain information on the RPM packages, including version, dependencies, status, integrity, and signatures. In addition, the professionals need to have an understanding of the general concepts of virtual machines and containers as well as common elements of virtual machines in IaaS Cloud. It includes block storage and networking, computing instances, unique properties of a Linux system, which have to change when a system is cloned or used as a template, and Linux extensions that integrate Linux with a virtualization product.
  • System Architecture: This section requires the students’ knowledge of booting the system, changing runlevels or boot targets, configuring hardware settings, and shutdowning or rebooting the system. They have to be able to enable and disable integrated peripherals, determine hardware resources for devices, as well as provide options to the kernel and common commands to the boot loader at boot time. You should be able to demonstrate the skills in using the boot sequence from BIOS or UEFI to boot completion, check boot events in log files, set default runlevel or boot target, shutdown and reboot from the command line, and so on.
  • Unix Commands & GNU: This topic evaluate the learners’ proficiency in working on the command line, using streams, redirects, and pipes, processing text streams with the help of filters, as well as creating processes, monitoring them, and killing if needed. Their skill set should include the knowledge of modifying process execution priorities, basic file editing, and searching text files with the use of regular expressions. The test takers should also perform their skills in using single shell commands and one-line command sequences in order to perform basic tasks on the command line, as well as invoking commands inside and outside the defined path. It also includes the process of sending output streams and text files through the text utility filters in order to modify the output with the use of the standard UNIX commands that are found in the GNU textutils package. It is also required to have knowledge of how to copy, move, and also remove the directories and files individually, use simple/advanced wildcard specifications in commands, as well as use the output of one command as arguments to another command. A potential candidate has to be able to select and sort processes for display, run a program with higher or lower priority than the default, create simple regular expressions that contain several notational elements, configure the standard editor, and more.

 

NEW QUESTION 34
Which file in /proc describes the IRQs that are used by various kernel drivers? (Specify the file name only without any path.)

Answer:

Explanation:
interrupts

 

NEW QUESTION 35
What is the default nice level when a process is started using the nice command?

  • A. 0
  • B. 1
  • C. 2
  • D. 3

Answer: B

 

NEW QUESTION 36
Which command must be entered before exiting vi to save the current file as filea.txt?

  • A. :s filea.txt
  • B. :save filea.txt
  • C. %s filea.txt
  • D. :w filea.txt
  • E. %w filea.txt

Answer: D

 

NEW QUESTION 37
What is the effect of the -voption for the grepcommand?

  • A. It only outputs non-matching lines.
  • B. It outputs all lines and prefixes matching lines with a+.
  • C. It shows the command's version information.
  • D. It changes the output order showing the last matching line first.
  • E. It enables color to highlight matching parts.

Answer: A

 

NEW QUESTION 38
Which of the following commands is used to modify quota settings? (Choose two.)

  • A. edquota
  • B. quotaset
  • C. quotaedit
  • D. editquota
  • E. setquota

Answer: A

 

NEW QUESTION 39
Which of the following options must be passed to a filesystem's entry in /etc/fstab in order to mount the file system without root privileges?

  • A. auto
  • B. noauto
  • C. user
  • D. norestrict

Answer: C

 

NEW QUESTION 40
Which of the following are init systems used within Linux systems? (Choose THREE correct answers.)

  • A. SysInit
  • B. startd
  • C. systemd
  • D. SysV init
  • E. Upstart

Answer: C,D,E

 

NEW QUESTION 41
Which umask value ensures that new directories can be read, written and listed by their owning user, read and listed by their owning group and are not accessible at all for everyone else?

  • A. 0029
  • B. 0750
  • C. 0027
  • D. 0
  • E. 0036

Answer: C

 

NEW QUESTION 42
Which of the following commands changes the number of days before the ext3 filesystem on /dev/sda1 has to run through a full filesystem check while booting?

  • A. tune2fs -i 200 /dev/sda1
  • B. tune2fs -c 200 /dev/sda1
  • C. tune2fs -n 200 /dev/sda1
  • D. tune2fs --days 200 /dev/sda1
  • E. tune2fs -d 200 /dev/sda1

Answer: A

 

NEW QUESTION 43
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 44
To prevent users from being able to fill up the / partition, the ____________ directory should be on a separate partition if possible because it is world writeable.

Answer:

Explanation:
/tmp, tmp

 

NEW QUESTION 45
Which of the following partition types is used for Linux swap spaces when partitioning hard disk drives?

  • A. fd
  • B. 0
  • C. 1
  • D. 8e
  • E. 2

Answer: E

 

NEW QUESTION 46
Which of the following commands reads a file and creates separate chunks of a given size from the file's contents?
ar

  • A. split
  • B. cat
  • C. parted
  • D. break
  • E.

Answer: C

 

NEW QUESTION 47
The installation of a local Debian package failed due to unsatisfied dependencies. Which of the following commands installs missing dependencies and completes the interrupted package installation?
dpkg --fix --all

  • A. apt-get autoinstall
  • B. apt-get install -f
  • C. dpkg-reconfigure --all
  • D.
  • E. apt-get all

Answer: D

 

NEW QUESTION 48
What is the default nice level when a process is started using the nicecommand?

  • A. 0
  • B. 1
  • C. 2
  • D. 3
  • E. 4

Answer: D

 

NEW QUESTION 49
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 50
Which of the following commands displays the output of the foo command on the screen and also writes it to a file called /tmp/foodata?

  • A. foo > stdout >> /tmp/foodata
  • B. foo > /tmp/foodata
  • C. foo | tee /tmp/foodata
  • D. foo | cp /tmp/foodata
  • E. foo | less /tmp/foodata

Answer: C

 

NEW QUESTION 51
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 52
......

101-500 Exam Questions and Valid 101-500 Dumps PDF: https://www.free4torrent.com/101-500-braindumps-torrent.html

101-500 Brain Dump: A Study Guide with Tips & Tricks for passing Exam: https://drive.google.com/open?id=1bBA4b4sRTljMN80rd0dcxXOwf-6upCsL