this post was submitted on 26 Sep 2022
12 points (100.0% liked)
Linux
48141 readers
539 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
apt
is the tool for downloading packages. So if you don't have internet accessapt
won't be very useful.The command to install packages on debian is
dpkg
. So if you download a Debian package (usually named*.deb
) you can install it withdpkg -i $pkg
as long as you have the dependencies installed. Of course you can also install the dependencies this way, so just make sure that you bring the package and all packages that it depends on to the target machine.Thanks. How do I download a package with apt? So that I can get it to the other computer?
On a computer that is online, you can say
apt install --download-only foo
to download (and not actually install) the .deb files forfoo
and its dependencies to the directory/var/cache/apt/archives/
. You can then copy them from the online computer to the offline computer, and install them withdpkg -i *deb
(assuming the debs are in your current working directory). Note however thatapt
on the online computer will only download dependencies which aren't already installed. To force re-downloading of a specific package which is already installed, you can sayapt install --reinstall --download-only foo
.Instead of downloading with
apt install --download-only
you could also find the download paths for individual .deb packages using https://packages.debian.org/foo and then download them using a browser.You could also copy the contents of
/var/lib/apt/lists/
(after runningapt update
) and the contents of/var/cache/apt/archives/
both to the corresponding locations on the offline computer and, if yoursources.list
files have the same entries, then you can offline install the things you've put in the cache folder usingapt
instead ofdpkg
.Or, if you have lots of disk space, you can create an offline mirror of all (or some) of debian and point your
sources.list
file at a localfile:///
source and then you can useapt
like normal but completely offline.I used to do this many years back with a USB stick before I had Internet access at home. I think it was only the sources.list file that I needed to copy around along with a config file and the actual .deb files. It was possible to use apt-get on the offline machine instead of dpkg which worked better.