Created
March 31, 2022 17:06
-
-
Save fgbreel/802821d9280d72e8b994fd989403a33b to your computer and use it in GitHub Desktop.
Download installed packages and generate local debian repository.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# download installed packages and generate local debian repository | |
# this command can make your computer very busy! watch out! | |
dpkg -l | tail -n +5 | awk '{print $2}' | while read line; do (apt download $line -t sid &); done && dpkg-scanpackages ./ > Packages && gzip -k -f Packages |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment