I want to install several software at one click I have all the installation packages on usb and i want to group the together because I need to install them on several laptops
any ideas??
The Sherriff.
I want to install several software at one click I have all the installation packages on usb and i want to group the together because I need to install them on several laptops
any ideas??
The Sherriff.
Open a terminal in the directory containing the .deb files.
Now enter the command
sudo dpkg -i *.deb
to install all the Debian packages.
Then run sudo apt install -f
to install any missing dependencies (in case there are any).
Warning: If you use this method to install incompatible .deb packages (e.g. if you install packages built for Ubuntu 20.04 in 18.04), that may seriously break the package management system, and you would have to reinstall Ubuntu. However, packages build for the same version of Ubuntu should work fine.
This is very simple to do. Just write a script. Example
apt install /path/to/gimp.deb && apt install /path/to/gparted.deb && apt install /path/to/kazam.deb
save it and make it executeable. And then run the script as a superuser.
The above script will simply install softwares one by one.
You can write anything you want for installation like dpkg.