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 -i
will install package(s) you've provided; as willapt
(whenapt
is given the name of the file(s) to be installed). Note whereapt-get
will download any requirements/dependencies;dpkg
requires those to be installed before hand, OR at the same time as the package(s) you're installing. Same applies withapt
though 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:35wget
them using the link I provided, copy to thumb-drive thendpkg -i
install (orapt
depending on release;apt
has 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:14wget
will download files from the web (or just use a web browser). Useman wget
to view the reference manual page for it. You can thencp
(copy) ormv
files/packages to the thumb-drive, walk it to your box,mount
thendpkg -i
(orapt
) to install. You don't usesudo
withwget
, as then you won't own the files. – guiverc Nov 20 '20 at 08:36dpkg -i filename.deb
from 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