exam questions

Exam SK0-005 All Questions

View all questions & answers for the SK0-005 exam

Exam SK0-005 topic 1 question 25 discussion

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

A server administrator mounted a new hard disk on a Linux system with a mount point of /newdisk. It was later determined that users were unable to create directories or files on the new mount point. Which of the following commands would successfully mount the drive with the required parameters?

  • A. echo /newdisk >> /etc/fstab
  • B. net use /newdisk
  • C. mount ג€"o remount, rw /newdisk
  • D. mount ג€"a
Show Suggested Answer Hide Answer
Suggested Answer: C 🗳️
Reference:
https://unix.stackexchange.com/questions/149399/how-to-remount-as-read-write-a-specific-mount-of-device

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
fluke92
7 months, 1 week ago
Selected Answer: C
mount -o remount,rw /newdisk
upvoted 1 times
...
tame_rabbit
1 year, 3 months ago
The correct command to mount the drive with the required parameters is: C. mount -o remount,rw /newdisk Explanation: mount: This command is used to mount filesystems in Linux. -o remount,rw: This option remounts the filesystem in read-write mode. It's necessary here because the issue seems to be related to users being unable to create directories or files, which suggests that the disk might have been mounted as read-only. /newdisk: This is the mount point where the new disk is mounted. By using the -o remount,rw options, we ensure that the disk is remounted with read-write permissions, allowing users to create directories and files on the mount point /newdisk
upvoted 1 times
...
dcdc1000
2 years, 9 months ago
My bad, should be lowercase letter o mount -o remount,rw /newdisk
upvoted 3 times
...
dcdc1000
2 years, 9 months ago
Answer is c. The correct syntax is: mount -0 remount,rw /newdisk
upvoted 1 times
...
King2
2 years, 9 months ago
A. echo /newdisk >> /etc/fstab B. net use /newdisk C. mount -o remount, rw /newdisk D. mount -a
upvoted 2 times
...
szl0144
2 years, 9 months ago
Selected Answer: C
I will choose C
upvoted 1 times
...
Betny77
3 years, 3 months ago
I found no evidence of the symbol in the given answer in the man page for the mount command. I think the answer is A. Anyone else?
upvoted 1 times
Ariel235788
3 years, 3 months ago
the symbol is a '-' for whatever reason when they upload answer choices it gets jacked up to the weird symbols.
upvoted 3 times
...
PEsty93
3 years, 2 months ago
"Echo" wouldn't perform any command?
upvoted 3 times
...
dnc1981
3 years, 2 months ago
C is the correct answer. The funny character is supposed to be a hyphen
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 ...