Examen de certificacion LPIC - 101

Descripción

Test sobre Examen de certificacion LPIC - 101, creado por Carlos Alberto Jara Alva el 28/06/2022.
Carlos Alberto Jara Alva
Test por Carlos Alberto Jara Alva, actualizado hace más de 1 año
Carlos Alberto Jara Alva
Creado por Carlos Alberto Jara Alva hace alrededor de 2 años
122
0

Resumen del Recurso

Pregunta 1

Pregunta
What kind of hardware is represented by the device name /dev/hda?
Respuesta
  • IDE Hard Drive
  • SCSI Hard Drive
  • SATA Hard Drive
  • Sound Card

Pregunta 2

Pregunta
What file should you query to determine whether there is an IRQ conflict on your system?
Respuesta
  • /proc/interrupts
  • /proc/cpuinfo
  • /proc/meminfo
  • /proc/irqstatus

Pregunta 3

Pregunta
Which of the following are arguments you can pass to the kernel at boot time to tell it to start in runlevel 1 (single-user mode)? (Select two)
Respuesta
  • 1
  • single
  • user
  • one

Pregunta 4

Pregunta
Which process is referred to as the “mother of all processes” and always has PID 1?
Respuesta
  • init
  • mother
  • admin
  • administrator

Pregunta 5

Pregunta
Which logfile should you examine for information about the hardware that the kernel initialized at boot time?
Respuesta
  • /var/log/messages
  • /var/log/lastlog
  • /var/log/wtmp
  • /var/log/cron

Pregunta 6

Pregunta
If you want to change your system’s default boot device from the hard drive to the CD-ROM drive, where would you make that configuration change?
Respuesta
  • The BIOS
  • The file /boot/grub/grub.conf
  • The file /etc/inittab
  • The file /etcgrub/grub.conf

Pregunta 7

Pregunta
What command line would reboot a running Linux system immediately, forcing an fsck of every drive on reboot?
Respuesta
  • /sbin/shutdown –r –F now
  • /sbin/shutdown –h –F now
  • /sbin/shutdown
  • /sbin/shutdown –r –f now

Pregunta 8

Pregunta
Which of the following are valid ways to interactively switch a running system to runlevel 3? (Select two)
Respuesta
  • init 3
  • telinit 3
  • runlevel 3
  • init -3

Pregunta 9

Pregunta
If you have created your own script that you wish to run every time your system boots, but it must run after all other processes have completed, where is the best place to reference it?
Respuesta
  • /etc/inittab
  • /etc/rc.d/rc.sysinit
  • A symlink beginning with S in /etc/rc.d/rc5.d/
  • /etc/rc.d/rc.local

Pregunta 10

Pregunta
Which command is used to display the current mounted partitions, their mount points, and the available free space on each?
Respuesta
  • df
  • fdisk
  • fsck
  • mount

Pregunta 11

Pregunta
Which partition is designed to hold data that changes often and is writable by all users?
Respuesta
  • /tmp
  • /opt
  • /sys
  • /var

Pregunta 12

Pregunta
What does MBR stand for?
Respuesta
  • Master Boot Record
  • Main Booting Runlevel
  • Main Block Record
  • Master Boot Resource

Pregunta 13

Pregunta
Which of the following lines in /boot/grub/grub.conf would tell GRUB to use the first partition of the first hard drive as the root partition?
Respuesta
  • root (hd0,0)
  • boot (hd0,0)
  • root (hd1,1)
  • boot (hd1,1)

Pregunta 14

Pregunta
What file contains a list of directories that are searched to find shared libraries when a binary program is executed?
Respuesta
  • /etc/ld.so.conf
  • /etc/loader.conf
  • /etc/library/conf
  • /etc/ld.so.cache

Pregunta 15

Pregunta
For distributions that use the Debian package management system, what command will download and update all installed packages to the latest available version?
Respuesta
  • apt-get update
  • apt-get install
  • apt-cache update
  • dpkg –i

Pregunta 16

Pregunta
If I download a .deb package (package.deb) and wish to install it, what’s the best command to use?
Respuesta
  • dpkg –i package.deb
  • apt-get install package.deb
  • apt install package.deb
  • dpkg package.deb

Pregunta 17

Pregunta
For distributions that use the Red Hat package management system, what command will list all packages currently installed?
Respuesta
  • rpm –qa
  • rpm –i
  • rpm –Uvh
  • rpm –list

Pregunta 18

Pregunta
For distributions that use the Red Hat package management system, what command will download and update all installed packages to the latest available version?
Respuesta
  • yum update
  • yum install
  • yum config
  • yum list available

Pregunta 19

Pregunta
What option(s) to rpm will instruct rpm to run a verification check on all packages installed on the system? (Select two)
Respuesta
  • rpm –verify –all
  • rpm –Va
  • rpm –qa
  • rpm –check

Pregunta 20

Pregunta
What command is used to display a list of directories the shell will search in to find a command that has been entered?
Respuesta
  • echo $PATH
  • echo $MYPATH
  • setenv
  • set $PATH

