The Unix Heritage Society mailing list
 help / color / mirror / Atom feed
From: Dan Cross <crossd@gmail.com>
To: Larry McVoy <lm@mcvoy.com>
Cc: The Eunuchs Hysterical Society <tuhs@tuhs.org>
Subject: [TUHS] Re: Fwd: [simh] Announcing the Open SIMH project
Date: Mon, 6 Jun 2022 08:43:01 -0400	[thread overview]
Message-ID: <CAEoi9W4hnso9Sv_ecAbVKreckx-5RP0R7aZ1m_0+zhvo0+eDBg@mail.gmail.com> (raw)
In-Reply-To: <20220606023614.GJ10240@mcvoy.com>

On Sun, Jun 5, 2022 at 10:36 PM Larry McVoy <lm@mcvoy.com> wrote:
> On Sun, Jun 05, 2022 at 09:40:44PM -0400, Dan Cross wrote:
> > [snip]
> > But every distribution has its own installer, and they vary wildly.
>
> Indeed they do.  I'd put RedHat as the best of the best, but truth be
> told, Debian is not bad, it's more basic but it works.

I don't think I've installed RedHat in years, honestly. I believe
you that it's a smooth process.

> I disagree about the BSDs being similar to Linux, go partition a
> disk with FreeBSD and then compare that to Linux.  It's night and day.
> The Linux stuff works and is obvious, the FreeBSD stuff only makes sense
> if you have been using that forever, it's awful if you are a newbie.

But define "Linux" here. Do you mean RedHat, specifically? Because
with Arch, you've got to manually run `fdisk` or `gdisk` or whatever, and
add partitions in that tool, set their type manually, etc, then manually
create the filesystems, install the boot loader and configure it. The steps
aren't necessarily hard, but it is tedious. The FreeBSD installer, on the
other hand, does pretty much all of that for you. My point is that YMMV
widely between Linux distributions, which vary between extremes of,
"manually partition the disk" and "this graphical wizard does all the nasty
stuff for you" and FreeBSD is somewhere between those two.

> And I say that as a guy who went through Sun's stuff, it was similar to
> FreeBSD but a bit better.
>
> Linux really did just make stuff work.

Huh. I remember before GPT you had to manually create MBR partitions
and, if you wanted more than 3 or 4 (or whatever the number was...) you
had to go and explicity create an extended partition and then subdivide
that. With FreeBSD, you just created one MBR partition and then the
installer let you create filesystems within that using their pseudo-graphical
installer (pseudo- in the sense that it was all text-based, but at least it
was menu driven if that was your bag). I found whatever Linux distribution
I was installing at the time a lot more complex than FreeBSD, but I get
that individuals differ here.

Then again, I care a _lot_ less about carefully dividing my disk up into
different filesystems these days. Back in the day, especially on multiuser
machines, you had to either due to limitations in the filesystem code
(2GB FFS partitions!) or to keep random users from filling up / or /usr.
Most of the need for that kind of subdivision has gone away.

> Is it elegant like v7 was, absolutely
> not.  Does it handle a ton of stuff that nobody could imagine in the v7 days?

Oh, absolutely!

> Absolutely yes.  Is it more complex than it should be?  I dunno, it is more
> complex than I like but I'm an old graybeard.  I really wanted coarse graine
> locking with what Clem and crew did with the cluster approach.  The vproc
> stuff.  I loved that and I think that is the knee of the curve, scale up
> a bit on SMP but then cluster to scale up more.

The world that might have been.

I was thinking more about the ABI compatibility stuff that Ted had mentioned,
and the more I think about it, the less I think that the kernel ABI is all that
relevant. Yes, it's nice that you can take a binary compiled on one distribution
of Linux and drop it onto another distribution and it will
theoretically run because
the system call numbers will mostly line up and the convention for trapping into
the kernel is basically stable, but that's only part of the equation,
and for any
non-trivial binaries, you've also got to make sure that a whole slew of shared
libraries are installed and the correct version (hence why my colleague can't
use the Salae controller software on his Arch machine). To compensate, we've
built up a huge amount of complexity around containers and flatpaks and all of
that stuff, which sometimes doesn't work; not to mention moving across ISAs.
A stable kernel ABI may be necessary, but it's definitely not sufficient.

        - Dan C.

  reply	other threads:[~2022-06-06 12:43 UTC|newest]

