Summer Sale Special Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: s2p65

Easiest Solution 2 Pass Your Certification Exams

201-450 LPIC-2 Exam 201, Part 1 of 2, version 4.5 Free Practice Exam Questions (2025 Updated)

Prepare effectively for your LPI 201-450 LPIC-2 Exam 201, Part 1 of 2, version 4.5 certification with our extensive collection of free, high-quality practice questions. Each question is designed to mirror the actual exam format and objectives, complete with comprehensive answers and detailed explanations. Our materials are regularly updated for 2025, ensuring you have the most current resources to build confidence and succeed on your first attempt.

Page: 2 / 3
Total 161 questions

Which of the following command sequences can be used to extract files contained in a initramfs file (/boot/initramfs) which is used by the kernel at boot time?

A.

cp /boot/initramfs /tmp/initramfs.gz; gzip -c /tmp/initramfs.gz; mkdir /tmp/initramfs.dir ; cd /tmp/initramfs.dir ; cpio -i < /tmp/initramfs

B.

cp /boot/initramfs /tmp/initramfs.gz; gunzip /tmp/initramfs.gz; mkdir /tmp/initramfs.dir ; cd /tmp/initramfs.dir ; cpio -i < /tmp/initramfs

C.

cp /boot/initramfs /tmp/initramfs.gz; gunzip /tmp/initramfs.gz; mount /tmp/initramfs /mnt/ -o loop -t initramfs

D.

cp /boot/initramfs /tmp/initramfs.gz; gunzip /tmp/initramfs.gz; mkdir /tmp/initramfs.dir ; cd /tmp/initramfs.dir ; cpio -e /tmp/initramfs

E.

cp /boot/initramfs /tmp/initramfs.gz; gunzip /tmp/initramfs.gz; mount /tmp/initramfs /mnt/ -o loop -t initrd

A database application requires a maximum shared memory segment (shmmax) of 2GB (2147483648 Bytes). Which configuration file should be modified to set this kernel parameter permanently? (Specify the full name of the file, including path.)

Which archive format is used to create an initramfs image?

A.

gzip

B.

tar

C.

RAR

D.

cpio

E.

bzip2

What is the correct parameter to pass to the kernel at boot time to force it to use only one of the available processors?

A.

maxcpus=1

B.

usecpus=1

C.

smpcpus=1

D.

vcpumx=1

Please enter the complete path to the main SysV init process configuration file.

In case the file containing the Linux kernel is lost, what happens when the system is booting?

A.

The system starts normally since the bootloader copies the kernel to the master boot record of the hard disk.

B.

Instead of the kernel, the initramfs is loaded and instructed to mount the root filesystem and reinstall the kernel from the original package or from source.

C.

The bootloader mounts the root filesystem read-only and launches /bin/sh directly in order to allow the administrator to reinstall the kernel.

D.

Without a kernel a system cannot boot and, depending on the bootloader, an error is displayed.

What are the main network services used by the PXE protocol? (Choose TWO correct answers.)

A.

DNS

B.

DHCP

C.

HTTP

D.

TFTP

E.

NFS

Which keyword is used in the /etc/inittab file to define the SysV-init default system runlevel?

What is the functionality that PXE provides?

A.

The ability to boot a computer using its network interface.

B.

The ability to launch an remote X11 desktop on a computer.

C.

The ability to verify a system's configuration after completing the boot process.

D.

The ability to verify a system's configuration before completing the boot process.

A system with SysV-init has a service installed called apache2. Which file controls the start and stop of this service and is referenced by the various runlevel directories?

A.

/etc/init.d/apache2

B.

/etc/rc2.d/70apache2

C.

/etc/rc2.d/apache2

D.

/etc/rc2.d/apache2.start

In the following output, the load averages represent the system load averages for what time frames?

12:10:05 up 18 days, 19:00, 2 users, load average: 0.47, 24.71, 35.31

A.

1, 5 and 15 minutes

B.

1, 15 and 30 minutes

C.

1, 15, and 30 seconds

D.

15, 30 and 60 minutes

E.

15, 30 and 60 seconds

In capacity planning exercises, which tools assist in listing and identifying processes of interest? (Choose TWO correct answers.)

A.

acpid

B.

lsof

C.

pstree

D.

telinit

In the following output from top, which processes contribute to the percentage of time that the CPU spends in the state of wa?

Tasks: 193 total, 1 running, 190 sleeping, 2 stopped, 0 zombie

Cpu(s): 0.5%us, 0.3%sy, 0.0%ni, 98.2%id, 1.0%wa, 0.0%hi, 0.0%si, 0.0%st

A.

Processes waiting for user interaction.

B.

Processes that were already closed and are waiting to be launched again.

C.

Processes that have not been scheduled yet because they haven't been fully loaded into RAM or are in swap.

D.

Processes waiting for IO operations to complete.

What option in the collectd configuration file is required in order to define what to start monitoring?

A.

LoadModule

B.

Module

C.

Plugin

D.

LoadPlugin

In this example output, which descriptions match the purpose of the free, buff and cache columns? (Choose THREE correct answers.)

# vmstat 1 100

procs -----------memory---------- ---swap-- -----io---- --system-- ----cpu----

r b swpd free buff cache si so bi bo in cs us sy id wa

0 0 0 282120 134108 5797012 0 0 0 2 0 0 0 0 100 0

0 0 0 282120 134108 5797012 0 0 0 0 1007 359 0 0 100 0

0 0 0 282120 134108 5797012 0 0 0 0 1117 577 0 0 100 0

0 0 0 282120 134108 5797012 0 0 0 0 1007 366 0 0 100 0

A.

Used swap space

B.

RAM available for filesystem buffers

C.

Available free RAM

D.

RAM used for buffers

E.

RAM used for filesystem cache

Which commands below are useful to collect data about remote filesystem connections? (Choose TWO correct answers.)

A.

pidstat

B.

nfsiostat

C.

sadf

D.

cifsiostat

What command will remove a physical volume from a volume group? (Specify ONLY the command without any path or parameters.)

Due to extreme system use, a Linux system requires some additional swap space. To initialize 5GB of additional swap space, which combination of commands should be used?

A.

dd if=/dev/zero of=/tmp/swapfile bs=1024 count=5120000; mkswap /tmp/swapfile; mount /tmp/swapfile

B.

dd if=/dev/zero of=/tmp/swapfile bs=1024 count=5120000; swapon /tmp/swapfile

C.

dd if=/dev/zero of=/tmp/swapfile bs=1024 count=5120000; mkswap /tmp/swapfile; swapon /tmp/swapfile

D.

touch -5G /tmp/swapfile; swapon /tmp/swapfile

E.

mkswap /tmp/swapfile 512000; swapon /tmp/swapfile

What command is used to make an exact copy, at a single point in time, of a logical volume for backup purposes?

A.

lvsnap

B.

lvsnapshot

C.

lvcreate

D.

lvcopy

E.

lvclone

What are the options to node.startup in the iscsid.conf file? (Choose TWO correct answers.)

A.

login

B.

initiate

C.

manual

D.

discover

E.

automatic

Page: 2 / 3
Total 161 questions
Copyright © 2014-2025 Solution2Pass. All Rights Reserved