I am trying to create a meta-package, which install all application that i will. Unfortunately i couldnot find any appropriate dockumentation about that. Does know someone how to do or where can i find documentation? Any help will be appreciated.
Asked
Active
Viewed 45 times
openssh-server
andgedit
. – Pilot6 Dec 15 '19 at 16:10sudo apt install -f
if you installed the package usingdpkg
. – Pilot6 Dec 15 '19 at 20:05sudo dpkg -i my_package.deb
is manual installation, which doesn't provide dependency installation. What will be proper installation of following package.my-metapackage
? – devlead Dec 15 '19 at 20:24sudo dpkg -i my_package.deb && sudo apt install -f
, unless you create a repository and install usingapt
. – Pilot6 Dec 15 '19 at 20:26