On Sat, 29 Dec 2007 15:05:58 +0000 Hwasung Mars Lee <hwasungmars@xxxxxxxxxxx> wrote: > I have some problems when using git remotely. When I git clone from Ubuntu or Mac to Debian, I get the following message: > > git-upload-pack: error while loading shared libraries: libcrypto.so.0.9.8: cannot open shared object file: No such file or directory > fatal: unexpected EOF > fetch-pack from 'maths:~/Desktop/TeX' failed. > Mars, It appears the machine from which you're trying to clone is missing the proper libcrypto library. You'll need to ensure it is installed using whatever package manager is appropriate for your Linux distribution. The following command will show you which libraries git-upload-pack is using (and missing): ldd $(which git-upload-pack) That will likely report that the libcrypto library can't be found and needs to be installed. Good luck, Sean - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html