Quick Quizzes Exam 2 Flashcards
What type of device transfers chunks or blocks of information at a time by using physical memory to buffer the transfer?
- Character device
- Minor device
- Major device
- Block device
Block device
What command is used to unmount a mounted USB flash memory drive from the Linux command line?
a. unmount
b. mount -u
c. umount
d. mount -exit
Answer: C
Answer: C
c. umount
- What device file would be used to reference the PS/2 mouse port on a Linux system?
a. /dev/ps2
b. /dev/mouse
c. /dev/psaux
d. /dev/ps_2
Answer: C
c. /dev/psaux
- By default, what filesystem does Linux use to format a disk when the mkfs command is specified?
a. ext2
b. ext3
c. vfat
d. msdos
Answer: A
a. ext2
Which of the following will Linux consult when a user uses the mount command but does not specify all the required information for the specific device?
- /dev/fd0
- /etc/fstab
- /etc/mtab
- /proc/devices
- /etc/fstab
- What device file would be associated with the third SCSI hard disk in a Linux system?
a. sda
b. sdb
c. sdc
d. sdd
Answer: C
c. sdc
Data stored on hard disks is read off metal platters in concentric circles called _____.
a-blocks
b-tracks
c-sectors
d-cylinder
Answer: B
b-tracks
- What utility is used to partition a Linux hard disk after Linux has been installed?
a. partinfo
b. fdisk
c. Disk Druid
d. delpart
Answer: B
b. fdisk
- What command is used to view the available free space on a Linux partition?
a. du
b. de
c. df
d. dt
Answer: C
c. df
What command is used to view the total number of inodes and free inodes for an ext2, ext3, or ext4 filesystem?
A-dumpe2fs –h
C-du /usr
D-cat /etc/fstab
E-mke2fs –t
Answer: A
A-dumpe2fs –h
- How many Serial Attached SCSI hard disks can be connected to a single SCSI controller?
a. 50
b. 500
c. 5,000
d. more than 50,000
Answer: D
d. more than 50,000
- What is the maximum potential speed of a SCSI-3 bus?
a. Up to 180MB/s
b. Up to 320MB/s
c. Up to 500MB/s
d. Up to 640MB/s
Answer: C
c. Up to 500MB/s
Which of the following technologies uses network cables to transfer data to and from remote hard disks that reside within a SAN or remote system?
a-iSCSI
b-rackmount servers
c-RAID
d-Serial Attached SCSI
Answer: A
a-iSCSI
- Which of the following RAID levels is associated with a stripe set with parity?
a. RAID 0
b. RAID 1
c. RAID 2
d. RAID 5
Answer: D
d. RAID 5
What command can be used to manage your software RAID configuration after installation?
- df
- zfs
- mdadm
- ls raid
Answer: 3. mdadm
Which filesystem includes volume management software designed for large-scale Linux systems that need to store data on multiple disks, SANs, and remote systems?
- Fusion
- ext2
- ZFS
- ext4
Answer: 3 ZFS
- Which of the following commands can be used to manage the specific features of the ZFS filesystem stored within ZFS volumes?
a. status
b. zfs
c. zpool
d. zmanage
Answer: B
b. zfs
- Which of the following is the standard boot loader used on Linux systems?
a. GRUB
b. ZFS
c. Kcore
d. Loadavg
Answer: A
a. GRUB
- Which command will display all hardware detected during the latest boot of Linux?
a. bootmsg
b. dmesg
c. bmesg
d. instmsg
Answer: B
b. dmesg
Which command can be used to change the root of the live OS to the /mnt directory?
- dmesg
- bootmsg
- chroot
- root
Answer: 3 chroot
- What term is used to describe text that is input by a user typing on a keyboard and is used for command execution?
a. stdinout
b. stdin
c. stdout
d. stderr
Answer: B stdin
Which command can be used to transform or change characters received from Standard Input?
- set
- tee
- tr
- read
Answer: 3 tr
Which filter command can be used to search and replace a certain string of text?
- sed
- grep
- awk
- pr
Answer: 1 sed
- Which metacharacter is used to pipe the results of one command to another?
a. /
b. *
c. >
d. |
Answer: D. |