0

I am a Linux newbie trying to setup Lubuntu 16.10 on my Dell desktop. This forum has helped me learn a good bit about Linux and Ubuntu in the last few days.

I'm now having trouble getting app packages to install and was wondering what I'm doing or not doing wrong. I have a couple of applications I've downloaded, they are:

  • VirtualBox-5.1_5.1.12-112440-Ubuntu-yakkety_i386.deb.
  • audacity_2.12-1build1_i386.deb

When I try to install them, it opens software manager app, I click on " install and it does nothing. Doesn't confirm install, nothing seems to be added to the system. Then I back out of the software app and on the top of the window where it has 3 tabs - •All, •Installed, and •Updates I see under •Installed tab there is a blue 2 highlighted. Also I am not connected to the internet and a message popped up saying a software update was needed to show all installed apps. Could this be why?

muru
  • 197,895
  • 55
  • 485
  • 740

3 Answers3

1

Instead of downloading the .deb files, you should let apt install them automatically for you.

First connect your computer to the internet, either via wifi or via an ethernet cable, so that it can get access to the packages you need.

Then, open a terminal and run these commands:

sudo apt update
sudo apt install virtualbox audacity

That should take care of it!

Danyc0
  • 196
0

Please PLUG-IN the ethernet cable and your problem should go away:) The man stated in the Question that he gave us "Also I am not connected to the internet" You cannot recieve updates without internet connection:)

0

When you have a local .deb you can use this command to install it:

sudo dpkg -i name.deb

However you will need internet if the package has dependencies. And like the others mentioned it is always easier just to use apt-get or Ubuntu Software.

Lv1z
  • 331