The Unix Heritage Society mailing list
 help / color / mirror / Atom feed
From: Warner Losh <imp@bsdimp.com>
To: "Theodore Ts'o" <tytso@mit.edu>
Cc: tuhs@tuhs.org
Subject: [TUHS] Re: Unix install & "standalone" package
Date: Mon, 4 Sep 2023 17:51:33 -0600	[thread overview]
Message-ID: <CANCZdfpi_copZjR-Ni+vRQ-0f=8p63LW0KA_Jo-Kz2OX16dbWQ@mail.gmail.com> (raw)
In-Reply-To: <20230904195918.GC701295@mit.edu>

[-- Attachment #1: Type: text/plain, Size: 5093 bytes --]

On Mon, Sep 4, 2023 at 1:59 PM Theodore Ts'o <tytso@mit.edu> wrote:

> On Mon, Sep 04, 2023 at 11:20:31AM -0600, Warner Losh wrote:
> >
> > Yea, it was an effort to move mounting of root out of the
> > kernel. The earliest scripts just mounted the right disk and moved
> > on, and didn't load any new drivers: they just had the logic to pick
> > the desired root. But at the same time, there were a lot of people
> > that were running on 4MB and 8MB systems that noticed they could put
> > all the router software in the initramfs and never pivot to
> > something else and they could have quite the product with that. And
> > those were the first few bricks that paved the road to hell :)
>
> The other reason why you might need something like an initial ramdisk
> is if you don't yet *have* a root file system on the hardware, and you
> are trying to install a system using TFTP boot.  At that point, you
> have three choices:
>
> (a) Use a NFS root
>
> (b) Use a read-only network block device (for example, MIT Project
> Athena had a read-only Remote Virtual Disk which was a network block
> device that was used to provide a read-only system image used for
> installation and update, as well as a read-only /usr image).
>
> (c) Use a built-in ramdisk.  (And here's not just Linus which has
> adopted this strategy; OpenBSD's installer does this as well.)
>

Yes. FreeBSD did this originally, and some installers still do that.


> The other dynamic at play was that ramdisks were needed when you were
> installing on a 386 PC with, say, 16 megs of memory, a 320 megabyte
> hard disk, and a *single* 1.44MB floppy --- and no ethernet, because
> this was for the home PC user, so the best that you had might be a
> 38kbps dialup link with PPP --- if you were lucky.
>
> So putting the kernel on the first floppy disk, and putting a ramdisk
> image on the second floppy disk, so you could then eject the floppy
> disk and insert subsequent floppy disks so you could install rest of
> the installation binaries (including the shell utilities, the C
> compiler, X windows systems, etc.) and then reboot onto the HDD with a
> fully set up system, was a pretty natural evolution.
>

Yes. FreeBSD 2.0 definitely did that, and I think FreeBSD 1.0 as well.


> And since we had the ramdisk infrastructure, and most users didn't
> want to configure their own kernel as part of the installation
> process, that begat kernel modules and the initial ramdisk being used
> to store the kernel modules.  In the very early days, this made Linux
> *far* more user friendly for non-system programmers to install,
> compared to say, FreeBSD during that era, which was still stuck in the
> BSD 4.x days of a generic kernel, followed by a kernel configuration
> step, etc.
>

GENERIC worked fine in the early days: it was small enough that the savings
from removing all the extra devices was small... but that's because the
number
of devices supported was also relatively small. By the time it became an
issue
FreeBSD did have dynamic loading of drivers, but retained the GENERIC
kernel for install (it should have gone to a minimal kernel, but hasn't yet
completed the migration: the savings wasn't big enough due to Moore's
Law growing machine memories faster than the kernel grew: FreeBSD's kernel
only doubled every 2 years...).

But yea, it was a bit of a kludge. And FreeBSD grew the ability to configure
the morass of ISA devices in the boot loader early on so you could at least
boot the generic kernel, and have the loader remember your choices.


> These days, given that some enterprise setups what their servers to be
> installed from a Fibre Channel Storage Area Network, or iSCSI, perhaps
> using Kerberos to authenticate to the iSCSI target, it makes
> absolutely a huge amount of sense to have an initial ramdisk as an
> option.  That being said, for a long time, the initial ramdisk was an
> *option*.  You didn't have to use it, if you were willing to have a
> custom kernel and you are using a device which has a fixed and stable
> boot-time enumeration.
>

Yea. FreeBSD can use it to this day (and many interesting use cases
use it), but generally the loader tells the kernel what root filesystem to
use. These smarts in the boot loader have also kept the pressure of the
vast majority of cases where initramfs makes sense in Linux land.


> This tended to only be used by people who knew what they were doing,
> but for example, my file system test appliance VM system doesn't use
> an initial ramdisk at all.  It uses qemu, and has a built-in kernel
> configuration and build system, and this works perfectly fine booting
> into the latest Debian stable distribution, with no initial ramdisk
> used at all:
>
>
> https://github.com/tytso/xfstests-bld/blob/master/Documentation/kvm-quickstart.md
>

Ah, cool. Every single distro I've run in the past has had an initramfs. I
thought
it had become no longer an option...

I do similar things for my VM setup with FreeBSD :)

Warner

[-- Attachment #2: Type: text/html, Size: 6738 bytes --]

  reply	other threads:[~2023-09-04 23:51 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-04 14:44 [TUHS] " Norman Wilson
2023-09-04 14:55 ` [TUHS] " Vincenzo Nicosia
2023-09-04 17:20   ` Warner Losh
2023-09-04 19:05     ` Clem Cole
2023-09-05 17:03       ` Paul Winalski
2023-09-05 18:02         ` Clem Cole
2023-09-04 19:59     ` Theodore Ts'o
2023-09-04 23:51       ` Warner Losh [this message]
2023-09-04 17:18 ` Warner Losh
2023-09-04 22:10 ` Steffen Nurpmeso
2023-09-05 15:53   ` Steffen Nurpmeso
2023-09-06 17:50     ` Warner Losh
2023-09-07  0:11       ` Steffen Nurpmeso
2023-09-07 16:05         ` Warner Losh
2023-09-08 14:58           ` Theodore Ts'o
2023-09-08 13:56     ` Michael Kjörling
2023-09-08 23:38       ` Steffen Nurpmeso
2023-09-09 22:43         ` Steffen Nurpmeso
2023-09-11  4:10         ` Theodore Ts'o
2023-09-11 22:05           ` Steffen Nurpmeso
2023-09-05  1:07 ` Jonathan Gray
  -- strict thread matches above, loose matches on Subject: below --
2023-09-04  9:57 [TUHS] " Paul Ruizendaal via TUHS
2023-09-04 14:53 ` [TUHS] " emanuel stiebler
2023-09-04 17:07 ` Warner Losh
2023-09-04 18:21   ` Dan Cross
2023-09-05 11:15   ` Paul Ruizendaal via TUHS
2023-09-05 14:15     ` Clem Cole
2023-09-05 17:03     ` Warner Losh

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CANCZdfpi_copZjR-Ni+vRQ-0f=8p63LW0KA_Jo-Kz2OX16dbWQ@mail.gmail.com' \
    --to=imp@bsdimp.com \
    --cc=tuhs@tuhs.org \
    --cc=tytso@mit.edu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).