問題 ID34140 【version 5.0】
bontakesan
投稿数: 5
「dir」ディレクトリのパーミッションを700から500に変更したい。適切なコマンドは次のうちどれか。(全て選択)
○ chmod u=rx dir
chmod -200 dir
○ chmod 500 dir
chmod u=w dir
○ chmod u-w dir
chmod -200 dir
└これも可能ですよね?
・chmod -200 dir
書式が誤っています。数値表現でのプラス(+)やマイナス(-)は出来ません。
└この解説が間違っているかと思います。
CentOS7で確認した結果です。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[root@localhost Desktop]# touch ookubo.txt
[root@localhost Desktop]# ls
ookubo.txt
[root@localhost Desktop]# ls -l
合計 0
-rw-r--r--. 1 root root 0 5月 24 17:15 ookubo.txt
[root@localhost Desktop]# chmod -200 ookubo.txt
[root@localhost Desktop]# ls -l
合計 0
-r--r--r--. 1 root root 0 5月 24 17:15 ookubo.txt
[root@localhost Desktop]# chmod +777 ookubo.txt
[root@localhost Desktop]# ls -l
合計 0
-rwxrwxrwx. 1 root root 0 5月 24 17:15 ookubo.txt
[root@localhost Desktop]# chmod -666
chmod: オペランドがありません
Try 'chmod --help' for more information.
[root@localhost Desktop]# chmod -666 ookubo.txt
[root@localhost Desktop]# ls -l
合計 0
---x--x--x. 1 root root 0 5月 24 17:15 ookubo.txt
[root@localhost Desktop]#
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
○ chmod u=rx dir
chmod -200 dir
○ chmod 500 dir
chmod u=w dir
○ chmod u-w dir
chmod -200 dir
└これも可能ですよね?
・chmod -200 dir
書式が誤っています。数値表現でのプラス(+)やマイナス(-)は出来ません。
└この解説が間違っているかと思います。
CentOS7で確認した結果です。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[root@localhost Desktop]# touch ookubo.txt
[root@localhost Desktop]# ls
ookubo.txt
[root@localhost Desktop]# ls -l
合計 0
-rw-r--r--. 1 root root 0 5月 24 17:15 ookubo.txt
[root@localhost Desktop]# chmod -200 ookubo.txt
[root@localhost Desktop]# ls -l
合計 0
-r--r--r--. 1 root root 0 5月 24 17:15 ookubo.txt
[root@localhost Desktop]# chmod +777 ookubo.txt
[root@localhost Desktop]# ls -l
合計 0
-rwxrwxrwx. 1 root root 0 5月 24 17:15 ookubo.txt
[root@localhost Desktop]# chmod -666
chmod: オペランドがありません
Try 'chmod --help' for more information.
[root@localhost Desktop]# chmod -666 ookubo.txt
[root@localhost Desktop]# ls -l
合計 0
---x--x--x. 1 root root 0 5月 24 17:15 ookubo.txt
[root@localhost Desktop]#
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
投稿ツリー
-
問題 ID34140 【version 5.0】
(bontakesan, 2019-5-24 17:20)
- Re: 問題 ID34140 【version 5.0】 (staff_meg, 2019-5-27 10:54)