I need to download all packages I already installed on Ubuntu 11.10 x64. There should be in /var/cache/apt/archives I know, but there are only 300 Mb of deb files. I installed a lot of development packages that there are not there right now. I think system cleans the cache automatically!

Now I want to download all packages installed on system, else than packages that are installed by default.

link|improve this question

50% accept rate
feedback

1 Answer

up vote 2 down vote accepted

The following command in the terminal grabs the list of installed packages and downloads, packages will be stored at /var/cache/apt/archives

dpkg -l | grep "^ii"| awk ' {print $2} ' | xargs sudo apt-get -y install --reinstall --download-only
link|improve this answer
Can re-installation cause some problem in system? like missing configuration of packages? – sorush-r Dec 9 '11 at 14:07
1  
Oh! the --download-only flag... Thanks :-) – sorush-r Dec 9 '11 at 14:08
feedback

Your Answer

 
or
required, but never shown

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