Bird
0
0

Which of the following is the correct syntax to mount a device /dev/sdb1 to directory /mnt/usb?

easy📝 Syntax Q12 of 15
Linux CLI - Disk and Storage
Which of the following is the correct syntax to mount a device /dev/sdb1 to directory /mnt/usb?
Amount -u /dev/sdb1 /mnt/usb
Bmount /mnt/usb /dev/sdb1
Cumount /dev/sdb1 /mnt/usb
Dmount /dev/sdb1 /mnt/usb
Step-by-Step Solution
Solution:
  1. Step 1: Recall mount command syntax

    The correct syntax is mount [device] [mount_point], so device first, then directory.
  2. Step 2: Check options for correctness

    mount /dev/sdb1 /mnt/usb matches the syntax: mount /dev/sdb1 /mnt/usb. Others reverse order or use wrong command.
  3. Final Answer:

    mount /dev/sdb1 /mnt/usb -> Option D
  4. Quick Check:

    mount device directory = correct syntax [OK]
Quick Trick: Device first, then directory in mount command [OK]
Common Mistakes:
  • Swapping device and directory order
  • Using umount instead of mount
  • Adding wrong options like -u

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Linux CLI Quizzes