0

I'm using Ubuntu 14.10 but I had this problem before with Ubuntu 14.04.

I need to force my computer to shut don't, else it does not respond.

What can I do to solve this problem? Thank you in advance.

1 Answers1

0

Have you tried?

$ sudo apt-get check

If you have some library problems, that command will tell you. In that case, you can solve it using:

$ sudo apt-get -f install

This will repair broken dependencies, that could be the problem.

  • The output of sudo apt-get check: Reading package lists... Done Building dependency tree
    Reading state information... Done
    – Rita Martins Jan 22 '15 at 21:58
  • @RitaMartins, if you don't get an error message is because you don't have any issues with libraries. You could the dpkg --configure -a option used in this post: link Hope that helps! – César Pairetti Jan 23 '15 at 20:44