cubieplayer / Cubian

Debian for Cubieboard
http://cubian.org
271 stars 49 forks source link

vsftpd depends libc6 and init-system helper #354

Closed petus closed 9 years ago

petus commented 9 years ago

Hi, I tried to install vsftpd, but: cubie@Cubian:~$ sudo apt-get install vsftpd Reading package lists... Done Building dependency tree
Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation:

The following packages have unmet dependencies: vsftpd : Depends: init-system-helpers (>= 1.18~) but it is not installable Depends: libc6 (>= 2.15) but 2.13-38+deb7u4 is to be installed E: Unable to correct problems, you have held broken packages.

and I tried to install init-system-helpers, but: cubie@Cubian:~$ sudo apt-get install init-system-helpers Reading package lists... Done Building dependency tree
Reading state information... Done Package init-system-helpers is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source

E: Package 'init-system-helpers' has no installation candidate

What can I do? Thanks

stidn commented 9 years ago

Hi there, I had this issue as well a week ago or so! Issue is because Cubian has the Ajenti source in the source.list file. Ajenti has a newer version of VSFTPD that's not compiled for Wheezy, latest VSFTPD version for Wheezy would be; vsftpd (2.3.5-3), try installing this version by either removing the package source Ajenti uses or by just selecting the correct vsftpd version using:

$ sudo apt-get install vsftpd=2.3.5-3

michalliu commented 9 years ago

@stidn Thanks for sharing