Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to mount the device /dev/sdb1 to /mnt/usb.
Linux CLI
sudo [1] /dev/sdb1 /mnt/usb Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'umount' instead of 'mount' will try to detach the device.
Using 'ls' or 'cd' does not mount devices.
✗ Incorrect
The 'mount' command is used to attach the device to the directory.
2fill in blank
mediumComplete the code to unmount the device mounted at /mnt/usb.
Linux CLI
sudo [1] /mnt/usb Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'mount' instead of 'umount' will try to attach the device again.
Using 'ls' or 'cd' does not unmount devices.
✗ Incorrect
The 'umount' command detaches the device from the directory.
3fill in blank
hardFix the error in the command to mount /dev/sdc1 to /media/usb.
Linux CLI
sudo mount [1] /media/usb Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using '/dev/sdc' mounts the whole disk, which may cause errors.
Using the mount point as device causes failure.
✗ Incorrect
The device must be the full partition name '/dev/sdc1' to mount correctly.
4fill in blank
hardFill both blanks to mount the device /dev/sdd1 with read-only option to /mnt/backup.
Linux CLI
sudo mount -o [1] [2] /mnt/backup
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'rw' mounts read-write, not read-only.
Swapping device and mount point causes errors.
✗ Incorrect
The 'ro' option mounts the device read-only, and the device path is '/dev/sdd1'.
5fill in blank
hardFill all three blanks to unmount the device mounted at /media/usb and verify with a command.
Linux CLI
sudo [1] /media/usb && [2] && [3] /media/usb
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'mount' instead of 'umount' to detach device.
Using 'cd' instead of 'ls' to check directory.
✗ Incorrect
First unmount with 'umount', then check mounts with 'mount', and list directory with 'ls'.