PDA

View Full Version : [SOLVED] updating and apps without internet connection



sidewalkcynic
June 23rd, 2012, 03:21 PM
I came upon an old Dell tower with no wifi and I do not want to hook it up to the internet anyway.

But what I do want to do is install the 12.04 updates and some applications from synaptic, or however. I have a netbook with wifi and synaptic, and I downloaded the update packages only, but now I am stuck - I do not know where the packages are so I can save them to a USB and install them on the Dell tower. i thought when I selected the "download only" dialog it would allow me to choose where I wanted to put the packages, but it did not allow me to.

David Andersson
June 23rd, 2012, 03:44 PM
i thought when I selected the "download only" dialog it would allow me to choose where I wanted to put the packages, but it did not allow me to.

It's so you can "apply" the updates later.

Normally .deb packages are stored in /var/cache/apt/archives
See if you find them there.

d.atanasov
June 23rd, 2012, 03:49 PM
Try for fast search in Terminal :


locate *.deb

sidewalkcynic
June 23rd, 2012, 03:58 PM
It's so you can "apply" the updates later.

Normally .deb packages are stored in /var/cache/apt/archives
See if you find them there.

That looks like what I am looking for - I'll try it thanks.

So, how do I install them - debi package manager???

d.atanasov
June 23rd, 2012, 04:05 PM
That looks like what I am looking for - I'll try it thanks.

So, how do I install them - debi package manager???

you just run in Terminal:


sudo dpkg -i *.deb

In the folder/usb flash where all .deb files are.

David Andersson
June 23rd, 2012, 04:20 PM
sudo dpkg -i *.deb


Or double click the .deb file with the mouse.

sidewalkcynic
June 23rd, 2012, 04:23 PM
you just run in Terminal:


sudo dpkg -i *.deb

In the folder/usb flash where all .deb files are.

That would be for when I install the packages on the isolated Dell tower - thanks.