Just a thought, but live systems are usually just a packed fs like squashfs in an iso with syslinux. Loop mount your image, copy the files out, start a chroot to use a package manager if you want, pack up the modified system back into squashfs, copy to the iso, run syslinux if you need to change the config, aaand your image is now modified 😹 a lot easier said than done, but maybe an interesting excursion.
Linux
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
Hands down, one of the best tools I've used in a very long time:
https://github.com/PJ-Singh-001/Cubic
Download a Debian 12 standard live ISO (or with GNOME or any other iso) and you're good to go. I've compiled custom kernels with it too. If you want persistence, then you use mkusb.
Yes, this does work, however there doesn't seem to be a way to strip out the installer (since I won't be installing from that ISO) or change desktop settings from a graphical environment... any way to do that?
Use the live version (thd try without installing option). You can also remove the installer code if you really want to - I think Ubuntu uses ubiquity/subiquity.
- You can install Linux to external drives/USB sticks and boot from them.
- Some live systems offer persistence via a separate partition on the USB stick. You might want to look into those.
it's not portable (a single iso file), and I don't care about persistence that much tbh, to me it's more important to be able to customize the system and add the things I need to it
Okay, so your main goal really is your own Linux live ISO? Unfortunately I don't really have experience with that.
Just use Puppy Linux. Puppy creates a r/w overlay file which can be updated with any changes you make, so you can install any programs you like and have a persistent session. It's also optimised for flash drive usage too - if your system has enough RAM, it can load the entire image into the RAM, making it very fast.
Are you looking for something like Fedora CoreOS maybe? Or NixOS?
If I understand it correctly: you just want something you can flash or plug into a random PC, like when you switch companies or rebuild your PC often, and then work from this setup for developing. Is that right?
There are following options I have in my mind right now:
-
Install a "normal" Distro of your choice (e.g. Fedora Workstation or Silverblue) onto a external hard drive, or (maybe?) better, an USB-NVME. Now, you can just use your setup on every PC by just booting from the hard drive. If you are a developer, you probably use containers anyway, so I would recommend an immutable distro like VanillaOS or Silverblue. They are way harder to break and will make you more productive.
-
Use NixOS or something therelike. You just write your system-config as a nix-file and then you can overwrite any Nix installation. There's also Fedora uBlue, where you can make something similar, but that image is more cloud based, while Nix is "simpler".
-
Make your own "distro" by using an iso-maker program. There are a few around, but I don't have any in my mind right now.
But you should still explain your intentions better, they are hard to grasp for me.
Ok, so pretty much, I want a portable, minimal desktop setup with some partitioning tools and some development tools in an iso format, so I can at any point in time simple take it, chuck it into ventoy or flash it with persistent storage and be ready to go.
And those "iso-maker" programs are more specifically what I'm asking for, either that or if there is a way to make a customized image of a pre-existing distro
I've used and even daily driven Linux off an external drive before, that's not what I'm asking about, I'm specifically asking about a way to make a customized live iso image...
It's not clear... Do you want a portable USB drive ? If that's the case it's easily doable with Arch or Fedora.
If you want a portable USB that you can modify AND flash then... It's a little more complicated. You can always make a bootable Arch USB then rsync in any existing drive but it seems a little complicated.
What you might want to do is create a simple install script. You can pretty much do it for any distro. It will consume more bandwidth than copying/writing an existing distro but will prevent MANY errors.
With Arch it's quite simple. I believe it might be as simple with Debian or any other distro.
We need a little more info than that.
Like, what OS? What other tools? Why does it need to be custom, can't you just install the tools on the installed system? Why do you need a live session/ISO, if you plan on having it installed on persistant storage anyway?