Thread overview: 58+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <BCDAF4C4-12EC-49D6-84A6-4592E245922F@comcast.net>
     [not found] ` <CAC20D2NGMK1NG3J+iR8t2rAzOc2uWCe9ZGRJzkZn6ECgMETJEQ@mail.gmail.com>
     [not found]   ` <CAC20D2OK9muQm=gCSeRzarV_HQF6vZ9VNuYRas4uCbMyxYKjJA@mail.gmail.com>
2022-06-03 20:00     ` [TUHS] " Clem Cole
2022-06-03 20:12       ` [TUHS] " Blake McBride
2022-06-03 20:23       ` G. Branden Robinson
2022-06-03 21:06         ` Clem Cole
2022-06-03 21:20           ` Tom Ivar Helbekkmo via TUHS
2022-06-03 21:32             ` Larry McVoy
2022-06-03 21:34               ` Tom Ivar Helbekkmo via TUHS
2022-06-03 21:37                 ` Larry McVoy
2022-06-03 21:36               ` Tom Ivar Helbekkmo via TUHS
2022-06-03 21:40                 ` Larry McVoy
2022-06-03 22:16                   ` Tom Ivar Helbekkmo via TUHS
2022-06-03 22:30                     ` Larry McVoy
2022-06-03 22:52                       ` Warner Losh
2022-06-03 23:48                         ` Larry McVoy
2022-06-04  0:10                           ` Warner Losh
2022-06-04  1:05                             ` Larry McVoy
2022-06-04  1:46                               ` David Arnold
2022-06-06  0:32                               ` Theodore Ts'o
2022-06-06  0:47                                 ` George Michaelson
2022-06-06  1:17                                   ` Larry McVoy
2022-06-06  1:02                                 ` Warner Losh
2022-06-06  1:09                                 ` Dan Cross
2022-06-06  1:15                                 ` Larry McVoy
2022-06-06  1:40                                   ` Dan Cross
2022-06-06  2:36                                     ` Larry McVoy
2022-06-06 12:43                                       ` Dan Cross [this message]
2022-06-06 13:41                                         ` Larry McVoy
2022-06-06 14:27                                           ` Blake McBride
2022-06-06 14:33                                             ` Steve Nickolas
2022-06-06 14:53                                     ` Henry Bent
2022-06-06 23:28                                       ` David Arnold
2022-06-07 14:30                                     ` Theodore Ts'o
2022-06-07 15:08                                       ` Dan Cross
2022-06-07 15:25                                         ` Larry McVoy
2022-06-07 16:03                                           ` Will Senn
2022-06-07 16:38                                             ` Warner Losh
2022-06-07 16:45                                               ` Larry McVoy
2022-06-07 16:57                                                 ` Warner Losh
2022-06-07 17:05                                                   ` Larry McVoy
2022-06-07 16:46                                               ` Blake McBride
2022-06-07 17:26                                                 ` Paul Winalski
2022-06-07 20:09                                                   ` Blake McBride
2022-06-07 17:00                                               ` Paul Winalski
2022-06-07 23:41                                                 ` [TUHS] " Chris Hanson
2022-06-07 15:55                                         ` [TUHS] Re: Fwd: " Richard Salz
2022-06-03 23:56                         ` David Arnold
2022-06-04  0:30                           ` Yeechang Lee
2022-06-04  1:03                             ` Adam Thornton
2022-06-03 22:33                     ` Warner Losh
2022-06-03 22:40                       ` Tom Ivar Helbekkmo via TUHS
2022-06-03 22:56                         ` Warner Losh
2022-06-03 22:26               ` Warner Losh
2022-06-03 22:19             ` Warner Losh
2022-06-03 21:35         ` Ben Walton
2022-06-03 20:52       ` Will Senn
2022-06-03 21:06         ` [TUHS] " Adam Thornton
2022-06-04  9:09           ` Ralph Corderoy
2022-06-04  2:59 [TUHS] Re: Fwd: " Bakul Shah

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=CAEoi9W4hnso9Sv_ecAbVKreckx-5RP0R7aZ1m_0+zhvo0+eDBg@mail.gmail.com \
    --to=crossd@gmail.com \
    --cc=lm@mcvoy.com \
    --cc=tuhs@tuhs.org \
    /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).