2

How do I update software that I installed with a downloaded .deb file in ubuntu software center?

When I open the downloaded file in software center I can only choose to remove the software and install it again. That works, but is this the way to go?

Ricoter
  • 295
  • 3
  • 11

1 Answers1

4

I used the command line : sudo dpkg -i and the downloaded deb file name.
The output confirms it's installing a new version over the current one.

$ sudo dpkg -i file.deb 
[sudo] password for user: 
(Reading database ... 8008135 files and directories currently installed.)
Preparing to unpack file.deb ...
Unpacking software (new_version) over (current_version) ...
lolesque
  • 620
  • 6
  • 14