CHMOD 400 尝试通过 ssh 连接到亚马逊实例时不起作用

CHMOD 400 尝试通过 ssh 连接到亚马逊实例时不起作用

我尝试使用我的.pem文件通过 ssh 连接到 amazon 实例,但CHMOD 400无法正常工作,因为它显示“此命令不可用”。它在我的 mac 终端上有效,但在我的 Linux Ubuntu 18.04 上无效。

答案1

Ubuntu 中的命令名称是区分大小写,因此CHMOD不同于chmod

$ ls -l file
-rw-rw-r-- 1 dessert dessert 0 Jun  1 13:25 file
$ CHMOD 400 file
CHMOD: command not found
$ chmod 400 file
$ ls -l file
-r-------- 1 dessert dessert 0 Jun  1 13:25 file

尝试一下小写chmod

相关内容