<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Thu, Aug 9, 2018 at 6:16 PM, Mike Miller <span dir="ltr"><<a href="mailto:mbmiller+l@gmail.com" target="_blank">mbmiller+l@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><span class="gmail-">On Thu, 9 Aug 2018, gregrwm wrote:<br>

<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
The issue is that the machine that needs those programs has no networking, so if I run this...<br>
<br>
sudo apt install dkms<br>
<br>
...for example, it just tells me that the network is unreachable.  So I<br>
have to somehow run it on another machine and move the files over.  The<br>
question is, how do I do that?<br>

</blockquote>
<br>
Maybe the key is to use apt-get with the -d option:<br>
<br>
  -d, --download-only<br>
      Download only; package files are only retrieved, not unpacked or<br>
      installed. Configuration Item: APT::Get::Download-Only.<br>
<br>
Apparently, "apt-get -d install will download the given package and all<br>
missing dependencies to the system packages directory<br>
(/var/cache/apt/archives)." And this is best for use of "if you want to<br>
'pre-download' a set of packages for later installation."  Or so I'm told...<br>
<br>
<a href="https://askubuntu.com/questions/463380/difference-between-" rel="noreferrer" target="_blank">https://askubuntu.com/question<wbr>s/463380/difference-between-</a><br>
apt-get-d-install-apt-get-down<wbr>load<br>
<br>
So, maybe I can do that on the USB stick, then copy the downloaded files<br>
over to the laptop, putting them in /var/cache/apt/archives.  If that<br>
works, then I just need to know the command to install the "pre-downloaded"<br>
files.  Any ideas?<br>
</blockquote>

<br>
if you get that far, just repeat the apt command on the box with the infused packages, it should see and use them.<br>
</blockquote>
<br></span>
Do you mean that if the .deb files are all copied into /var/cache/apt/archives and I run this command...<br>
<br>
sudo apt install dkms<br>
<br>
...then it will find and install that package and dependencies from the files without trying to look to the internet repositories?</blockquote><div><br></div><div>that is what i meant, tho on second thought apt-get may still want the network to check the metadata, and i'm not sure --no-download will help, tho you may as well try.  the <a href="http://help.ubuntu.com">help.ubuntu.com</a> topic "Installing packages without an Internet connection" makes it look a bit harder.  i suppose you still might be able to just fool apt-get by copying in the metadata too, and running it before the metadata expires.<br></div></div></div></div>