Pregunta 21

Pregunta
Which file(s) does the bash shell read at login to set environment variables?
Respuesta
  • All of the above
  • /etc/bashrc
  • ~/.bashrc
  • None of the above

Pregunta 22

Pregunta
What commands can be used to view a list of the last commands typed into the shell?
Respuesta
  • All of the above
  • history
  • <Ctrl-R>
  • <up arrow>

Pregunta 23

Pregunta
If my current directory is /opt and I wish to run the command /opt/runme, what command(s) could I type (assuming /opt is not in your $PATH)? (select two)
Respuesta
  • /opt/runme
  • /runme
  • opt/runme
  • ~/runme

Pregunta 24

Pregunta
Which of the following commands will redirect the standard output of /bin/ls to /dev/null, while allowing standard error to display on the screen?
Respuesta
  • /bin/ls 1> /dev/null
  • /bin/ls > /dev/null
  • /bin/ls > /dev/null 2>&1
  • /bin/ls 2> /dev/null 1>&2

Pregunta 25

Pregunta
Which of the following command(s) will display the first 5 lines of the file /etc/passwd? (Select two)
Respuesta
  • head -5 /etc/passwd
  • cat /etc/passwd | head -5
  • cat -5 /etc/passwd
  • cat /etc/passwd | more -5

Pregunta 26

Pregunta
Which commands can be used to perform a search and replace on a file or a text stream? (Select two)
Respuesta
  • sed
  • tr
  • dd
  • mv

Pregunta 27

Pregunta
What command(s) can be used to copy data to and from raw devices, bypassing the filesystem? (Select two)
Respuesta
  • tar
  • dd
  • mv
  • sed

Pregunta 28

Pregunta
What option can be passed to /bin/ls to display every file in a directory that ends in .txt?
Respuesta
  • ls * txt
  • ls *txt*
  • ls [txt]
  • ls +.txt

Pregunta 29

Pregunta
What option can be passed to /bin/ls to display every file that starts with the letters a, b, or c?
Respuesta
  • ls [abc]*
  • ls abc*
  • ls a*b*c*
  • ls ^abc

Pregunta 30

Pregunta
Which file extensions are common for files or directories that have been concatenated with tar and then compressed with bzip2?
Respuesta
  • All of the above
  • .tar.bz2
  • .tbz2
  • .tbz

Pregunta 31

Pregunta
What device should you redirect output to if you do not want to see it or save it?
Respuesta
  • /dev/null
  • /dev/nothing
  • /dev/empty
  • /dev/zero

Pregunta 32

Pregunta
Which of the following commands would list the contents of the directory /tmp, store that list in the file /root/tmp.txt, and display the list a screen at a time?
Respuesta
  • ls –l /tmp | tee /root/tmp.txt | more
  • ls –l /tmp | xargs /root/tmp.txt | more
  • ls –l /tmp | more | tee /root/tmp.txt
  • tee /root/tmp.txt | ls –l /tmp | more

Pregunta 33

Pregunta
What character is used after a command line to indicate that the command should run in the background and return shell control to the user?
Respuesta
  • &
  • *
  • +
  • -

Pregunta 34

Pregunta
What command is used at the beginning of a command line to detach the process from a terminal, allowing it to continue running after the user has logged out?
Respuesta
  • nohup
  • hangup
  • detach
  • background

Pregunta 35

Pregunta
What command will display a full-screen, updated list of all running processes?
Respuesta
  • top
  • kill
  • ps
  • free

Pregunta 36

Pregunta
If a running process is not responding to a standard terminate signal from the /bin/kill command, what option can you pass to force the process to terminate immediately?
Respuesta
  • kill -9
  • kill -1
  • kill --HUP
  • kill --stop

Pregunta 37

Pregunta
What command can be used to kill processes by name, rather than process ID?
Respuesta
  • killall
  • killproc
  • killname
  • kill –name

Pregunta 38

Pregunta
Which command line would start the program /usr/bin/top with the highest priority possible?
Respuesta
  • nice --20 /usr/bin/top
  • nice 20 /usr/bin/top
  • nice 19 /usr/bin/top
  • nice -20 /usr/bin/top

Pregunta 39

Pregunta
Which command is used to modify the priority of a process already running?
Respuesta
  • renice
  • priority
  • chage
  • ps

Pregunta 40

Pregunta
Which command(s) would display every line in /tmp/file.txt that begins with the letter h and ends with the letter t?
Respuesta
  • grep –E "^h.*t$" /tmp/file.txt
  • grep "^h.+t$" /tmp/file.txt
  • grep –E "^h.+t$" /tmp/file.txt
  • grep –E "$h.+t^" /tmp/file.txt

Pregunta 41

Pregunta
Which command(s) would display every line in /tmp/file.txt that contains at least one letter of the alphabet? (Select Two)
Respuesta
  • grep " [a-zA-Z] " /tmp/file.txt
  • grep " [:alpha:] " /tmp/file.txt
  • grep " [:letters:] " /tmp/file.txt
  • grep " (a-zA-Z) " /tmp/file.txt

