This is being straight-lifted from the wiki :- (https://wiki.ubuntu.com/AptMoveHowto)
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
My questions are these :-
Q1. How much space should I devote for making Packages.gz? Q2. The whole thing is going to be setup in a 700 MB CD so how much space should I spare to make the other directories & files needed? Thanx in advance.