I am looking to install .deb files that have been encrypted and then decrypted. During this process the names of the original files have been dropped and instead are a temporary gibberish value. I can install using 'dpkg -i' without issue but I was looking to use 'apt-get install' to avoid having to perform any cleanup for dependency issues. I did not see any options for apt-get to allow this type of functionality. Does anyone know if this is possible?
I.E - original package: something-something-version-amd64.deb decrypted package: blahblah
'dpkg -i blahblah' - success
'apt-get install blahblah' - unrecognized file
Thanks!
apt-get
only works with the Repositories. It doesn't work with individual files and Debian packages directly as it in turn invokesdpkg
installation commands behind the scenes. (So no,apt-get
can't do what you want it to do currently.) – Thomas Ward Nov 09 '17 at 14:19dpkg
to install local .deb files and apt-get to install from the repositories is what you need to understand. – Nov 09 '17 at 17:08apt-get
works only "offline" ifblahblah
ends with.deb
– derHugo Nov 09 '17 at 17:23