vote up 0 vote down star

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?

flag

3 Answers

vote up 4 vote down check

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.

link|flag
Thanks. It worked. :) You can also call it with dpkg -i /path/to/foo_VVV-RRR.deb – Spoike Nov 7 '08 at 12:53
apt works at the repository (group of packages) level. dpkg works with individual packages. I've a summary of the important commands here: pixelbeat.org/docs/packaging.html – pixelbeat Nov 7 '08 at 13:18
vote up 0 vote down

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

link|flag
vote up 2 vote down

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.

link|flag
If it's kubuntu, it's most probably konqueror or dolphin, not nautilus. – CesarB Nov 7 '08 at 13:25
Good point. I missed the bit where he said it was kubuntu. – Sam Stokes Nov 7 '08 at 16:48
Yeah, I discovered this after the fact. I fancy the command line more when the computer I work with is slow. :) Upvoted. – Spoike Nov 10 '08 at 13:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.