tags:

views:

175

answers:

3

Background: I have a kubuntu laptop right now that I can't use wirelessly, i.e. I haven't got wireless assistant installed. But I have a windows laptop that I can download the debian packages seperately on a USB memory stick.

How do I install a debian package on the computer locally?

A: 

Can you just not point the package manager to the location on the memory stick?

leppie
+4  A: 

Once you have the USB stick mounted:

dpkg --install /path/to/foo_VVV-RRR.deb

(where fooVVV-RRR.deb is the package's file name)

You can find more commands at the Debian GNU/Linux FAQ.

Side note: this is from the command line. I'm not sure how to get synaptic to do it.

R. Bemrose
Thanks. It worked. :) You can also call it with dpkg -i /path/to/foo_VVV-RRR.deb
Spoike
apt works at the repository (group of packages) level.dpkg works with individual packages.I've a summary of the important commands here:http://www.pixelbeat.org/docs/packaging.html
pixelbeat
+2  A: 

If you're not a command line fan, double-clicking on the .deb files in the file manager should launch a package installer. Has exactly the same effect as dpkg -i of course.

Sam Stokes
If it's kubuntu, it's most probably konqueror or dolphin, not nautilus.
CesarB
Good point. I missed the bit where he said it was kubuntu.
Sam Stokes
Yeah, I discovered this after the fact. I fancy the command line more when the computer I work with is slow. :) Upvoted.
Spoike