管理者がサーバー上のファイルの名前を変更しようとしましたが、次のエラーが表示されます。 次に、管理者はいくつかのコマンドを実行し、次の出力を取得します。 どのユーザーでもファイルの名前を変更できるようにするには、管理者が NEXT を実行する必要がありますか?
正解:D
The command that the administrator should run NEXT to allow the file to be renamed by any user is chmod -t files. This command uses the chmod tool, which is used to change file permissions and access modes. The -t option removes (or sets) the sticky bit on a directory, which restricts deletion or renaming of files within that directory to only their owners or root. In this case, since files is a directory with sticky bit set (indicated by t in drwxrwxrwt), removing it will allow any user to rename or delete files within that directory.