6

When I try to install something via a .deb file or just from software center it will say installing for a second or so then go back to the button saying install. When I try to update the software I have installed it just shows the installing sign but doesn't update, I left it running over night but still nothing updated

Picture of me trying to update:

kelvinelove
  • 1,619
Oli-A
  • 63

2 Answers2

12

First, fix your dependencies. To do this, open a terminal and enter this command:

sudo apt-get install -f

After that, update your software:

sudo apt-get update && sudo apt-get dist-upgrade

Don't use the application Ubuntu Software. The scientific term for it is "complete and utter garbage with tons of bugs which doesn't work 90% of the time and shouldn't be used by anyone for any purpose whatsoever". If you want to use a graphical interface, use Ubuntu Software Center. You can install it with this command:

sudo apt-get install software-center

It's a bit slower but it works and gets the job done.

If you want to install a Debian package, you can either open it with Ubuntu Software Center or you can install it on the command line (assuming the package is in your downloads folder):

sudo apt-get install ~/Downloads/thepackage.deb

Note that you probably can install the Debian package directly from the repos without first downloading it. If your Debian package is called Awesome-Application_1.37_amd64.deb, try this command:

sudo apt-get install awesome-application

It either finds something with that name or tells you that it can't find it. In the latter case, execute the command mentioned two above to install the package you downloaded.

UTF-8
  • 5,910
  • 10
  • 34
  • 68
-1

In Ubuntu 16 I highly recommend installing GDebi package installer from the Ubuntu Software Center. Then open any downloaded .deb files with that. It will automatically install dependencies.

phandolin
  • 571