SK0-005 · Question #119
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…
The correct answer is C. mount -o remount, rw /newdisk. 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…
Question
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?
Options
- Aecho /newdisk >> /etc/fstab
- Bnet use /newdisk
- Cmount -o remount, rw /newdisk
- Dmount -a
How the community answered
(60 responses)- A5% (3)
- B2% (1)
- C85% (51)
- D8% (5)
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 read- write 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 /
Topics
Community Discussion
No community discussion yet for this question.