Skip to content

Instantly share code, notes, and snippets.

@shamil
Created July 19, 2012 03:29
Show Gist options
  • Star 40 You must be signed in to star a gist
  • Fork 12 You must be signed in to fork a gist
  • Save shamil/3140558 to your computer and use it in GitHub Desktop.
Save shamil/3140558 to your computer and use it in GitHub Desktop.
Howto repackage deb packages
Use folowing steps to repackage dep package:
1: Extract deb package
# dpkg-deb -x <package.deb> <dir>
2: Extract control-information from a package
# dpkg-deb -e <package.deb> <dir/DEBIAN>
3. After completed to make changes to the package, repack the deb
# dpkg-deb -b <dir> <new-package.deb>
@bmhatfield
Copy link

Thanks for this. Most concise form of this I've seen. Might want to mention updating md5sums: https://blog.serverdensity.com/how-to-create-a-debian-deb-package/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment