Cgywin - 为 ssh 设置 /var 权限的问题

Cgywin - 为 ssh 设置 /var 权限的问题

我在最新的 Windows 机器上安装有最新版 Cygwin 时遇到了通过 Cygwin 安装 ssh 的问题。

*** Warning: The permissions on the directory /var are not correct.
*** Warning: They must match the regexp d..x..x..[xt]
*** ERROR: Problem with /var directory. Exiting.
$ ls -al /
d--S--s--x+ 1 Matthias Administrators      0 2010-12-06 07:52 var

我如何修改目录的权限以使其符合上面提到的正则表达式?

答案1

这应该可以做到(同时做到):

chmod 755 /var
chmod ug-s /var

答案2

出于某种原因,我还必须执行

chmod 775 /var/*

ssh-host-config上班。

相关内容