VSFTPD libgcc_s.so.1 must be installed for pthread_cancel to work

Hello,

How can I fix this error?

"libgcc_s.so.1 must be installed for pthread_cancel to work"

It came after "apt-get update".

Kind Regards,

Robin

in the ehcp directory, try this:

cd /var/www/new/ehcp
dpkg -i vsftpd_3.0.2-1ubuntu2.deb

this is caused by the broken vsftp package.
if someone else knows a better solution, let us know.

let me know if this solved your issue.

This is Working in my server Ubuntu server 12.04 please use this solution:

sudo apt-get remove vsftpd
sudo dpkg --remove vsftpd
sudo sed -i 's/chroot_local_user=NO/chroot_local_user=YES/g' /etc/vsftpd.conf
sudo sed -i 's/allow_writeable_chroot=NO/allow_writeable_chroot=YES/g' /etc/vsftpd.conf
sudo sed -i 's/seccomp_sandbox=YES/seccomp_sandbox=NO/g' /etc/vsftpd.conf
wget -N -O "vsftpd_3.0.2-1ubuntu2.deb" http://dinofly.com/files/linux/vsftpd_3.0.2-1ubuntu2_amd64.deb
sudo dpkg -i vsftpd_3.0.2-1ubuntu2.deb
sudo service vsftpd restart