Which of the following directories must be mounted with /var
read and write access if it resides on its own dedicated
file system?
Which of the following tasks can the command passwd Change a user's password.
accomplish? (Choose two.) Lock a user account.
What is the preferred source for the installation of new The distribution's package repository
applications in a Linux based operating system?
What information is stored in /etc/passwd? (Choose The numerical user ID
three correct answers.) the username
the user's default shell
What can be found in the /proc/ directory? One directory per running process
What are the differences between hard disk drives and Solid state disks provide faster access to stored data than hard disks.
solid state disks? (Choose two.) Hard disks have a motor and moving parts, solid state disks do not.
Members of a team already have experience using Red CentOS
Hat Enterprise Linux. For a small hobby project, the team
wants to set up a Linux server without paying for a
subscription. Which of the following Linux distributions
allows the team members to apply as much of their Red
Hat Enterprise Linux knowledge as possible?
Which of the following examples shows the general for file in *.txt do echo $i done
structure of a for loop in a shell script?
Which of the following commands sets the variable USERNAME=bob
USERNAME to the value bob?
Which permissions are set on a regular file once the -rw-r-xr--
permissions have been modified with the command
chmod 654 file.txt?
What command displays manual pages? (originally a man
FILL BLANK question)
What is true about links in a Linux file system? A symbolic link can point to a file on another file system.
Which of the following commands will search for the file find /home -name foo.txt
foo.txt under the directory /home?
Which of the following commands creates an archive file tar -cf work.tar ./work/
work.tar from the contents of the directory ./work/?
Which of the following values could be a process ID on 21398
Linux?
, LPI Linux Essentials 010-160 Test
Which of the following statements are true regarding a It has the executable permission bit set.
typical shell script? (Choose two.) It starts with the two character sequence #!.
Where is the operating system of a Raspberry Pi stored? On a removable SD card which is put into the Raspberry Pi.
What is true about the dmesg command? (Choose two.) It displays the content of the Linux kernal's ring buffer.
It might not display older information because it was overwritten by newer
information.
Which of the following statements regarding Linux Drivers are either compiled into the Linux kernal or are loaded as kernal
hardware drivers is correct? modules.
Which of the following commands puts the lines of the sort data.csv
file data.csv into alphabetical order?
Which of the following commands shows the absolute pwd
path to the current working directory?
Which of the following commands are used to get man ls
information on the proper use of ls? (Choose two.) info ls
The ownership of the file doku.odt should be changed. chown tux doku.odt
The new owner is named tux. Which command
accomplishes this change?
Which of the following programs is a graphical editor for Inkscape
vector graphics?
FILL BLANK - What parameter of ls prints a recursive Is -R
listing of a directory's content? (Specify ONLY the option
name without any values or parameters.)
Why are web browser cookies considered dangerous? Cookies support identification and tracking of users.
Which of the following commands creates the ZIP zip poems.zip *.txt
archive poems.zip containing all files in the current
directory whose names end in .txt?
Which of the following types of bus can connect hard The SATA bus
disk drives with the motherboard?
Which command adds the new user tux and creates the useradd -m tux
user's home directory with default configuration files?
A directory contains the following three files: texts 1.txt cp *.txt /tmp/
texts 2.txt texts 3.csv Which command copies the two
files ending in .txt to the /tmp/ directory?
Which of the following permissions are set on the /tmp/ rwxrwxrwt
directory?