0

As a new Ubuntu user I installed the OS by downloading the software via terminal commands without problems. Now I would like to install additional software packages. While trying to install downloaded packages via terminal I get errors. Please help me to install the downloaded Debian packages with terminal commands and please address possible repository dependencies.

The reason for not installing software from online repositories is that this produces reasonable internet traffic that cost me a lot. Therefore it would be good to find a way to install software packages without the need to download them each time.

Hans Demski
  • 103
  • 3
Barani
  • 1
  • because you are new i would recommend you to never skip using sudo apt-get update command before installing any application specially after adding new repository, because this is the major cause of error for new users – study-route Jul 08 '15 at 18:06

2 Answers2

0

To install deb packages via terminal, run:

sudo dpkg -i [DEB_PACKAGE]

You can read all about Repositories @

0

For .rpm files:

sudo alien -d [name of rpm] # it will create deb file
sudo dpkg -i [name of deb]

For .deb files:

sudo dpkg -i [name of deb]
barwnikk
  • 93
  • 1
  • 10