English 中文(简体)
Ubuntu 12.04 SSL 握手失败
原标题:ubuntu 12.04 SSL handshake failed
Hello I didn t want to install ubuntu 12.04 beta because it has some SSL problems. In 11.04 also have the same problem but it has a easy fix that is this one: sudo apt-get install libneon27 cd /usr/lib sudo rm libneon-gnutls.so.27 and create a soft link sudo ln -s /usr/lib/libneon.so.27 libneon-gnutls.so.27 So I just install Ubuntu 12.04 final in a VM to see if this bug was fixed but I see that not. Does someone have any idea of how to fix this.
问题回答
After quite some googling it turned out that there is a bug in the version of libneon bundled with Precise that causes this problem. Fortunately this is already fixed with version 0.29.3. To get back to a working subversion perform these steps: Uninstall the current libneon package: sudo apt-get remove libneon27> Download the latest libneon package http://packages.debian.org/squeeze/libneon27 (at the bottom you can choose the right version for your architecture). Install the required libssl dependency: sudo apt-get install libssl0.9.8 Install the downloaded libneon package. E.g. for the 64Bit architecture: dpkg -i libneon27_0.29.3-3_amd64.deb Change the symbolic links again like described above: sudo mv /usr/lib/libneon-gnutls.so.27 /usr/lib/libneon-gnutls.so.27.old sudo ln -s /usr/lib/libneon.so.27 /usr/lib/libneon-gnutls.so.27 (source)




相关问题
Add a changing icon to Ubuntu Panel

What would be the most simple way of adding and changing an icon in the Ubuntu (Gnome) Panel? I m looking for something as simple as shell scripting, but I m not restricted to that. Will write a ...

Configuring kernel

After create a new system call, how to update the kernel? I tried these lines, make-kpkg clean fakeroot make-kpkg -initrd -append-to-version=-custom kernel_image kernel_headers But Ubuntu asked me ...

save Exceptions to file in python

I want to save all following Exceptions in a file. The reason why I need this is because the IDLE for python 3.1.1 in Ubuntu raises an Exception at calltipps, but close to fast, that it isn t readble. ...

How can i monitor system statistics in kubuntu using Java?

i am doing a project related to configuration and memory analyzer for kubuntu. i want to display the system statistics information like CPU usage, RAM usage and proceses etc. graphically using an ...

How to pass "--external-locking" for mysqld in Ubuntu

I would like to start my mysql server with the --external-locking option. As mysqld is run by the /etc/init.d/mysql script ubuntu (karmic), I guess that s where I should set this "--external-locking" ...

"g++" and "c++" compiler

I just found on my Ubuntu, there are two different C++ compilers: /usr/bin/g++ and /usr/bin/c++. I am not familiar with the latter, but man c++ just jumps to the manpage of gcc. I wonder what is their ...

热门标签