exam questions

Exam XK0-005 All Questions

View all questions & answers for the XK0-005 exam

Exam XK0-005 topic 1 question 136 discussion

Actual exam question from CompTIA's XK0-005
Question #: 136
Topic #: 1
[All XK0-005 Questions]

A systems administrator is tasked with mounting a USB drive on a system. The USB drive has a single partition, and it has been mapped by the system to the device /dev/sdb. Which of the following commands will mount the USB to /media/usb?

  • A. mount /dev/sdb1 /media/usb
  • B. mount /dev/sdb0 /media/usb
  • C. mount /dev/sdb /media/usb
  • D. mount -t usb /dev/sdb1 /media/usb
Show Suggested Answer Hide Answer
Suggested Answer: A 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
Alizadeh
11 months, 2 weeks ago
Selected Answer: A
The correct answer is A. mount /dev/sdb1 /media/usb.
upvoted 2 times
...
linux_admin
1 year, 5 months ago
Selected Answer: A
A. mount /dev/sdb1 /media/usb Explanation: The "mount" command is used to mount file systems, and in this case, we are using it to mount the USB drive. The device name for the USB drive is /dev/sdb, and since it has only one partition, the partition number is 1. Therefore, we need to mount /dev/sdb1 to the desired mount point, which is /media/usb. The correct command for this would be "mount /dev/sdb1 /media/usb". Option B is incorrect because the partition number is 1, not 0. Option C is incorrect because we need to specify the partition (/dev/sdb1) and not just the device (/dev/sdb). Option D is incorrect because "-t usb" is not a valid option for the mount command.
upvoted 3 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...