how i install several programs at one click
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.