Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

When I try to install something from the Ubuntu Software Center, the program doesn't install. it only starts the installation, but nothing else happens. I typed the password correctly, but nothing happens. Even after waiting for hours, nothing is installing.

share|improve this question
Open a terminal and run "aptdcon --install package_you_want", please attach the output if you get any error. – João Pinto May 16 '11 at 16:18
/usr/bin/apt-get: /usr/bin/apt-get: cannot execute binary file This is the output from the console – asdss May 16 '11 at 20:20
Someone/something changed the apt-get binary permissions breaking one of the software installer core componentes. – João Pinto May 16 '11 at 20:44

closed as too localized by Luis Alvarado Mar 14 at 15:19

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

Make sure you don't have Synaptic or any other package manager open.

share|improve this answer

Based on your "apt-get" error someone/something broke one of the software installer componentes by changing the apt-get permissions. If only the apt-get binary was changed you can fix it with:

chmod 755 /usr/bin/apt-get
chown root:root /usr/bin/apt-get

It is likely that the change on apt-get is the result of an accidental chown/chmod which affected more permisions that should not be changed, if you did a recursive chmod I strongly recommend to reinstall or restore from backups (if available).

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.