this post was submitted on 10 Nov 2023
29 points (91.4% liked)

Linux

47660 readers
1152 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

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

Hi everyone! I'm trying to prepare a live iso with a USB stick including the additional rescuezilla package (or, alternatively, additional packages for a live rescuezilla .iso). Sadly rescuezilla does not support encryption, and so I'd like to be able to create/encrypt an image on one single live iso, not having to do a double iso boot just for this. I'm trying to do this in a manner that I won't need internet once I need to use this USB stick. And hence...I found the most quoted command as:

apt-get download $(apt-rdepends |grep -v "^ ")

But this seems to work ONLY if your package is also part of the repo. If it's an external .deb such as rescuezilla_2.4.2-1_all.deb is, then the command just fails with:

Reading state information... Done
W: Unable to locate package ./rescuezilla_2.4.2-1_all.deb
E: Handler silently failed

So...what can I do to download the many dependencies of rescuezilla onto a USB stick? Thanks!

you are viewing a single comment's thread
view the rest of the comments
[–] iturnedintoanewt@lemm.ee 2 points 11 months ago (1 children)

That's...a lot of dependencies to manually get. This wouldn't have worked. And I need a reproducible method so I can do this fully offline without having to match apt to anything online.

[–] caseyweederman@lemmy.ca 1 points 11 months ago

If the dependencies are in the repos you've added since, then apt-rdepends should be able to pull them.
I had to keep chaining grep -v to ignore packages that didn't exist but the result was a success.