0

在我的远程服务器 A 上,我有一堆 .py 文件。
我通过 WinSCP 将这些文件拖到 Windows 机器 B 上。
我在 Windows 机器上处理这些文件,并希望通过 WinSCP 将它们导入回服务器 A。

当我尝试这样做时,它说“无法覆盖”。

显然这是一个权限问题。我不确定我需要给予多少权限才能获得覆盖访问权限。

目前,我在这些文件上有 -r--r--r-- 供阅读。
我猜我需要写权限?还是我也需要执行权限?

chmod 755 *足够吗?我想小心权限,所以我在这里问。

4

1 回答 1

3

That depends on what users are owner of the files and the one you connect with SCP.

If they are the same, then '-rw-r--r--' should be enough.

If they are on the same group then -rw-rw-r--

于 2013-06-28T15:00:41.070 回答