[Dec 30, 2023] TorrentVCE 101-500 Exam Practice Test Questions (Updated 246 Questions) [Q38-Q59]

Share

[Dec 30, 2023] TorrentVCE 101-500 Exam Practice Test Questions (Updated 246 Questions)

Pass Lpi 101-500 Exam Info and Free Practice Test


What is the duration, language, and format of LPIC-1 Linux Administrator , 101-500 Exam

  • Language : English, German, Japanese, Portuguese, Spanish, Chinese (Simplified) and Chinese (Traditional)
  • Passing Score : 500 / 800
  • Duration : 90 minutes
  • Number of questions : 60 questions
  • Validity Period : 5 years

 

NEW QUESTION # 38
Which of the following statements are true about the boot sequence of a PC using a BIOS? (Choose two.)

  • A. The BIOS boot process starts only if secondary storage, such as the hard disk, is functional
  • B. The BIOS initiates the boot process after turning the computer on
  • C. The BIOS is started by loading hardware drivers from secondary storage, such as the hard disk
  • D. Some parts of the boot process can be configured from the BIOS
  • E. Linux does not require the assistance of the BIOS to boot a computer

Answer: B,D


NEW QUESTION # 39
What is contained on the EFI System Partition?

  • A. The user home directories
  • B. The Linux default shell binaries
  • C. The first stage boot loader
  • D. The Linux root file system
  • E. The default swap space file

Answer: C


NEW QUESTION # 40
Which file defines the network locations from where the Debian package manager downloads software packages?
/etc/dpkg/dpkg.cfg

  • A.
  • B. /etc/apt/apt.conf.d
  • C. /etc/apt/sources.list
  • D. /etc/dpkg/dselect.cfg
  • E. /etc/apt/apt.conf

Answer: A


NEW QUESTION # 41
FILL BLANK
Which System V init configuration file is commonly used to set the default run level? (Specify the full name of the file, including path.)

Answer:

Explanation:
/etc/inittab


NEW QUESTION # 42
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?

  • A. dbmaint &>/dev/pts/null
  • B. nohup dbmaint &
  • C. wait dbmaint
  • D. job -b dmaint
  • E. bg dbmaint

Answer: E


NEW QUESTION # 43
Which daemon handles power management events on a Linux system?

  • A. psd
  • B. batteryd
  • C. acpid
  • D. inetd
  • E. pwrmgntd

Answer: C


NEW QUESTION # 44
After a power outage, the XFS file system of /dev/sda3is inconsistent. How can the existing file system errors be fixed?

  • A. By using mount -fto force a mount of the file system
  • B. By running xfs_repairon the file system
  • C. By running xfsadmin repairon the file system
  • D. By running xfsckon the file system
  • E. By mounting the file system with the option xfs_repair

Answer: B


NEW QUESTION # 45
Which of the following are filesystems which can be used on Linux root partitions? (Choose two.)

  • A. VFAT
  • B. XFS
  • C. NTFS
  • D. swap
  • E. ext3

Answer: D,E


NEW QUESTION # 46
What is the first program the Linux kernel starts at boot time when using System V init?

  • A. /boot/init
  • B. /lib/init.so
  • C. /sbin/init
  • D. /proc/sys/kernel/init
  • E. /etc/rc.d/rcinit

Answer: C

Explanation:
Explanation/Reference:


NEW QUESTION # 47
The command dbmaint & was used to run dbmaintin the background. However, dbmaintis terminated after logging out of the system. Which alternative dbmaintinvocation lets dbmaintcontinue to run even when the user running the program logs out?
job -b dmaint

  • A. dbmaint &>/dev/pts/null
  • B.
  • C. nohup dbmaint &
  • D. wait dbmaint
  • E. bg dbmaint

Answer: E


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

  • A. 2>&1 >filename
  • B. >filename 2>&1
  • C. 1&2>filename
  • D. >>filename
  • E. 1>&2>filename

