PDA

View Full Version : [ubuntu] How to force apt to install packages from my local repository



mr.akik
July 15th, 2012, 02:45 PM
Hi,
I'm using ubuntu12.04.
I've created a local offline repository this way:

sudo mkdir -p /usr/local/mydebs
sudo cp /var/cache/apt/archives/*.deb /usr/local/mydebs
cd /usr/local/mydebs
dpkg-scanpackages . /dev/null | gzip -9c > Packages.gz

Then I added this line on /etc/apt/sources.list file :
deb file:/usr/local/mydebs ./

Then I update repository using this command:
sudo apt-get update

I can easily install my previously downloaded packages using apt-get.
But after I use this command with internet connection :
sudo apt-get update
, my local repository doesn't seem to work.
For example :
I have all the dependencies of the package "wammu" in my local source
(/usr/local/mydebs).
But when I try to install wammu with "sudo apt-get install wammu" command,
it says I've to download 12.5 mb, but I have those packages in my /usr/local/mydebs
directory that it wants to download.
I can now understand that apt-get is using the other mirrors like multiverse, universe,
main etc before it checks my local mirror.
Please tell me how can I make apt-get to use my local repository at first.
I actually want apt-get to install the existing files first and if necessary it should bring
packages from internet.
Thanks in advance.

mr.akik
July 16th, 2012, 03:46 PM
Please help

dino99
July 16th, 2012, 04:52 PM
apt-offline is an Offline APT Package Manager.

apt-offline can fully update and upgrade an APT based distribution without
connecting to the network, all of it transparent to APT.

or go the the desired folder, then:

sudo dpkg -i thepackageUwant2install

Nopposan
March 2nd, 2013, 12:15 AM
'Didn't know about apt-offline. I might try that in the future, especially if I'm shipping a laptop overseas to a country where internet isn't very reliable or easily accessible.

Thanks.