Meaning: without running sudo apt-get install x. (where x is the name of the app).
In Windows I'd download the app (x.exe). Save it on the USB. Then install it from the USB on the computer I want to install on.
How can I do that with Xubuntu?
Meaning: without running sudo apt-get install x. (where x is the name of the app).
In Windows I'd download the app (x.exe). Save it on the USB. Then install it from the USB on the computer I want to install on.
How can I do that with Xubuntu?
dpkg -iwill install package(s) you've provided; as willapt(whenaptis given the name of the file(s) to be installed). Note whereapt-getwill download any requirements/dependencies;dpkgrequires those to be installed before hand, OR at the same time as the package(s) you're installing. Same applies withaptthough it'll go to the web for any you didn't provide (a problem if you've no internet; ie. it'll require you to have & provide them as deb's in the install command) – guiverc Nov 20 '20 at 07:29x? I simple want to install an app on another machine with no internet. – JJrussel Nov 20 '20 at 07:35wgetthem using the link I provided, copy to thumb-drive thendpkg -iinstall (oraptdepending on release;apthas improved in recent releases) them too.... It depends on how automated you want it. – guiverc Nov 20 '20 at 07:37sudo wget x?? – JJrussel Nov 20 '20 at 08:14wgetwill download files from the web (or just use a web browser). Useman wgetto view the reference manual page for it. You can thencp(copy) ormvfiles/packages to the thumb-drive, walk it to your box,mountthendpkg -i(orapt) to install. You don't usesudowithwget, as then you won't own the files. – guiverc Nov 20 '20 at 08:36dpkg -i filename.debfrom the shell to install it as you have brought it to the destination machine. This will get a lot harder if the package DEPENDS on other things. – Hannu Nov 20 '20 at 11:34