在Cygwin上使用Rsync时出错

lsr729

我正在使用rsync,将数据传输到HPC群集,并使用Windows 7的Cygwin。我键入以下命令,将文件夹从计算机传输到HPC远程服务器。

rsync -rzv /cygdrive/C/Users/LSRATHORE/Desktop/data_wf [email protected] :/home/lsrathore/test

这会在Cygwin-中产生以下错误行

rsync: connection unexpectedly closed (0 bytes received so far) [sender]
C:/cygwin64/bin/ssh.exe: error while loading shared libraries: cyggssapi_krb5-2.dll: cannot open shared object file: No such file or directory
rsync error: error in rsync protocol data stream (code 12) at io.c(226) [sender=3.2.0dev]
Matzeri

安装或重新安装包包含cyggssapi_krb5-2.dll
使用cygcheck -p,以确定它:

$ cygcheck -p cyggssapi_krb5-2.dll
Found 6 matches for cyggssapi_krb5-2.dll
krb5-debuginfo-1.15.1-1 - krb5-debuginfo: Debug info for krb5
krb5-debuginfo-1.15.2-1 - krb5-debuginfo: Debug info for krb5
krb5-debuginfo-1.15.2-2 - krb5-debuginfo: Debug info for krb5
libgssapi_krb5_2-1.15.1-1 - libgssapi_krb5_2: Kerberos reference implementation
GSS-API library
libgssapi_krb5_2-1.15.2-1 - libgssapi_krb5_2: Kerberos reference implementation
GSS-API library
libgssapi_krb5_2-1.15.2-2 - libgssapi_krb5_2: Kerberos reference implementation
GSS-API library

就是这样 libgssapi_krb5_2

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章