サーバー管理者は、マウント ポイント /newdisk を使用して Linux システムに新しいハード ディスクをマウントしました。その後、ユーザーが新しいマウント ポイントにディレクトリやファイルを作成できないことが判明しました。次のコマンドのうち、必要なパラメータを使用してドライブを正常にマウントできるのはどれですか?
正解:C
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 / Reference: https://unix.stackexchange.com/