Answer: B


NEW QUESTION # 49
Which of the following commands enables the setuid (suid) permission on the executable /bin/foo?

  • A. chmod u-s /bin/foo
  • B. chmod 1755 /bin/foo
  • C. chmod 4755 /bin/foo
  • D. chmod 755+s /bin/foo

Answer: C


NEW QUESTION # 50
Which of the following statements is correct regarding the command foo 1> bar?

  • A. The stdout from the command foo overwrites the file bar.
  • B. The stderr from the command foo is saved to the file bar.
  • C. The stdout from the command foo is appended to the file bar.
  • D. The command foo receives its stdin from the file bar.
  • E. The command foo receives its stdin from the stdout of the command bar.

Answer: A


NEW QUESTION # 51
Consider the following directory:
drwxrwxr-x 2 root sales 4096 Jan 1 15:21 sales
Which command ensures new files created within the directory salesare owned by the group sales?
(Choose two.)

  • A. chgrp -p sales sales
  • B. chmod 2775 sales
  • C. setpol -R newgroup=sales sales
  • D. chown --persistent *.sales sales
  • E. chmod g+ssales

Answer: B,E


NEW QUESTION # 52
Which of the following statements are correct when comparing Linux containers with traditional virtual machines (e.g. LXC vs. KVM)? (Choose three.)

  • A. Containers are completely decoupled from the host system's physical hardware and can only use emulated virtual hardware devices.
  • B. Fully virtualized machines can run any operating system for a specific hardware architecture within the virtual machine.
  • C. The guest environment for fully virtualized machines is created by a hypervisor which provides virtual and emulated hardware devices.
  • D. Containers on the same host can use different operating systems, as the container hypervisor creates separate kernel execution.
  • E. Containers are a lightweight virtualization method where the kernel controls process isolation and resource management.

Answer: B,C,E

Explanation:
Explanation


NEW QUESTION # 53
How many fields are in a syntactically correct line of /etc/fstab?

  • A. 0
  • B. 1
  • C. 2
  • D. 3
  • E. 4

Answer: E


NEW QUESTION # 54
To prevent users from being able to fill up the / partition, the ____________ directory should be on a separate partition if possible because it is world writeable.

Answer:

Explanation:
/tmp, tmp


NEW QUESTION # 55
Which command displays the contents of the Kernel Ring Buffer on the command line? (Provide only the command name without any options or path information)

Answer:

Explanation:
dmesg, /bin/dmesg


NEW QUESTION # 56
Which of the following shell commands makes the already defined variable TEST visible to new child processes? (Choose two.)

  • A. export -v TEST
  • B. declare +x TEST
  • C. declare -x TEST
  • D. export TEST
  • E. visible TEST

Answer: D


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

  • A. dpkg -s pkgname
  • B. dpkg -L pkgname
  • C. dpkg -P pkgname
  • D. dpkg -r pkgname

Answer: D


NEW QUESTION # 58
Which of the following commands show how the shell handles a specific command?
where

  • A. fileinfo
  • B. stat
  • C. type
  • D.
  • E. case

Answer: B


NEW QUESTION # 59
......


Lpi 101-500 certification exam is an excellent way for individuals to demonstrate their proficiency in Linux-based systems and applications. LPIC-1 Exam 101, Part 1 of 2, version 5.0 certification program is globally recognized and highly regarded in the IT industry. Passing the exam requires a thorough understanding of Linux concepts and command-line usage, which can be gained through study and practice. By achieving this certification, individuals can enhance their career prospects and demonstrate their expertise in Linux-based systems.

 

Pass Your Lpi Exam with 101-500 Exam Dumps: https://www.torrentvce.com/101-500-valid-vce-collection.html

101-500 Exam Dumps PDF Updated Dump from TorrentVCE Guaranteed Success: https://drive.google.com/open?id=1ozln6kza3EsaPxP5q43KRBZO4eTF97r4