The officially official Devuan Forum!

You are not logged in.

#1 2018-05-28 21:37:16

oui
Member
Registered: 2017-09-02
Posts: 303  

download all the *.deb of my actual installation, all the sources

Hi

I am looking for a way to download all the *.deb of my actual installation (also all the sources packages), and to reinstall completely fresh with them.

Is that perhaps easily possible?

NB: I continue to use Devuan Jessie and it is the reason: I don't have some CD's or DVD's from that distro (are perhaps some ones available to buy ready for use? But else it it would be possible to get those, the question is simply interesting!) and will burn my packages on a CD!

Offline

#2 2018-05-28 21:58:43

golinux
Administrator
Registered: 2016-11-25
Posts: 3,151  

Re: download all the *.deb of my actual installation, all the sources

jessie install isos are still available at http://files.devuan.org

You might find this page useful.

debs of installed pkgs are stored in /var/cache/apt/

Offline

#3 2018-05-29 05:33:50

ralph.ronnquist
Administrator
From: Battery Point, Tasmania, AUS
Registered: 2016-11-30
Posts: 1,127  

Re: download all the *.deb of my actual installation, all the sources

A simple way to download all installed binary packages could the following command:

$ dpkg-query -f '${Package}=${Version}\n' -W | xargs -n 1 apt-get download

Similarly, to download all source packages you would use the following:

$ dpkg-query -f '${Package}=${Version}\n' -W | xargs -n 1 apt-get source --download-only

Both will populate the working directory.

Offline

Board footer