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

Easiest Solution 2 Pass Your Certification Exams

010-160 LPI Linux Essentials Certificate Exam - version 1.6 Free Practice Exam Questions (2025 Updated)

Prepare effectively for your LPI 010-160 Linux Essentials Certificate Exam - version 1.6 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: 1 / 2
Total 80 questions

Which command copies the contents of the directory /etc/, including all sub-directories, to /root/?

A.

copy /etc /root

B.

cp -r /etc/* /root

C.

cp -v /etc/* /root

D.

rcp /etc/* /root

E.

cp -R /etc/*.* /root

Which of the following commands puts the lines of the file data.csv into alphabetical order?

A.

a..z data.csv

B.

sort data.csv

C.

abc data.csv

D.

wc -s data.csv

E.

grep --sort data.csv

What is true about the owner of a file?

A.

Each file is owned by exactly one user and one group.

B.

The owner of a file always has full permissions when accessing the file.

C.

The user owning a file must be a member of the file’s group.

D.

When a user is deleted, all files owned by the user disappear.

E.

The owner of a file cannot be changed once it is assigned to an owner.

When typing a long command line at the shell, whatsingle charactercan be used to split a command across multiple lines?

Reverse DNS assigns hostnames to IP addresses. How is the name of the IP address 198.51.100.165 stored

on a DNS server?

A.

In the A record for165.100.51.198.ipv4.arpA.

B.

In the PTR record for165.100.51.198.in-addr.arpA.

C.

In the RNAME record for198-51-100-165.rev.arpA.

D.

In the ARPA record for165.100.51.198.rev.

E.

In the REV record forarpA.in-addr.198.51.100.165.

The current directory contains the following file:

-rw-r—r— 1 root exec 24551 Apr 2 12:36 test.sh

The file contains a valid shell script, but executing this file using./test.shleads to this error:

bash: ./test.sh: Permission denied

What should be done in order to successfully execute the script?

A.

The file’s extension should be changed from .shto.bin.

B.

The execute bit should be set in the file’s permissions.

C.

The user executing the script should be added to theexecgroup.

D.

The SetUID bit should be set in the file’s permissions

E.

The script should be run using#!./test. shinstead of./test.sh.

How is a new Linux computing instance provisioned in an laaS cloud?

A.

The standard Linux installer has to be run through a remote console.

B.

After buying a Linux distribution, its vendor delivers it to a cloud instance.

C.

The installation has to be prepared in a local virtual machine which is then copied to the cloud.

D.

The cloud hosting organization provides a set of pre-prepared images of popular Linux distributions.

E.

A provider-specific configuration file describing the desired installation is uploaded to the cloud provider.

Which of the following statements regarding Linux hardware drivers is correct?

A.

Drivers are regular Linux programs which have to be run by the user who wants to use a device.

B.

Drivers are not used by Linux because the BIOS handles all access to hardware on behalf of Linux.

C.

Drivers are stored on their devices and are copied by the Linux kernel when a new device is attached

D.

Drivers are downloaded from the vendor's driver repository when a new device is attached.

E.

Drivers are either compiled into the Linux kernel or are loaded as kernel modules.

Which of the following commands finds all lines in the file operating-systems.txt which contain the term

linux, regardless of the case?

A.

igrep linux operating-systems.txt

B.

less -i linux operating-systems.txt

C.

grep -i linux operating-systems.txt

D.

cut linux operating-systems.txt

E.

cut [Ll] [Ii] [Nn] [Uu] [Xx] operating-systems.txt

Which one of the following statements concerning Linux passwords is true?

A.

All passwords can be decrypted using the system administrator's master password.

B.

Passwords may never start with a non-letter.

C.

Users cannot change their password once it has been set.

D.

Passwords are only stored in hashed form.

E.

Passwords may be at most six characters long.

What is a Linux distribution?

A.

The Linux file system as seen from the root account after mounting all file systems.

B.

A bundling of the Linux kernel, system utilities and other software.

C.

The set of rules which governs the distribution of Linux kernel source code.

D.

An operating system based on Linux but incompatible to the regular Linux kernel.

E.

A set of changes to Linux which enable Linux to run on another processor architecture.

Which of the following commands can be used to resolve a DNS name to an IP address?

A.

dnsname

B.

dns

C.

query

D.

host

E.

iplookup

What is the preferred source for the installation of new applications in a Linux based operating system?

A.

The vendor's version management system

B.

A CD-ROM disk

C.

The distribution's package repository

D.

The vendor's website

E.

A retail store

The ownership of the file doku.odt should be changed. The new owner is named tux. Which command accomplishes this change?

A.

chmod u=tux doku.odt

B.

newuser doku.odt tux

C.

chown tux doku.odt

D.

transfer tux: doku.odt

E.

passwd doku.odt:tux

Which files are the source of the information in the following output? (Choose two.)

uid=1000 (bob) gid=1000 (bob) groups=1000 (bob), 10 (wheel), 150

(docker), 1001 (libvirt)(wireshark),989

A.

/etc/id

B.

/etc/passwd

C.

/etc/group

D.

/home/index

E.

/var/db/users

Which of the following values could be a process ID on Linux?

A.

/bin/bash

B.

60b503cd-019e-4300-a7be-922f074ef5ce

C.

/sys/pid/9a14

D.

fff3

E.

21398

Most commands on Linux can display information on their usage. How can this information typically be displayed?

A.

By running the command with the option /? or /??.

B.

By running the command with the option ?! or ?=!.

C.

By running the command with the option /doc or /documentation.

D.

By running the command with the option -h or --help.

E.

By running the command with the option -m or --manpage.

Which of the following examples shows the general structure of a for loop in a shell script?

A.

for *.txt as file => echo $file

B.

for *.txt ( echo $i )

C.

for file in *.txt do

echo $i done

D.

for ls *.txt exec {} \;

E.

foreach @{file} { echo $i

}

Which permissions are set on a regular file once the permissions have been modified with the command

chmod 654 file.txt?

A.

drw-r-xr--

B.

d—wxr-x--

C.

–wxr-x--x

D.

–rwxrw---x

E.

-rw-r-xr--

Which of the following programs is a graphical editor for vector graphics?

A.

Python

B.

NGINX

C.

Samba

D.

Inkscape

E.

MySQL

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