[Pharo-project] SqueakSSL problem on Linux
Hi pharoers, I have a problem in Ubuntu with SqueakSSL. I am loading a zip file on google code, and this plugin fails at initialization. It is simple to reproduce: just evaluate: ZdcPluginSSLSession new On windows and MacOS, this works fine. On Ubuntu 12.04 it seems to not find the plugin. I took the pharo-linux.zip on the pharo website. Thank you for your help. Jannik
You have to install the correct version of the 32bit libssl. which version do you have installed? On 2013-04-27, at 07:09, "jannik.laval" <jannik.laval@gmail.com> wrote:
Hi pharoers,
I have a problem in Ubuntu with SqueakSSL. I am loading a zip file on google code, and this plugin fails at initialization.
It is simple to reproduce: just evaluate: ZdcPluginSSLSession new On windows and MacOS, this works fine. On Ubuntu 12.04 it seems to not find the plugin.
I took the pharo-linux.zip on the pharo website.
Thank you for your help. Jannik
On Apr 27, 2013, at 7:18 AM, Camillo Bruni <camillobruni@gmail.com> wrote:
You have to install the correct version of the 32bit libssl.
???? Here is the readme in the pharo.zip file: === Pharo does not yet natively run on a 64bits Linux. Just install the ia32/i386 runtime libraries and you should be fine. On Ubuntu and other debian-based systems, these libraries are named 'ia32-libs'. === I supposed that it works on a 32bits system.
which version do you have installed?
||/ Name Version Description +++-==============-==============-============================================ ii libssl-dev 1.0.1-4ubuntu5 SSL development libraries, header files and ii libssl-doc 1.0.1-4ubuntu5 SSL development documentation documentation ii libssl1.0.0 1.0.1-4ubuntu5 SSL shared libraries Jannik
On 2013-04-27, at 07:09, "jannik.laval" <jannik.laval@gmail.com> wrote:
Hi pharoers,
I have a problem in Ubuntu with SqueakSSL. I am loading a zip file on google code, and this plugin fails at initialization.
It is simple to reproduce: just evaluate: ZdcPluginSSLSession new On windows and MacOS, this works fine. On Ubuntu 12.04 it seems to not find the plugin.
I took the pharo-linux.zip on the pharo website.
Thank you for your help. Jannik
which version do you have installed?
||/ Name Version Description +++-==============-==============-============================================ ii libssl-dev 1.0.1-4ubuntu5 SSL development libraries, header files and ii libssl-doc 1.0.1-4ubuntu5 SSL development documentation documentation ii libssl1.0.0 1.0.1-4ubuntu5 SSL shared libraries
now I do not remember whether it was 0.9.X or 1.0.X for libssl, but you have it installed.. looks like we have 0.9.8 installed on the build servers. can you try installing the older version (:i386 for 32bit) and try again? distributing a single binary for multiple linuxes does NOT work, hence damien cassou created a nice distribution: sudo add-apt-repository ppa:pharo/stable sudo apt-get update sudo apt-get install pharo-vm caveat: AFAIK it doesn't come with a UI yet
On Apr 27, 2013, at 7:40 AM, Camillo Bruni <camillobruni@gmail.com> wrote:
which version do you have installed?
||/ Name Version Description +++-==============-==============-============================================ ii libssl-dev 1.0.1-4ubuntu5 SSL development libraries, header files and ii libssl-doc 1.0.1-4ubuntu5 SSL development documentation documentation ii libssl1.0.0 1.0.1-4ubuntu5 SSL shared libraries
now I do not remember whether it was 0.9.X or 1.0.X for libssl, but you have it installed.. looks like we have 0.9.8 installed on the build servers.
can you try installing the older version (:i386 for 32bit) and try again?
It is not really possible. Other packages in my distrib depend on ssl. They could become instable.
distributing a single binary for multiple linuxes does NOT work, hence damien cassou created a nice distribution:
sudo add-apt-repository ppa:pharo/stable sudo apt-get update sudo apt-get install pharo-vm
caveat: AFAIK it doesn't come with a UI yet
Nice work ! Now I will see if I can do without this plugin. :( Jannik
On 2013-04-27, at 07:52, "jannik.laval" <jannik.laval@gmail.com> wrote:
On Apr 27, 2013, at 7:40 AM, Camillo Bruni <camillobruni@gmail.com> wrote:
which version do you have installed?
||/ Name Version Description +++-==============-==============-============================================ ii libssl-dev 1.0.1-4ubuntu5 SSL development libraries, header files and ii libssl-doc 1.0.1-4ubuntu5 SSL development documentation documentation ii libssl1.0.0 1.0.1-4ubuntu5 SSL shared libraries
now I do not remember whether it was 0.9.X or 1.0.X for libssl, but you have it installed.. looks like we have 0.9.8 installed on the build servers.
can you try installing the older version (:i386 for 32bit) and try again?
It is not really possible. Other packages in my distrib depend on ssl. They could become instable.
you can have multiple versions of the same library installed..
distributing a single binary for multiple linuxes does NOT work, hence damien cassou created a nice distribution:
sudo add-apt-repository ppa:pharo/stable sudo apt-get update sudo apt-get install pharo-vm
caveat: AFAIK it doesn't come with a UI yet
Nice work !
Now I will see if I can do without this plugin. :( Jannik
On Apr 27, 2013, at 7:58 AM, Camillo Bruni <camillobruni@gmail.com> wrote:
On 2013-04-27, at 07:52, "jannik.laval" <jannik.laval@gmail.com> wrote:
On Apr 27, 2013, at 7:40 AM, Camillo Bruni <camillobruni@gmail.com> wrote:
which version do you have installed?
||/ Name Version Description +++-==============-==============-============================================ ii libssl-dev 1.0.1-4ubuntu5 SSL development libraries, header files and ii libssl-doc 1.0.1-4ubuntu5 SSL development documentation documentation ii libssl1.0.0 1.0.1-4ubuntu5 SSL shared libraries
now I do not remember whether it was 0.9.X or 1.0.X for libssl, but you have it installed.. looks like we have 0.9.8 installed on the build servers.
can you try installing the older version (:i386 for 32bit) and try again?
It is not really possible. Other packages in my distrib depend on ssl. They could become instable.
you can have multiple versions of the same library installed..
ok, i will try Jannik
distributing a single binary for multiple linuxes does NOT work, hence damien cassou created a nice distribution:
sudo add-apt-repository ppa:pharo/stable sudo apt-get update sudo apt-get install pharo-vm
caveat: AFAIK it doesn't come with a UI yet
Nice work !
Now I will see if I can do without this plugin. :( Jannik
Ok, thank you Camillo, It works with this version. Jannik On Apr 27, 2013, at 8:01 AM, jannik.laval <jannik.laval@gmail.com> wrote:
On Apr 27, 2013, at 7:58 AM, Camillo Bruni <camillobruni@gmail.com> wrote:
On 2013-04-27, at 07:52, "jannik.laval" <jannik.laval@gmail.com> wrote:
On Apr 27, 2013, at 7:40 AM, Camillo Bruni <camillobruni@gmail.com> wrote:
which version do you have installed?
||/ Name Version Description +++-==============-==============-============================================ ii libssl-dev 1.0.1-4ubuntu5 SSL development libraries, header files and ii libssl-doc 1.0.1-4ubuntu5 SSL development documentation documentation ii libssl1.0.0 1.0.1-4ubuntu5 SSL shared libraries
now I do not remember whether it was 0.9.X or 1.0.X for libssl, but you have it installed.. looks like we have 0.9.8 installed on the build servers.
can you try installing the older version (:i386 for 32bit) and try again?
It is not really possible. Other packages in my distrib depend on ssl. They could become instable.
you can have multiple versions of the same library installed..
ok, i will try
Jannik
distributing a single binary for multiple linuxes does NOT work, hence damien cassou created a nice distribution:
sudo add-apt-repository ppa:pharo/stable sudo apt-get update sudo apt-get install pharo-vm
caveat: AFAIK it doesn't come with a UI yet
Nice work !
Now I will see if I can do without this plugin. :( Jannik
participants (2)
-
Camillo Bruni -
jannik.laval