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

The problem started in the following way. I was using tasksel from the terminal menu that it shows when I simply do sudo tasksel. I select Lamp Server from the list and started to install all packages related to it. The problem is that by mistake my friend clicked on the termina close button and then on accept, closing the terminal and the activity tasksel was doing. I tried to install the lamp server again and found the following problem:

sudo tasksel install lamp-server  
tasksel: aptitude failed (100)

I should mention that I already have aptitude installed. So the error is not that I am missing aptitude. It worked before closing the terminal. How can I solve this?

share|improve this question
2  
Luis, I'd try an apt-get -f install first and look at the output, since it appears tasksel is having aptitude problems but isn't telling you what they are. – izx Sep 9 '12 at 4:23
@izx - +1 friend. That also worked. – Luis Alvarado Sep 9 '12 at 6:02

1 Answer

up vote 4 down vote accepted

This is a long outstanding bug.

Do

sudo apt-get update

then

sudo tasksel install lamp-server  

Oh and if this ever happens when you (re)install MySQL itself make sure to remove /var/lib/mysql.


edit: Found it on Launchpad from a report in 2007.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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