Summer Sale - Limited Time 55% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 5763r953

Welcome To DumpsPedia

201-450 Sample Questions Answers

Questions 4

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

Options:

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

Buy Now
Questions 5

Under which of the following circumstances would the command ping output the string (DUP!)?

Options:

A.

When the ICMP packets are send to a broadcast address and multiple hosts respond.

B.

When the host being sent ICMP packets is on a different network.

C.

When the router responds to the ICMP packet in addition to the host receiving the ICMP packets.

D.

When the host sending the ICMP packet is the same host as the one receiving the ICMP packets.

Buy Now
Questions 6

What should be done after updating the configuration file for syslogd in order to make the changes become effective? (Choose TWO correct answers.)

Options:

A.

No action is required, syslogd will notice the updated configuration file after a few minutes.

B.

Send the HUP signal to the syslogd process.

C.

Restart the syslogd service.

D.

Run the command syslogd -u.

Buy Now
Questions 7

Which commands are used to load modules into the Linux kernel? (Choose TWO correct answers.)

Options:

A.

insmod

B.

loadmod

C.

kernload

D.

modprobe

E.

probemod

Buy Now
Questions 8

Which of the following terms are used to describe 3.x kernel releases? (Choose TWO correct answers.)

Options:

A.

beta

B.

final

C.

longterm

D.

prerelease

E.

stable

Buy Now
Questions 9

What is the main template file used by autofs?

Options:

A.

default.maps

B.

auto.conf

C.

auto.master

D.

autofs.master

Buy Now
Questions 10

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

Options:

Buy Now
Questions 11

Which command is used to install a new LILO boot loader?

Options:

A.

lilo

B.

lilo-config

C.

lilo-install

D.

install-lilo

Buy Now
Questions 12

Which option to the update-rc.d command will cause the removal of all symlinks to /etc/rcX.d/*test2 even when the script /etc/init.d/test2 still exists?

Options:

A.

-d

B.

-f

C.

-n

D.

-r

Buy Now
Questions 13

The main configuration file for autofs has this entry:

/home /etc/auto.home

What is the meaning of the /etc/auto.home file?

Options:

A.

It has the indirect maps for the mounting of file systems.

B.

It has configuration information, such as passwords and keys, for the remote file server.

C.

It has configuration information on settings for the /home mount point.

D.

It is the holds the SSL key to allow authentication to the remote file server.

Buy Now
Questions 14

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?

Options:

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

Buy Now
Questions 15

Which directory in /dev/disk/ can be used to determine the UUID of a connected hard disk?

Options:

Buy Now
Questions 16

Which is the main configuration file for the SystemV init process? (Specify the full name of the file, including path.)

Options:

Buy Now
Questions 17

Which of the following commands restores only those files containing lpi in their name from the archive lpifiles.tar.gz?

Options:

A.

tar xvzf lpifiles.tar.gz --wildcards ‘*lpi*’

B.

tar xvzwf lpifiles.tar.gz ‘*lpi*’

C.

tar -xvfz lpifiles.tar.gz --deep ‘*lpi*’

D.

tar -xvzf lpifiles.tar.gz --subdirs ‘*lpi*’

E.

tar xvzf lpifiles.tar.gz --globbing ‘*lpi*’

Buy Now
Questions 18

Which archive format is used to create an initramfs image?

Options:

A.

gzip

B.

tar

C.

RAR

D.

cpio

E.

bzip2

Buy Now
Questions 19

What component of a system does smartd monitor?

Options:

A.

CPU

B.

RAM

C.

Hard drives

D.

Ethernet traffic

Buy Now
Questions 20

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?

Options:

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

Buy Now
Questions 21

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

Options:

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.

Buy Now
Questions 22

A regular user, joe, has just run:

./configure && make && make install

to build and install a program. However, the installation fails. What could be done to install the program? (Choose TWO correct answers.)

Options:

A.

Install the binaries manually with suinstall.

B.

Run make install with root privileges.

C.

Do not run ./configure in order to maintain the default configuration for correct installation.

D.

Rerun ./configure with a --prefix option where the user has permissions to write.

E.

Run make install_local to install into /usr/local/.

Buy Now
Questions 23

What is the device name for the first SCSI tape drive on a system when used without automatic rewinding after each write operation? (Please specify the full path to the device.)

Options:

Buy Now
Questions 24

Which of the following commands lists IPv4 addresses and MAC addresses of network nodes that the local system has seen on its directly connected IP networks?

Options:

A.

arp

B.

ifconfig

C.

ipadm

D.

iwlist

Buy Now
Exam Code: 201-450
Exam Name: LPIC-2 Exam 201, Part 1 of 2, version 4.5
Last Update: Apr 15, 2024
Questions: 161
$72  $159.99
$54  $119.99
$45  $99.99
buy now 201-450