LPI Linux Essentials 010-160 Practice Exam 2026 Guide, Exams of Operating Systems

LPI Linux Essentials 010-160 Practice Exam 2026 Guide

Typology: Exams

2025/2026

Available from 05/15/2026

Fortis-In-Re
Fortis-In-Re ๐Ÿ‡บ๐Ÿ‡ธ

4.2

(5)

5.4K documents

1 / 5

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
LPI Linux Essentials 010-160 Practice Exam 2026
Guide
1
/
5
1.
A Linux distribution consists of .
A kernel, GNU core utilities, an X server
(optional), and a GUI (optional)
2.
Which of the following is a popular open-source
Firefox
web browser?
3.
What does FSF stand for?
FSF stands for Free Software Founda-
tion.
4.
How
is
Linux
generally
installed
in
a
virtualized
Through conventional means (by us-
environment?
ing the linux distribution's provided
installer)
5.
How
might
you
prevent
a
browser
from
storing
By using the browser's private mode
cookies and caching user data?
6.
The echo command is used to .
Write
to
the
standard
output
7.
What is the default character used in the com-
mand prompt to designate that the shell is run-
ning with standard user privileges?
8.
Which of the following options would output
$
echo
-e
"This
\"is\"
'some'
\\\ntext"
the exact string of: This "is" 'some' \ntext using
echo -e "This \"is\" 'some'
\\\ntext"
the echo command?
would
preserve
This
"is"
'some'
\ntext
โ€” the double backslash for the \n is
needed due to the -e.
echo "This \"is\" 'some' \ntext"
echo "This \"is\" 'some' \ntext" would
preserve This "is" 'some' \ntext.
9.
info
mkdir
pf3
pf4
pf5

Partial preview of the text

Download LPI Linux Essentials 010-160 Practice Exam 2026 Guide and more Exams Operating Systems in PDF only on Docsity!

LPI Linux Essentials 010 - 160 Practice Exam 2026

Guide

  1. A Linux distribution consists of. A kernel, GNU core utilities, an X server (optional), and a GUI (optional)
  2. Which of the following is a popular open-source Firefox

web browser?

  1. What does FSF stand for? FSF stands for Free Software Founda- tion.
  2. How is Linux generally installed in a virtualized Through conventional means (by us-

environment? ing the linux distribution's provided installer)

  1. How might you prevent a browser from storing By using the browser's private mode cookies and caching user data?
  2. The echo command is used to. Write to the standard output
  3. What is the default character used in the com- mand prompt to designate that the shell is run- ning with standard user privileges?
  4. Which of the following options would output

echo -e "This "is" 'some' \\ntext" the exact string of: This "is" 'some' \ntext using echo -e "This "is" 'some' \\ntext" the echo command? would^ preserve^ This^ "is"^ 'some'^ \ntext โ€” the double backslash for the \n is needed due to the -e.

echo "This "is" 'some' \ntext" echo "This "is" 'some' \ntext" would preserve This "is" 'some' \ntext.

  1. info mkdir

How would you invoke the info page for the mkdir command?

  1. How would you invoke the man page for the ls man ls

command?

  1. Which of the following could you use to change cd

the current working directory to your home directory in bash?

  1. Which of the following commands will remove all files and directories in the current work- ing directory (assuming you have the permis- sions)?

cd $HOME cd~ cd -

rm -rf *

  1. Which of the following commands will move all mv file_* /tmp files in the current directory that start with file_ to /tmp?
  2. What command would you use to unpack the archive.tar file?
  3. To view the files and directories of the ./archive.tar archive, which of the following commands would you use?
  4. Which utility can be used to count the number of words in a file or input?
  5. Which of the following utilities can be used to print the contents of a file to the screen?

tar xf archive.tar

tar tf ./archive.tar

wc

cat less

  1. 1

The top command displays which of the follow- The PIDs of running processes ing? System load average Running processes Current CPU usage

  1. Which of the following utilities could be used to netstat view listening services and ports?
  2. which of the following commands could you

ss

dig www.linuxacademy.com use to resolve www.linuxacademy.com to an IP host www.linuxacademy.com address?

  1. What commands could you use to show the group membership of cloud_user?

id cloud_user groups cloud_user cat /etc/group | grep cloud_user

  1. System users normally. don't have a home directory Do not have an interactive login shell Have a lower UID than standard users
  2. What utility can you preface a command with to sudo

execute with elevated privileges?

  1. When users are deleted, what happens to their "ls -l" will display the numeric

files?

  1. Which of the following commands will create the user stosh and the home directory at the same time with defaults?
  2. Which of the following commands will add the user stosh to the group linuxacademy (as the non-primary group)?

UID/GID of the deleted user

useradd -m stosh

usermod -a -G linuxacademy stosh

  1. For a user to be able to enter a directory, they must have what level of access?

Excute

  1. When a symbolic link's target is deleted, the link Persists and links to the target's old . location
  2. Which of the following are relative paths? ../tmp tmp ../../tmp