Pregunta 42

Pregunta
In the vi editor, what command sequence given in command mode will save the current file and quit the editor?
Respuesta
  • :wq
  • :WQ
  • :pq
  • None of the above

Pregunta 43

Pregunta
In the vi editor, what command sequence given in command mode will make a copy of the current line?
Respuesta
  • yyp
  • cp
  • yp
  • ccp

Pregunta 44

Pregunta
In the vi editor, what command sequence given in command mode will quit a file without saving, even if changes have been made?
Respuesta
  • :q!
  • :q
  • :q1
  • :w!

Pregunta 45

Pregunta
Which of the following are examples of journaling filesystems? (Select two)
Respuesta
  • ext3
  • reiserfs
  • xfs
  • ext2

Pregunta 46

Pregunta
What command will create an ext3 partition on the first partition of the first SCSI hard drive?
Respuesta
  • mkfs –t ext3 /dev/sda1
  • fdisk –t ext3 /dev/sda1
  • fsck –t ext3 /dev/sda1
  • mkfs –s ext3 /dev/hda1

Pregunta 47

Pregunta
What command is used to convert an existing ext2 partition (/dev/sda1) to an ext3 (journaled) partition?
Respuesta
  • tune2fs –j /dev/sda1
  • dumpe2fs –j /dev/sda1
  • fsck –j /dev/sda1
  • mkfs.ext2 –j /dev/sda1

Pregunta 48

Pregunta
What command is used to display the number of free inodes on an ext2 or ext3 partition?
Respuesta
  • dumpe2fs
  • showe2fs
  • fsck
  • fdisk

Pregunta 49

Pregunta
Which file defines what partitions are mounted at boot time?
Respuesta
  • /etc/fstab
  • /etc/partitions
  • /etc/mount
  • /etc/mtab

Pregunta 50

Pregunta
Which command will mount all partitions of type nfs defined in /etc/fstab?
Respuesta
  • mount –a –t nfs
  • mount –a nfs –t
  • mount –nfs
  • mountall –nfs

Pregunta 51

Pregunta
If you would like to give a normal (nonroot) user the ability to mount a device, what option should you define for that device in /etc/fstab?
Respuesta
  • user
  • mountable
  • noroot
  • ok

Pregunta 52

Pregunta
Which option to chmod would assign read/write permission to the file owner, read-only permission to the group owner, and read-only permission to everyone else?
Respuesta
  • chmod 644 file.txt
  • chmod 755 file.txt
  • chmod 466 file.txt
  • chmod 777 file.txt

Pregunta 53

Pregunta
Which option to umask would set my default file permissions such that files are created with these permissions: user has read/write, group has read/write, and everyone else has read only?
Respuesta
  • umask 022
  • umask 200
  • umask 220
  • umask 775

Pregunta 54

Pregunta
Which command can be used to quickly tell you if an executable command is in any directory defined in your $PATH environment variable?
Respuesta
  • which
  • find
  • locate
  • who

Pregunta 55

Pregunta
Which directory, according to the Filesystem Hierarchy Standard, is designed to hold essential system binaries?
Respuesta
  • /sbin
  • /bin
  • /usr/bin
  • /opt/bin

Pregunta 56

Pregunta
According to the Filesystem Hierarchy Standard, what directory (or directories) must hold the system kernel? (Select Two)
Respuesta
  • /boot
  • /
  • /opt
  • /sbin

Pregunta 57

Pregunta
What command is used to maintain the filesystem index that the command /usr/bin/locate searches?
Respuesta
  • updatedb
  • update
  • updatelocate
  • locate –update

Pregunta 58

Pregunta
Use find to search for bash:
Respuesta
  • $ find / -name bash
  • $ find / -linux bash
  • $ find / -time bash
  • $ find / -chown bash

Pregunta 59

Pregunta
If you created a new partition in the previous exercises, check it with fsck and observe the output:
Respuesta
  • $ fsck -f /dev/partition
  • $ fsck -f /bin/partition
  • $ fsck -f /sbin/partition
  • $ fsck -f /dev/null

Pregunta 60

Pregunta
Check on the status of filesystems using df:
Respuesta
  • $ df -h
  • $ df -w
  • $ df -z
  • $ df -gg
Mostrar resumen completo Ocultar resumen completo

Similar

Elementos Básicos de Ingeniería Ambiental
Evilus Rada
Consejos para un Horario de Estudio para Selectividad
maya velasquez
Test de Inglés para la Prepa Abierta 3
Raúl Fox
Disoluciones
Victor Rodriguez
Mapa Conceptual
Javierr
ingles
kanderkevin
LA SOCIEDAD MAYA
uwaldo_h
Fichas 39/2015
Sero Tonina
Simulacro Prueba ICFES
pulidonomesque
Historia Interna 1
Sebastián Agüero-SanJuan
KRISTAUTASUNA_plantilla
Txemi López