
Install .deb Packages (Linux)
01/07/2014
Sometimes its handy to just install a .deb from the command line..
1 2 |
dpkg -i package.deb dpkg --install package.deb |
Got a few packages in a subdir and want to install them all at once:
1 2 |
dpkg -i -R /path/with-many-deb-files/ dpkg -i --recursive /path/with-many-deb-files/ |
Share the post "Install .deb Packages (Linux)"