Labour Day Special - 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: c4sdisc65

201-450 PDF

$38.5

$109.99

3 Months Free Update

  • Printable Format
  • Value of Money
  • 100% Pass Assurance
  • Verified Answers
  • Researched by Industry Experts
  • Based on Real Exams Scenarios
  • 100% Real Questions

201-450 PDF + Testing Engine

$61.6

$175.99

3 Months Free Update

  • Exam Name: LPIC-2 Exam 201, Part 1 of 2, version 4.5
  • Last Update: May 1, 2024
  • Questions and Answers: 161
  • Free Real Questions Demo
  • Recommended by Industry Experts
  • Best Economical Package
  • Immediate Access

201-450 Engine

$46.2

$131.99

3 Months Free Update

  • Best Testing Engine
  • One Click installation
  • Recommended by Teachers
  • Easy to use
  • 3 Modes of Learning
  • State of Art Technology
  • 100% Real Questions included

201-450 Practice Exam Questions with Answers LPIC-2 Exam 201, Part 1 of 2, version 4.5 Certification

Question # 6

After configuring a new kernel, what file under /usr/src/linux/ contains the configuration?

Full Access
Question # 7

Where is the LILO boot loader code typically installed on a system with only a single Linux installation and no other operating systems?

A.

In the master boot record.

B.

In the boot sector.

C.

In the /boot directory.

D.

At the start of the kernel.

Full Access
Question # 8

How can the kernel parameter for the maximum size of the shared memory segment (shmmax) be changed to 2GB (2147483648 Bytes) on a running system? (Choose TWO correct answers.)

A.

Edit /etc/shmmax and set the parameter to 2147483648.

B.

sysctl shmmax=2147483648

C.

sysctl kernel.shmmax=2147483648

D.

echo 2147483648 > /proc/sys/kernel/shmmax

E.

export kernel.shmmax=2147483648

Full Access
Question # 9

According to the Filesystem Hierarchy Standard (FHS), what is the path to the Linux kernel source and may be a symbolic link to the real Linux source code? (Please specify the full path with no version information.)

Full Access
Question # 10

Which of the following commands will erase the contents of the /dev/sdb3 partition?

A.

rm /dev/sdb3

B.

dd if=/dev/zero of=/dev/sdb3

C.

dd of=/dev/zero if=/dev/sdb3

D.

umount /dev/sdb3

Full Access
Question # 11

Which of the following commands will securely copy the directory ./fyf/ to /var/tmp/ on the remote host deltaur using the remote user account kevin?

A.

rsync -a -e ssh kevin@deltaur:/var/tmp/ fyf/

B.

rsync -a -u kevin -e ssh fyf/ deltaur:/var/tmp/

C.

rsync -a -u kevin -e ssh deltaur:/var/tmp/ fyf/

D.

rsync -a -e ssh fyf/ kevin@deltaur:/var/tmp/

Full Access
Question # 12

Which one of these directories should not be backed up?

A.

/backup

B.

/etc

C.

/opt

D.

/proc

E.

/var/log

Full Access
Question # 13

The main configuration file for autofs has this entry:

/home /etc/auto.home

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

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.

Full Access
Question # 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?

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

Full Access
Question # 15

Which command is used to create a ISO9660 filesystem? (Specify ONLY the command without any path or parameters.)

Full Access
Question # 16

Which of the following is a side effect of extensive usage of swap space?

A.

The root filesystem may become full because swap space is always located on the system root partition.

B.

The overall system performance may degrade because of heavy hard disk use and memory reorganization.

C.

Since processes always exist completely in either RAM or swap, regular RAM may become unused if the kernel does not move processes back from the swap space to memory.

D.

The memory may become fragmented and slow down the access to memory pages. However, this can be kept to a minimum by the regular use of memfrag -d.

E.

Applications need to restart because their virtual memory addresses change to reflect memory relocation to the swap address area.

Full Access
Question # 17

The correct command sequence to create and mount logical volumes on a Linux system is:

A.

lvcreate, pvcreate, vgcreate, mkfs, mount

B.

pvcreate, vgcreate, lvcreate, mkfs, mount

C.

vgcreate, lvcreate, pvcreate, mount, mkfs

D.

mkfs, pvcreate, vgcreate, lvcreate, mount

E.

pvcreate, lvcreate, vgcreate, mkfs, mount

Full Access
Question # 18

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

Full Access
Question # 19

Which command will report information on memory usage, paging and block input/output?

A.

free

B.

memshow

C.

ps

D.

top

E.

vmstat

Full Access
Question # 20

Which file in /proc contains information on the status of local software RAID devices?

A.

/proc/raidstat

B.

/proc/mdstat

C.

/proc/raidstatus

D.

/proc/mdstatus

E.

/proc/raid/status

Full Access
Question # 21

Where would fsck put any unreferenced file or file fragments on a ext4 filesystem?

A.

recover

B.

lost+found

C.

back

D.

lost

Full Access
Question # 22

Which of the following files are used to resolve hostnames to IP addresses? (Choose TWO correct answers.)

A.

/etc/systems

B.

/etc/hosts

C.

/etc/network

D.

/etc/dns.conf

E.

/etc/resolv.conf

Full Access
Question # 23

Which of the following wireless tools can be used to check the wireless network link quality? (Choose TWO correct answers.)

A.

iwconfig

B.

iwlink

C.

iwscan

D.

iwifi

E.

iw

Full Access
Question # 24

Which program lists information about files and network connections opened by processes? (Specify ONLY the command without any path or parameters.)

Full Access