Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用命令行更改 filezilla 中的文件权限? 我尝试了“SITE CHMOD 755 模板”,但这只会更改文件夹“模板”。 我想 chmod 模板文件夹中的所有文件和那里的子文件夹。 我知道你可以通过单击模板文件夹等的 rmb 来做到这一点,但那是慢的方式我希望命令行会更快?
如果没有,快速更改服务器上大量文件权限的最佳方法是什么?
我在 Windows 中使用 filezilla。
Per ssh if possbile:登录远程服务器并简单地执行
chmod -R 755 diretory
在命令行上,我将使用 lftp,恕我直言,这是最好的命令行 ftp 客户端(在 Windows 中,安装/运行 cygwin setup.exe 程序并在软件包列表的 net 部分中查找“lftp”。)。它支持
chmod -R 777 directory
在 filezialla 中,我猜只有每个 UI:
选择主文件夹,设置为755并选择“递归到子目录”
http://www.codeunit.co.za/2008/07/18/remotely-sharing-multiple-linux-file-permissions-with-filezilla/