Skip to content

Instantly share code, notes, and snippets.

@fgbreel
Created March 31, 2022 17:06
Show Gist options
  • Save fgbreel/802821d9280d72e8b994fd989403a33b to your computer and use it in GitHub Desktop.
Save fgbreel/802821d9280d72e8b994fd989403a33b to your computer and use it in GitHub Desktop.
Download installed packages and generate local debian repository.
#!/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