Took my first crack at running 7.0 last night. 64-bit, on Linux. Iceberg won't open; says that libgit2 is the wrong version. After some investigation, this is because: It's picking up the system's version of libgit2, not the version included with the vm. This is because: The version included with the VM depends on libcurl-gnutls.so.4. This library is not packed with the VM, nor is it on my system. A bit more investigation shows that although Ubuntu does seem to typically use libcurl-gnutls.so, other distributions (Red Hat / CentOS, Gentoo) do not. My Gentoo system's /usr/lib64/libgit2.so.0.24.6 depends on libcurl.so.4, not on libcurl-gnutls.so.4. I haven't looked at API differences and such, but would it be possible for Pharo to build libgit2 against libcurl instead of against libcurl-gnutls? Libcurl seems to be present on Ubuntu systems as well as on CentOS/RedHat and Gentoo, so might work more widely. Regards, -Martin