LPIC-1
![]() |
![]() |
![]() |
Título del Test:![]() LPIC-1 Descripción: Preguntas de repaso para el examen de certificacion LPCI 101 |




Comentarios |
---|
NO HAY REGISTROS |
What are common IRQs for RS-232 serial ports? (Select two.). 1. 3. 4. 8. 16. What tool would you use to disable a motherboard’s sound hardware if you don’t want touse it?. The firmware. The alsactl utility. The lsmod command. The lspci program. None of the above; onboard sound devices can’t be disabled. What is the purpose of udev?. To aid in the development of software. To unload Linux device drivers. To load Linux device drivers. To store devices’ BIOS configurations in files. To manage the /dev directory tree. You’ve just installed Linux on a new computer with a single SATA hard disk. What device identifier will refer to the disk?. /dev/sda. /dev/mapper/disk1. /dev/hda. C:. /dev/sda or /dev/hda. Which files contain essential system information such as IRQs, direct memory access channels, and I/O addresses? (Select three.). /proc/ioports. /proc/ioaddresses. /proc/dma. /proc/interrupts. /proc/hardware. Typing fdisk -l /dev/sda on a Linux computer with an MBR disk produces a listing of four partitions: /dev/sda1, /dev/sda2, /dev/sda5, and /dev/sda6. Which of the following is true?. The disk contains two primary partitions and two extended partitions. Either /dev/sda1 or /dev/sda2 is an extended partition. The partition table is corrupted; there should be a /dev/sda3 and a /dev/sda4 before /dev/sda5. If you add a /dev/sda3 with fdisk, /dev/sda5 will become /dev/sda6 and /dev/sda6 will become /dev/sda7. Both /dev/sda1 and /dev/sda2 are logical partitions. A new Linux administrator plans to create a system with separate /home, /usr/local, and /etc partitions, in addition to the root (/) partition. Which of the following best describes this configuration?. The system won’t boot because critical boot-time files reside in /home. The system will boot, but /usr/local won’t be available because mounted partitions must be mounted directly off their parent partition, not in a subdirectory. The system will boot only if the /home partition is on a separate physical disk from the /usr/local partition. The system will boot and operate correctly, provided each partition is large enough for its intended use. The system won’t boot because /etc contains configuration files necessary to mount non-root partitions. Which of the following directories is most likely to be placed on its own hard disk partition?. /bin. /sbin. /mnt. /home. /dev. You discover that an MBR hard disk has partitions with type codes of 0x0f, 0x82, and 0x83. Assuming these type codes are accurate, what can you conclude about the disk?. The disk holds a partial or complete Linux system. The disk holds DOS or Windows 9x/Me and Windows NT/200x/XP installations. The disk holds a FreeBSD installation. The disk is corrupt; those partition type codes are incompatible. The disk holds a Mac OS X installation. You run Linux’s fdisk and modify your partition layout. Before exiting the program, you realize that you’ve been working on the wrong disk. What can you do to correct this problem?. Nothing; the damage is done, so you’ll have to recover data from a backup. Type w to exit fdisk without saving changes to disk. Type q to exit fdisk without saving changes to disk. Type u repeatedly to undo the operations you’ve made in error. Type t to undo all the changes and return to the original disk state. What does the following command accomplish? # mkfs -t ext2 /dev/sda4. It sets the partition table type code for /dev/sda4 to ext2. It converts a FAT partition into an ext2fs partition without damaging the partition’s existing files. Nothing; the -t option isn’t valid, and so it causes mkfs to abort its operation. It converts an ext2 filesystem to an ext4 filesystem. It creates a new ext2 filesystem on /dev/sda4, overwriting any existing filesystem and data. Which of the following best summarizes the differences between DOS’s FDISK and Linux’s fdisk?. Linux’s fdisk is a simple clone of DOS’s FDISK but written to work from Linux rather than from DOS or Windows. The two are completely independent programs that accomplish similar goals, although Linux’s fdisk is more flexible. DOS’s FDISK uses GUI controls, whereas Linux’s fdisk uses a command-line interface, but they have similar functionality. Despite their similar names, they’re completely different tools—DOS’s FDISK handles disk partitioning, whereas Linux’s fdisk formats floppy disks. DOS’s FDISK manages GPT disks whereas Linux’s fdisk manages MBR disks. Which of the following options is used with fsck to force it to use a particular filesystem type?. -A. -N. -t. -C. -f. Which of the following pieces of information can df not report?. How long the filesystem has been mounted. The number of inodes used on an ext3fs partition. The filesystem type of a partition. The percentage of available disk space used on a partition. The mount point associated with a filesystem. What is an advantage of a journaling filesystem over a conventional (non-journaling) filesystem?. Journaling filesystems are older and better tested than non-journaling filesystems. Journaling filesystems never need to have their filesystems checked with fsck. Journaling filesystems support Linux ownership and permissions; non-journaling filesystems don’t. Journaling filesystems require shorter disk checks after a power failure or system crash. Journaling filesystems record all transactions, enabling them to be undone. To access files on a USB flash drive, you type mount /dev/sdc1 /media/flash as root. Which types of filesystems will this command mount?. Ext2fs. FAT. HFS. ReiserFS. All of the above. Which of the following /etc/fstab entries will mount /dev/sdb2 as the /home directory at boot time?. /dev/sdb2 reiserfs /home defaults 0 0. /dev/sdb2 /home reiserfs defaults 0 0. /home reiserfs /dev/sdb2 noauto 0 0. /home /dev/sdb2 reiserfs noauto 0 0. reiserfs /dev/sdb2 /home noauto 0 0. What filesystem options might you specify in /etc/fstab to make a removable disk (USB flash drive, Zip disk, floppy disk, and so on) mountable by an ordinary user with a UID of 1000? (Select three.). user. users. owner. owners. uid=1000. What is the minimum safe procedure for removing a USB flash drive, mounted from /dev/sdb1 at /media/usb, from a Linux computer?. Type umount /media/usb, wait for the command to return and disk-activity lights to stop, and then unplug the drive. Unplug the drive, and then type umount /media/usb to ensure that Linux registers the drive’s removal from the system. Unplug the drive, and then type sync /dev/sdb1 to flush the caches to ensure problems don’t develop. Type usbdrive-remove, and then quickly remove the disk before its activity light stopsblinking. Type fsck /dev/sdb1, wait for the command to return and disk-activity lights to stop, and then unplug the drive. |