ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 25 - SK0-005 discussion

Report
Export

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
Answers
A.
echo /newdisk >> /etc/fstab
B.
net use /newdisk
Answers
B.
net use /newdisk
C.
mount –o remount, rw /newdisk
Answers
C.
mount –o remount, rw /newdisk
D.
mount –a
Answers
D.
mount –a
Suggested answer: C

Explanation:

The administrator should use the command mount –o remount,rw /newdisk to successfully mount the drive with the required parameters. The mount command is used to mount file systems on Linux systems. The –o option specifies options for mounting file systems. The remount option re-mounts an already mounted file system with different options. The rw option mounts a file system with readwrite permissions. In this case, /newdisk is a mount point for a new hard disk that was mounted with read-only permissions by default. To allow users to create directories or files on /newdisk, the administrator needs to re-mount /

Reference:

https://unix.stackexchange.com/

asked 02/10/2024
Rehan Malik
51 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first