Mounting and Unmounting Filesystems (3) Flashcards
Objective 104.2 Weight 3
Which of the follow commands will display the partitions on your system?
- cat /etc/filesystems
- cat /proc/filesystems
- cat /proc/partitions
- lsblk
- sudo blkid
- cat /proc/partitions, 4. lsblk AND 5. sudo blkid
The cat /proc/partitions, lsblk, and sudo blkid commands will all display the partitions on your system. The /proc/filesystems list supported filesystems; not partitions. The The /etc/filesystems file lists automatically detected filesystems; not partitions. And the mount command shows currently mounted filesystems, but unmounted partitions would not be shown in its output.
Which of the following are filesystem types are used for optical media?
- ext4
- UDF
- XFS
- VFAT
- exFAT
- ISO-9660
2.UDF AND 6. ISO-9660
Both UDF and ISO-9660 are filesystems types used for optical media.
Which of the following are filesystem types are used for removable media?
- ext4
- UDF
- XFS
- VFAT
- exFAT
- ISO-9660
- VFAT AND 5. exFAT
Both VFAT and exFAT are filesystems types used for removable media.
In the /etc/fstab file, what are the options used for a record, when options is set to defaults?
- ro
- rw
- user
- nouser
- noauto
- dev
- rw, 4. nouser AND 6. dev
In the /etc/fstab file, when options is set to defaults the options used for a record are: async, auto, dev, exec, nouser, rw, suid.