AptMoveHowto

Differences between revisions 2 and 14 (spanning 12 versions)
Revision 2 as of 2005-11-16 15:58:14
Size: 2121
Editor: modemcable201
Comment: I always screw up markup
Revision 14 as of 2005-12-31 01:53:22
Size: 2948
Editor: otw53-uas-3-209197158132
Comment: Added details about universe repository.
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
For example, I will show how to make a cd which contains the edubuntu-desktop package with all of it's dependancies. For example, I will show how to make a cd which contains the xubuntu-desktop package with all of it's dependencies.
Line 5: Line 5:
The user of the cd will not need to use the command-line. The user of the cd will not need to use the command-line to use it.
Line 10: Line 10:
sudo apt-get install apt-move sudo apt-get install apt-move dpkg-dev
Line 13: Line 13:
(Or just use synaptic) (Or just use synaptic) You need to enable the universe repository. See AddingRepositoriesHowto
Line 29: Line 29:
In this example, we are starting from a freshly-installed system. We need to clean out the cache of packages in /var/cache/apt/archive. If you have already installed other packages, be sure that you leave them there so that they are put on your custom cd. In this example, we are starting from a ''freshly-installed system''. We need to clean out the cache of packages in /var/cache/apt/archive. If you have already installed other packages, be sure that you leave them there so that they are put on your custom cd.  If unsure about what dependancies you already have installed, ''perhaps this can be done from the live cd''?
Line 31: Line 31:
So, delete every package in /var/cache/apt/archives So, delete every package in /var/cache/apt/archives. Do not delete these files manually! Instead use:
Line 33: Line 33:
{{{sudo rm /var/cache/apt/archives/*.deb {{{sudo apt-get clean
Line 36: Line 36:
And then install (or just download the edubuntu-desktop packages) And then install (or just download the xubuntu-desktop packages)
Line 39: Line 39:
sudo apt-get -d install edubuntu-desktop sudo apt-get -d install xubuntu-desktop
Line 54: Line 54:
It would seem that some ubuntu packages are not inserted into the packages.gz file by apt-move. Is this because of some ubuntu-specific reposiitory structure? You must delete the Packages.gz file and remake it with dpkg-scanpackages. Make the directory writable and then cd into it and run:

{{{
cd /mirrors/debian/dists/stable/main/binary-i386

sudo dpkg-scanpackages ../../../../pool/ /dev/null > Packages
}}}

You can identify the cd by making a .disk directory and making an info file in it.

Make the /mirrors/debian direcory writable and do

{{{mkdir /mirrors/debian/.disk
echo "Custom packages" $(hostname) $(date +%y%m%d) > /mirrors/debian/.disk/info
}}}
Line 57: Line 73:
Copy the folders contained in /mirrors/debian to a cd. Copy the contents of what is contained in /mirrors/debian to a cd.
Line 59: Line 75:
On a non-networked ubuntu machine, you can run synaptic, insert the cd and Go into Synaptic -> Edit -> Add Cdrom and it will ask you to pick a name for this cd. Enter it and it will add the contents of the cd to your repositories. On a non-networked ubuntu machine, you can run synaptic, insert the cd and go into Synaptic -> Edit -> Add Cdrom and it will add the contents of the cd to your repositories.
Line 68: Line 84:
 * Properly name the cd before you burn it so that the user does not have to do it.
CategoryDocumentation CategoryCleanup

This page will describe how to make a cd which contains packages you have downloaded on one machine using apt or synaptic. The cd will be a repository that you can easily use on another machine using synaptic or apt-cdrom.

For example, I will show how to make a cd which contains the xubuntu-desktop package with all of it's dependencies.

The user of the cd will not need to use the command-line to use it.

Step one Install the apt-move package

sudo apt-get install apt-move dpkg-dev

(Or just use synaptic) You need to enable the universe repository. See AddingRepositoriesHowto

I change the setting in /etc/apt-move.conf from

CONTENTS=no 

to

CONTENTS=yes

So that a file with the contents of the packages will be created.

Step two Download the packages you want to put on the cd

In this example, we are starting from a freshly-installed system. We need to clean out the cache of packages in /var/cache/apt/archive. If you have already installed other packages, be sure that you leave them there so that they are put on your custom cd. If unsure about what dependancies you already have installed, perhaps this can be done from the live cd?

So, delete every package in /var/cache/apt/archives. Do not delete these files manually! Instead use:

{{{sudo apt-get clean }}}

And then install (or just download the xubuntu-desktop packages)

sudo apt-get -d install xubuntu-desktop

This will put the packages in /var/cache/apt/archives. Apt-move will look there by default.

Step three Run apt move to create the archive structure

Make sure you have enough disk space first.

{{{sudo apt-move get sudo apt-move move sudo apt-move packages }}}

It would seem that some ubuntu packages are not inserted into the packages.gz file by apt-move. Is this because of some ubuntu-specific reposiitory structure? You must delete the Packages.gz file and remake it with dpkg-scanpackages. Make the directory writable and then cd into it and run:

cd /mirrors/debian/dists/stable/main/binary-i386

sudo dpkg-scanpackages ../../../../pool/ /dev/null > Packages

You can identify the cd by making a .disk directory and making an info file in it.

Make the /mirrors/debian direcory writable and do

{{{mkdir /mirrors/debian/.disk echo "Custom packages" $(hostname) $(date +%y%m%d) > /mirrors/debian/.disk/info }}}

Step four Burn the cd

Copy the contents of what is contained in /mirrors/debian to a cd.

On a non-networked ubuntu machine, you can run synaptic, insert the cd and go into Synaptic -> Edit -> Add Cdrom and it will add the contents of the cd to your repositories.

You can also do it from the command-line with

sudo apt-cdrom add

** To DO:

  • Add an override file so that you can use pinning on the offline repository packages.

CategoryDocumentation CategoryCleanup

AptMoveHowto (last edited 2008-08-06 16:19:39 by localhost)