You can install a .deb package file onto a system by using dpkg -i filename.deb
.
Is it possible to do the reverse? By reverse, I mean create a .deb package file from an installed package given a package name?
You can install a .deb package file onto a system by using dpkg -i filename.deb
.
Is it possible to do the reverse? By reverse, I mean create a .deb package file from an installed package given a package name?
Install dpkg-repack package:
sudo apt-get install dpkg-repack
Example usage:- dpkg-repack gparted
replace gparted with your package_name
sudo dpkg-repack vlc
for say the vlc player.
however, i do not know about other packages with dependencies and everything else.
– Aditya Soni
Oct 25 '15 at 12:52
fakeroot -u dpkg-repack gparted
to run it without root privileges, if your user can read all files of the package you want to rebuild.
– Selivanov Pavel
Mar 07 '17 at 12:58