Labour Day Limited Time 60% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 2493360325

Good News !!! 101-400 LPI Level 1 Exam 101, Junior Level Linux Certification, Part 1 of 2 is now Stable and With Pass Result

101-400 Practice Exam Questions and Answers

LPI Level 1 Exam 101, Junior Level Linux Certification, Part 1 of 2

Last Update 3 days ago
Total Questions : 177

101-400 is stable now with all latest exam questions are added 3 days ago. Just download our Full package and start your journey with LPI Level 1 Exam 101, Junior Level Linux Certification, Part 1 of 2 certification. All these LPI 101-400 practice exam questions are real and verified by our Experts in the related industry fields.

101-400 PDF

101-400 PDF (Printable)
$48
$119.99

101-400 Testing Engine

101-400 PDF (Printable)
$56
$139.99

101-400 PDF + Testing Engine

101-400 PDF (Printable)
$70.8
$176.99
Question # 1

Which of the following is true for hard linked files? (Choose three.)

Options:

A.  

The output ofstatwill reporthardinstead ofregular file.

B.  

The hard linked files have the same permissions and owner.

C.  

The hard linked files share the same inode.

D.  

The hard linked files are indicated by a -> when listed withls -1.

E.  

The hard linked files must be on the same filesystem.

Discussion 0
Question # 2

Which of the following is a limitation of the cut command?

Options:

A.  

Thecutcommand can only select output by field position.

B.  

Thecutcommand cannot reorder fields.

C.  

Thecutcommand only works on ASCIItext.

D.  

Thecutcommand cannot use different input and output delimiters.

Discussion 0
Question # 3

Which of the following commands makes /bin/foo executable by everyone but writable only by its owner?

Options:

A.  

chmod u=rwx,go=rx /bin/foo

B.  

chmod o+rwx,a+rx /bin/foo

C.  

chmod 577 /bin/foo

D.  

chmod 775 /bin/foo

Discussion 0
Question # 4

Creating a hard link to an ordinary file returns an error. What could be the reason for this?

Options:

A.  

The source file is hidden.

B.  

The source file is read-only.

C.  

The source file is a shell script.

D.  

The source file is already a hard link.

E.  

The source and the target are on different filesystems.

Discussion 0
Question # 5

Which command will uninstall a package but leave its configuration files in case the package is re-installed?

Options:

A.  

dpkg –s pkgname

B.  

dpkg –L pkgname

C.  

dpkg –P pkgname

D.  

dpkg –r pkgname

Discussion 0
Question # 6

Which of the following commands will change all CR-LF pairs in an imported text file, userlist.txt, to Linux standard LF characters and store it as newlist.txt?

Options:

A.  

tr ‘\r\n’ ‘’ < userlist.txt > newlist.txt

B.  

tr –c ‘\n\r’ ‘’ < newlist.txt > userlist.txt

C.  

tr –d ‘\r’ < userlist.txt > newlist.txt

D.  

tr ‘\r’ ‘\n’ userlist.txt newlist.txt

E.  

tr –s ‘^M’ ‘^J’ userlist.txt newlist.txt

Discussion 0
Question # 7

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?

Options:

A.  

tune2fs -d 200 /dev/sda1

B.  

tune2fs -c 200 /dev/sda1

C.  

tune2fs -i 200 /dev/sda1

D.  

tune2fs -n 200 /dev/sda1

E.  

tune2fs --days 200 /dev/sda1

Discussion 0
Question # 8

Which of the following options for the kernel's command line changes the systemd boot target to rescue.target instead of the default target?

Options:

A.  

systemd.target=rescue.target

B.  

systemd.runlevel=rescue.target

C.  

systemd.service=rescue.target

D.  

systemd.default=rescue.target

E.  

systemd.unit=rescue.target

Discussion 0
Question # 9

Which of the following kernel parameters instructs the kernel to suppress most boot messages?

Options:

A.  

silent

B.  

verbose=0

C.  

nomesg

D.  

quiet

Discussion 0
Question # 10

During a system boot cycle, what program is executed after the BIOS completes its tasks?

Options:

A.  

The bootloader

B.  

The inetd program

C.  

The init program

D.  

The kernel

Discussion 0
Question # 11

Which SysV init configuration file should be modified to disable the ctrl-alt-delete key combination?

Options:

A.  

/etc/keys

B.  

/proc/keys

C.  

/etc/inittab

D.  

/proc/inittab

E.  

/etc/reboot

Discussion 0
Question # 12

Which command will display messages from the kernel that were output during the normal boot sequence?

Options:

Discussion 0
Question # 13

Which run levels should never be declared as the default run level when using SysV init? (Choose TWO correct answers.)

Options:

A.  

0

B.  

1

C.  

3

D.  

5

E.  

6

Discussion 0
Question # 14

Which of the following information is stored within the BIOS? (Choose TWO correct answers.)

Options:

A.  

Boot device order

B.  

Linux kernel version

C.  

Timezone

D.  

Hardware configuration

E.  

The system's hostname

Discussion 0
Question # 15

Immediately after deleting 3 lines of text in vi and moving the cursor to a different line, which single character command will insert the deleted content below the current line?

Options:

A.  

i (lowercase)

B.  

P (uppercase)

C.  

p (lowercase)

D.  

U (uppercase)

E.  

u (lowercase)

Discussion 0
Question # 16

In the vi editor, which of the following commands will copy the current line into the vi buffer?

Options:

A.  

c

B.  

cc

C.  

1c

D.  

yy

E.  

1y

Discussion 0
Question # 17

In compliance with the FHS, in which of the directories are man pages found?

Options:

A.  

/usr/share/man

B.  

/opt/man

C.  

/usr/doc/

D.  

/var/pkg/man

E.  

/var/man

Discussion 0
Question # 18

Which of the following commands is used to change options and positional parameters for a running Bash?

Options:

A.  

history

B.  

set

C.  

bashconf

D.  

setsh

E.  

envsetup

Discussion 0
Question # 19

Which of the following commands will send output from the program myapp to both standard output (stdout) and the file file1.log?

Options:

A.  

cat < myapp | cat > file1.log

B.  

myapp 0>&1 | cat > file1.log

C.  

myapp | cat > file1.log

D.  

myapp | tee file1.log

E.  

tee myapp file1.log

Discussion 0
Question # 20

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

Options:

A.  

2>&1 >filename

B.  

>filename 2>&1

C.  

1>&2>filename

D.  

>>filename

E.  

1&2>filename

Discussion 0
Question # 21

What happens after issuing the command vi without any additional parameters?

Options:

A.  

vi starts and loads the last file used andmoves the cursor to the position where vi was when it last exited.

B.  

vi starts and requires the user to explicitly either create a new or load an existing file.

C.  

vi exits with an error message as it cannot be invoked without a file name to operate on.

D.  

vi starts in command mode and opens a new empty file.

E.  

vi starts and opens a new file which is filled with the content of the vi buffer if the buffer contains text.

Discussion 0
Question # 22

After modifying GNU GRUB's configuration file, which command must be run for the changes to take effect?

Options:

A.  

kill -HUP $(pidof grub)

B.  

grub-install

C.  

grub

D.  

No action is required

Discussion 0
Question # 23

In which directory must definition files be placed to add additional repositories to yum?

Options:

Discussion 0
Question # 24

What can the Logical Volume Manager (LVM) be used for? (Choose THREE correct answers.)

Options:

A.  

To create RAID 9 arrays.

B.  

To dynamically change the size of logical volumes.

C.  

To encrypt logical volumes.

D.  

To create snapshots.

E.  

To dynamically create or delete logical volumes.

Discussion 0
Question # 25

Which of the following commands is used to update the list of available packages when using dpkg based package management?

Options:

A.  

apt-get update

B.  

apt-get upgrade

C.  

apt-cache update

D.  

apt-get refresh

E.  

apt-cache upgrade

Discussion 0
Question # 26

Which of the following commands updates the linker cache of shared libraries?

Options:

A.  

mkcache

B.  

soconfig

C.  

mkldconfig

D.  

lddconfig

E.  

ldconfig

Discussion 0
Get 101-400 dumps and pass your exam in 24 hours!

Free Exams Sample Questions