Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONLPI 101-500 Exam 2021 (Passed 720/800)

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
LPI 101-500 Exam 2021 (Passed 720/800)

Description:
Linux test

Author:
AVATAR

Creation Date:
01/04/2021

Category:
Computers

Number of questions: 117
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
Which type of file system is created by mkfs when it is executed with the block device name only and without any additional parameters? XFS VFAT ext2 ext3 ext4.
Which umask value ensures that new directories can be read, written and listed by their owning user, read and listed by their owning group and are not accessible at all for everyone else? 0750 0027 0036 7640 0029.
Which is the default percentage of reserved space for the root user on new ext4 filesystems? 10% 3% 15% 0% 5%.
Which of the following is true when a file system, which is neither listed in /etc/fstab nor known to system, is mounted manually? systemd ignores any manual mounts which are not done using the systemctl mount command The command systemctl mountsync can be used to create a mount unit based on the existing mount systemd automatically generates a mount unit and monitors the mount point without changing it Unless a systemd mount unit is created, systemd unmounts the file system after a short period of time systemctl unmount must be used to remove the mount because system opens a file descriptor on the mount point.
Which program updates the database that is used by the locate command? (Specify ONLY the command without any path or parameters).
What does the command mount --bind do? It makes the contents of one directory available in another directory It mounts all available filesystems to the current directory It mounts all user mountable filesystems to the user's home directory It mounts all file systems listed in /etc/fstab which have the option userbind set It permanently mounts a regular file to a directory.
In order to display all currently mounted filesystems, which of the following commands could be used? (Choose two.) cat /proc/self/mounts free lsmounts mount cat /proc/filesystems.
Which command displays the current disk space usage for all mounted file systems? (Specify ONLY the command without any path or parameters.).
Which chown command changes the ownership to dave and the group to staff on a file named data.txt? chown dave/staff data.txt chown ""u dave ""g staff data.txt chown --user dave --group staff data.txt chown dave+staff data.txt chown dave:staff data.txt.
When considering the use of hard links, what are valid reasons not to use hard links? Hard links are not available on all Linux systems because traditional filesystems, such as ext4, do not support them Each hard link has individual ownership, permissions and ACLs which can lead to unintended disclosure of file content Hard links are specific to one filesystem and cannot point to files on another filesystem If users other than root should be able to create hard links, suln has to be installed and configured When a hard linked file is changed, a copy of the file is created and consumes additional space.
In compliance with the FHS, in which of the directories are man pages found? /opt/man/ /usr/doc/ /usr/share/man/ /var/pkg/man /var/man/.
What is the process ID number of the init process on a System V init based system? -1 0 1 It is different with each reboot It is set to the current run level.
Which daemon handles power management events on a Linux system? acpid batteryd pwrmgntd psd inetd.
Which of the following statements are true about the boot sequence of a PC using a BIOS? (Choose two.) Some parts of the boot process can be configured from the BIOS Linux does not require the assistance of the BIOS to boot a computer The BIOS boot process starts only if secondary storage, such as the hard disk, is functional The BIOS initiates the boot process after turning the computer on The BIOS is started by loading hardware drivers from secondary storage, such as the hard disk.
What is true regarding UEFI firmware? (Choose two.) It can read and interpret partition tables It can use and read certain file systems It stores its entire configuration on the /boot/ partition It is stored in a special area within the GPT metadata It is loaded from a fixed boot disk position.
When is the content of the kernel ring buffer reset? (Choose two.) When the ring buffer is explicitly reset using the command dmesg --clear When the ring buffer is read using dmesg without any additional parameters When a configurable amount of time, 15 minutes by default, has passed When the kernel loads a previously unloaded kernel module When the system is shut down or rebooted.
What is the first program the Linux kernel starts at boot time when using System V init? /lib/init.so /proc/sys/kernel/init /etc/rc.d/rcinit /sbin/init /boot/init.
A Debian package creates several files during its installation. Which of the following commands searches for packages owning the file /etc/debian_version? apt-get search /etc/debian_version apt -r /etc/debian_version find /etc/debian_version -dpkg dpkg -S /etc/debian_version apt-file /etc/debian_version.
Which of the following directories on a 64 bit Linux system typically contain shared libraries? (Choose two.) ~/.lib64/ /usr/lib64/ /var/lib64/ /lib64/ /opt/lib64/.
Which of the following files exist in a standard GRUB 2 installation? (Choose two.) /boot/grub/stages/stage0 /boot/grub/i386-pc/lvm.mod /boot/grub/fstab /boot/grub/grub.cfg /boot/grub/linux/vmlinuz.
Which of the following commands installs all packages with a name ending with the string foo? zypper get "*foo" zypper update "foo?" zypper force "foo*" zypper install "*foo" zypper add ".*foo".
Which of the following properties of a Linux system should be changed when a virtual machine is cloned? (Choose two.) The partitioning scheme The file system The D-Bus Machine ID The permissions of /root/ The SSH host keys.
Which of the following commands installs GRUB 2 into the master boot record on the third hard disk? grub2 install /dev/sdc grub-mkrescue /dev/sdc grub-mbrinstall /dev/sdc grub-setup /dev/sdc grub-install /dev/sdc.
Which of the following partition types is used for Linux swap spaces when partitioning hard disk drives? 7 82 83 8e fd.
What is true regarding the configuration of yum? (Choose two.) Changes to the repository configuration become active after running yum confupdate Changes to the yum configuration become active after restarting the yumd service The configuration of package repositories can be divided into multiple files Repository configurations can include variables such as $basearch or $releasever In case /etc/yum.repos.d/ contains files, /etc/yum.conf is ignored.
Which command uninstalls a package but keeps its configuration files in case the package is re-installed? dpkg -s pkgname dpkg -L pkgname dpkg -P pkgname dpkg -v pkgname dpkg -r pkgname.
Which of the following commands lists the dependencies of the RPM package file foo.rpm? rpm -qpR foo.rpm rpm -dep foo rpm -ld foo.rpm rpm -R foo.rpm rpm -pD foo.
What is the maximum niceness value that a regular user can assign to a process with the nice command when executing a new process? 9 15 19 49 99.
Which of the following commands list all files and directories within the /tmp/ directory and its subdirectories which are owned by the user root? (Choose two.) find /tmp -user root -print find -path /tmp -uid root find /tmp -uid root -print find /tmp -user root find -path /tmp -user root -print.
Which of the following are valid stream redirection operators within Bash? (Choose two.) < #> %> >>> 2>&1.
Which of the following vi commands deletes two lines, the current and the following line? d2 2d 2dd dd2 de12.
From a Bash shell, which of the following commands directly execute the instructions from the file /usr/local/bin/runme.sh without starting a subshell? (Choose two.) source /usr/local/bin/runme.sh /usr/local/bin/runme.sh /bin/bash /usr/local/bin/runme.sh ./usr/local/bin/runme.sh run /usr/local/bin/runme.sh.
Which program runs a command in specific intervals and refreshes the display of the program's output? (Specify ONLY the command without any path or parameters.).
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? i (lowercase) p (lowercase) P (uppercase) U (uppercase) u (lowercase).
Which of the following commands changes all CR-LF line breaks in the text file userlist.txt to Linux standard LF line breaks and stores the result in newlist.txt? tr ""d "˜\r' < userlist.txt > newlist.txt tr ""c "˜\n\r' "˜' <newlist.txt> userlist.txt tr "˜\r\n' "˜' <userlist.txt> newlist.txt tr "˜\r' "˜\n' userlist.txt newlist.txt tr ""s "˜/^M/^J/' userlist.txt newlist.txt.
Which command must be entered before exiting vi to save the current file as filea.txt? %s filea.txt %w filea.txt :save filea.txt :w filea.txt :s filea.txt.
Which of the following commands displays the output of the foo command on the screen and also writes it to a file called /tmp/foodata? foo | less /tmp/foodata foo | cp /tmp/foodata foo > /tmp/foodata foo | tee /tmp/foodata foo > stdout >> /tmp/foodata.
What output will be displayed when the user fred executes the following command? echo "˜fred $USER' fred fred fred /home/fred/ "˜fred $USER' fred $USER "˜fred fred'.
Which of the following commands displays the path to the executable file that would be executed when the command foo is invoked? lsattr foo apropos foo locate foo whatis foo which foo.
When redirecting the output of find to the xargs command, what option to find is useful if the filenames contain spaces? -rep-space -printnul -nospace -ignore-space -print0.
Which of the following commands can be used to determine how long the system has been running? (Choose two.) uptime up time --up uname -u top.
What is true regarding the command ls > files if files does not exist? The output of ls is printed to the terminal files is created and contains the output of ls An error message is shown and ls is not executed The command files is executed and receives the output of ls Any output of ls is discarded.
Which wildcards will match the following filenames? (Choose two.) ttyS0 ttyS1 ttyS2 ttyS[1-5] tty?[0-5] tty*2 tty[A-Z][012] tty[Ss][02].
Which of the following commands redirects the output of ls to standard error? ls >-1 ls <<ERR ls >&2 ls >>2 ls |error.
Which of the following commands displays the contents of a gzip compressed tar archive? gzip archive.tgz | tar xvf - tar ""fzt archive.tgz gzip ""d archive.tgz | tar tvf - tar cf archive.tgz tar ztf archive.tgz.
Which of the following commands prints a list of usernames (first column) and their primary group (fourth column) from the /etc/passwd file? fmt -f 1,4 /etc/passwd cut -d : -f 1,4 /etc/passwd sort -t : -k 1,4 /etc/passwd paste -f 1,4 /etc/passwd split -c 1,4 /etc/passwd.
Which of the following regular expressions represents a single upper-case letter? :UPPER: [A-Z] !a-z %C {AZ}.
Which command is used to start another command with a given nice level? (Specify ONLY the command without any path or parameters.).
Given a log file loga.log with timestamps of the format DD/MM/YYYY:hh:mm:ss, which command filters out all log entries in the time period between 8:00 am and 8:59 am? grep -E "˜:08:[09]+:[09]+' loga.log grep -E "˜:08:[00]+' loga.log grep -E loga.log "˜:08:[0-9]+:[0-9]+' grep loga.log "˜:08:[0-9]:[0-9]' grep -E "˜:08:[0-9]+:[0-9]+' loga.log.
Instead of supplying an explicit device in /etc/fstab for mounting, what other options may be used to identify the intended partition? (Choose two.) LABEL ID FIND NAME UUID.
A yum repository can declare sets of related packages. Which yum command installs all packages belonging to the group admintools? yum pkgsel --install admintools yum install admintools/* yum groupinstall admintools yum taskinstall admintools yum collection install admintools.
What directory contains configuration files for additional yum repositories? (Specify the full path to the directory.).
Which of the following commands installs the GRUB boot files into the currently active file systems and the boot loader into the first partition of the first disk? grub-install /dev/sda grub-install /dev/sda1 grub-install current /dev/sda0 grub-install /dev/sda0 grub-install current /dev/sda1.
Which of the following files are found in the /boot/ file system? (Choose two.) Linux kernel images Bash shell binaries systemd target and service units Initial ramdisk images fsck binaries.
Which file defines the network locations from where the Debian package manager downloads software packages? /etc/dpkg/dpkg.cfg /etc/apt/apt.conf.d /etc/apt/apt.conf /etc/dpkg/dselect.cfg /etc/apt/sources.list.
When removing a package on a system using dpkg package management, which dpkg option ensures configuration files are removed as well? --clean --purge --vacuum --remove --declare.
Which of the following statements are correct when comparing Linux containers with traditional virtual machines (e.g. LXC vs. KVM)? (Choose three.) Containers are a lightweight virtualization method where the kernel controls process isolation and resource management. Fully virtualized machines can run any operating system for a specific hardware architecture within the virtual machine. Containers are completely decoupled from the host system's physical hardware and can only use emulated virtual hardware devices. The guest environment for fully virtualized machines is created by a hypervisor which provides virtual and emulated hardware devices. Containers on the same host can use different operating systems, as the container hypervisor creates separate kernel execution.
The installation of a local Debian package failed due to unsatisfied dependencies. Which of the following commands installs missing dependencies and completes the interrupted package installation? dpkg --fix --all apt-get autoinstall dpkg-reconfigure --all apt-get all apt-get install -f.
Question #59Topic 1 Which of the following commands are valid in the GRUB 2 configuration file? (Choose two.) menuentry uefi pxe-ifconfig insmod kpartx.
What is the purpose of the ldd command? It lists which shared libraries a binary needs to run. It installs and updates installed shared libraries. It turns a dynamically linked binary into a static binary. It defines which version of a library should be used by default. It runs a binary with an alternate library search path.
What can the Logical Volume Manager (LVM) be used for? (Choose three.) To create snapshots. To dynamically change the size of logical volumes. To dynamically create or delete logical volumes. To create RAID 9 arrays. To encrypt logical volumes.
What are the main differences between GPT and MBR partition tables regarding maximum number and size of partitions? (Choose two.) MBR can handle partition sizes up to 4 TB, whereas GPT supports partition sizes up to 128 ZB. By default, GPT can manage up to 128 partitions while MBR only supports four primary partitions. By default, GPT can manage up to 64 partitions while MBR only supports 16 primary partitions. MBR can handle partition sizes up to 2.2 TB, whereas GPT supports sizes up to 9.4 ZB. Both GPT and MBR support up to four primary partitions, each with up to 4096 TB.
A backup software heavily uses hard links between files which have not been changed in between two backup runs. Which benefits are realized due to these hard links? (Choose two.) The old backups can be moved to slow backup media, such as tapes, while still serving as hard link target in new backups. The backup runs faster because hard links are asynchronous operations, postponing the copy operation to a later point in time. The backup is guaranteed to be uncharged because a hard linked file cannot be modified after its creation. The backup consumes less space because the hard links point to the same data on disk instead of storing redundant copies. The backup runs faster because, instead of copying the data of each file, hard links only change file system meta data.
Which file from the /proc/ file system contains a list of all currently mounted devices? (Specify the full name of the file, including path.).
How many fields are in a syntactically correct line of /etc/fstab? 3 4 5 6 7.
Running chmod 640 filea.txt as a regular user doesn't update filea.txt's permission. What might be a reason why chmod cannot modify the permissions? (Choose two.) filea.txt is owned by another user and a regular user cannot change the permissions of another user's file. filea.txt is a symbolic link whose permissions are a fixed value which cannot be charged. filea.txt has the sticky bit set and a regular user cannot remove this permission. filea.txt is a hard link whose permissions are inherited from the target and cannot be set directly. filea.txt has the SetUID bit set which imposes the restriction that only the root user can make changes to the file.
Which of the following Linux filesystems preallocate a fixed number of inodes when creating a new filesystem instead of generating them as needed? (Choose two.) JFS ext3 XFS ext2 procfs.
Which of the following commands sets the SetUID permission on the executable /bin/foo? chmod 4755 /bin/foo chmod 1755 /bin/foo chmod u-s /bin/foo chmod 755+s /bin/foo chmod 2755 /bin/foo.
Which of the following commands can be used to display the inode number of a given file? (Choose two.) inode ln ls cp stat.
After a power outage, the XFS file system of /dev/sda3 is inconsistent. How can the existing file system errors be fixed? By using mount -f to force a mount of the file system By running xfsck on the file system By mounting the file system with the option xfs_repair By running xfsadmin repair on the file system By running xfs_repair on the file system.
Which of the following properties of an existing file changes when a hard link pointing to that file is created? File size Link count Modify timestamp Inode number Permissions.
Following the Filesystem Hierarchy Standard (FHS), where should binaries that have been compiled by the system administrator be placed in order to be made available to all users on the system? (Specify the full path to the directory.).
Which of the following commands show how the shell handles a specific command? where type stat case fileinfo.
Which of the following commands displays the manual page command from section 1? man command(1) man command@1 man 1 command man 1.command man -s 1 command.
Question #75Topic 1 Which of the following commands creates or, in case it already exists, overwrites a file called data with the output of ls? ls 3> data ls >& data ls > data ls >> data ls >>> data.
Which of the following commands is used to change options and positional parameters within a running Bash shell? history setsh bashconf set envsetup.
Which of the following commands display the IDs of all processes owned by root? (Choose two.) pgrep -c root pgrep -u root pgrep -f root pgrep -U 0 pgrep -c 0.
Which of the following sequences in the vi editor saves the opened document and exits the editor? (Choose two.) Ctrl XX Ctrl :W Esc zz Esc :wq Esc ZZ.
What is the effect of the -v option for the grep command? It enables color to highlight matching parts. It shows the command's version information. It only outputs non-matching lines. It changes the output order showing the last matching line first. It outputs all lines and prefixes matching lines with a+.
Which of the following signals is sent to a process when the key combination Ctrl+Z is pressed on the keyboard? SIGTERM SIGCONT SIGSTOP SIGKILL SIGINT.
What is the output when the regular expression s/[ABC] [abc]/xx/ is applied to the following string? ABCabc - ABxxbc xxCxxc xxxxxx ABCabc Axxaxx.
Which of the following commands print the current working directory when using a Bash shell? (Choose two.) echo "${PWD}" echo "${WD}" printwd pwd echo "${pwd}".
Question #83Topic 1 Which of the following commands outputs test to the shell? cat <!EOT test EOT cat <|EOT test EOT cat !<EOT test EOT cat &<EOT test EOT cat <<EOT test EOT.
What is the default nice level when a process is started using the nice command? -10 0 10 15 20.
A user accidentally created the subdirectory \dir in his home directory. Which of the following commands will remote that directory? rmdir ~/\\dir rmdir "~/\dir" rmdir ~/'dir' rmdir ~/\dir rmdir "˜~/\dir'.
Which of the following commands can perform searches on file contents using regular expressions? find locate grep reggrep grep.
In a nested directory structure, which find command line option would be used to restrict the command to searching down a particular number of subdirectories? -maxdepth -dirmax -maxlevels -s -n.
Which of the following commands generates a list of user names from /etc/passwd along with their login shell? column -s : 1,7 /etc/passwd chop -c 1,7 /etc/passwd colrm 1,7 /etc/passwd sort -t: -k1,7 /etc/passwd cut -d: -f1,7 /etc/passwd.
If the gzip compressed tar archive texts.tgz contains the files a.txt and b.txt, which files will be present in the current directory after running gunzip texts.tgz? Only a.txt, b.txt, and texts.tgz Only texts.tar and texts.tgz Only a.txt.gz and b.txt.gz Only a.txt and b.txt Only texts.tar.
In the vi editor, how can commands such as moving the cursor or copying lines into the buffer be issued multiple times or applied to multiple rows? By using the command :repeat followed by the number and the command By specifying the number right in front of a command such as 41 or 2yj. By selecting all affected lines using the shit and cursor keys before applying the command. By issuing a command such as :set repetition=4 with repeats every subsequent command 4 times. By specifying the number after a command such as 14 or yj2 followed by escape.
Which of the following statements is correct for a command ending with an & character? The command's output is redirected to /dev/null. The command is run in background of the current shell. The command's output is executed by the shell. The command is run as a direct child of the init process. The command's input is read from /dev/null.
Which of the following commands reads a file and creates separate chunks of a given size from the file's contents? ar cat break split parted.
What is the purpose of the xargs command? It passes arguments to an X server. It repeats the execution of a command using different parameters for each invocation. It reads standard input and builds up commands to execute. It asks a question, graphically, and returns the answer to the shell. It allows specifying long options (like --help) for commands that normally only accept short options (like -h).
Which command is used to change the priority of an already running process? (Specify ONLY the command without any path or parameters.).
In Bash, inserting 1>&2 after a command redirects"¦ "¦standard error to standard input. "¦standard output to standard error. "¦standard input to standard error. "¦standard error to standard output. "¦standard output to standard input.
Where is the bootloader stored on the hard disk of a UEFI system? In the EFI Boot Record (EBR). In the Master Boot Record (MBR). On the EFI System Partition (ESP). On the partition labeled boot. On the partition number 127.
What is the correct way to set the default systemd boot target to multi-user? systemctl isolate multi-user.target systemctl set-runlevel multi-user.target systemctl set-boot multi-user.target systemctl set-default multi-user.target systemctl boot -p multi-user.target.
Which of the following statements are correct about the initial RAM disk involved in the boot process of Linux? (Choose two.) An initramfs is a compressed file system archive, which can be unpacked to examine its contents. An initramfs file contains the MBR, the bootloader and the Linux kernel. After a successful boot, the initramfs contents are available in /run/initramfs/. The kernel uses the initramfs temporarily before accessing the real root file system. An initramfs does not depend on a specific kernel version and is not changed after the initial installation.
Question #99Topic 1 Which of the following commands loads a kernel module along with any required dependency modules? depmod modprobe module_install insmod loadmod.
What information can the lspci command display about the system hardware? (Choose three.) System battery type Device IRQ settings PCI bus speed Ethernet MAC address Device vendor identification.
Which System V init configuration file is commonly used to set the default run level? (Specify the full name of the file, including path.).
Which of the following apt-get subcommands installs the newest versions of all currently installed packages? auto-update dist-upgrade full-upgrade install update.
Given the following input stream: txt1.txt atxt.txt txtB.txt Which of the following regular expressions turns this input stream into the following output stream? txt1.bak.txt atxt.bak.txt txtB.bak.txt s/^.txt/.bak/ s/txt/bak.txt/ s/txt$/bak.txt/ s/^txt$/.bak^/ s/[.txt]/.bak$1/.
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? tune2fs -d 200 /dev/sda1 tune2fs -i 200 /dev/sda1 tune2fs -c 200 /dev/sda1 tune2fs -n 200 /dev/sda1 tune2fs --days 200 /dev/sda1.
Which file in the /proc filesystem lists parameters passed from the bootloader to the kernel? (Specify the file name only without any path.).
A faulty kernel module is causing issues with a network interface card. Which of the following actions ensures that this module is not loaded automatically when the system boots? Using lsmod --remove --autoclean without specifying the name of a specific module Using modinfo ""k followed by the name of the offending module Using modprobe ""r followed by the name of the offending module Adding a blacklist line including the name of the offending module to the file /etc/modprobe.d/blacklist.conf Deleting the kernel module's directory from the file system and recompiling the kernel, including its modules.
What is contained on the EFI System Partition? The Linux root file system The first stage boot loader The default swap space file The Linux default shell binaries The user home directories.
The command dbmaint & was used to run dbmaint in the background. However, dbmaint is terminated after logging out of the system. Which alternative dbmaint invocation lets dbmaint continue to run even when the user running the program logs out? job -b dmaint dbmaint &>/dev/pts/null nohup dbmaint & bg dbmaint wait dbmaint.
Which of the following files, located in a user's home directory, contains the Bash history? .bashrc_history .bash_histfile .history .bash_history .history_bash.
Which of the following commands lists all currently installed packages when using RPM package management? yum --query --all yum --list --installed rpm --query --list rpm --list --installed rpm --query --all.
Which of the following settings for umask ensures that new files have the default permissions -rw-r-----? 0017 0640 0038 0227 0027.
When in Normal mode in vi, which character can be used to begin a reverse search of the text? r / F ? s.
Which of the following tools can show the complete path of an executable file that the current shell would execute when starting a command without specifying its complete path? (Choose two.) find pwd which locate type.
Which of the following commands determines a file's format by using a definition database file which contains information about all common file types? type file magic pmagic hash.
Which command displays a list of all background tasks running in the current shell? (Specify ONLY the command without any path or parameters.).
When booting from the hard disk, a computer successfully loads the Linux kernel and initramfs but hangs during the subsequent startup tasks. The system is booted using a Linux based rescue CD to investigate the problem. Which of the following methods helps to identify the root cause of the problem? Using the dmesg command from the rescue CD's shell to view the original system's boot logs. Investigating the file /proc/kmsg on the computer's hard disk for possible errors. Investigating the file /var/log on the computer's hard disk for possible errors. Using chroot to switch to the file system on the hard disk and use dmesg to view the logs. Rebooting again from the hard drive since the system successfully booted from the rescue CD.
Given the following two symbolic links in a System V init configuration: /etc/rc1.d/K01apache2 /etc/rc2.d/S02apache2 When are the scripts executed that are referenced by these links? (Choose two.) S02apache2 is run when runlevel 2 is entered. S02apache2 is run when runlevel 2 is left. K01apache2 is never run because K indicates a deactivated service. Both S02apache2 and K01apache2 are run during a system shutdown. K01apache2 is run when runlevel 1 is entered.
Report abuse Consent Terms of use