01-18-07 12:28 AM
On Wed, 17 Jan 2007 19:11:58 -0500, David T. Ashley wrote:
> I frequently (in documents) need to refer collectively to Unix-like
> operating systems (Solaris, Unix, Linux, FreeBSD, etc.).
>
> What is the right nomenclature for this?
>
> I've been using "*nix", but this might be my own invention and not well
> understood.
>
> Here are the possibilities I'm aware of:
>
> a)*nix.
>
> b)Unix-like operating systems.
>
> c)Unices.
>
> d)Unixes.
>
> What is the right nomenclature?
The term "Unix" refers to a set of standards. The most important are
SUS and POSIX both of which have multiple versions. If the vendor
implements those standards they can call their system "Unix". Linux
deliberately takes liberties with these standards which is one reason
why it is frequently separated from the "Unix" group. The BSDs were
derived from a slightly different set of standards although I *think*
they mostly qualify as "Unix". Of course theres a fair amount of cross
pollination going on (e.g. the sockets API started out in BSD but made
it's way into SUS and POSIX).
Ultimately things come down to code portability. When porting code you
have about five major systems to think about - Unix, Linux, BSD, Darwin
(aka OSX) and Windows. The Unix category includes a cluster of OSs like
Solaris, HPUX, AIX, and some others. Linux and BSD are very close to
the Unix group such that code should be mostly portable provided you
don't get cute. Darwin is based on FreeBSD and qualifies to be called
"*nix" but in reality its different enough not to be included in the
previous sentence. Windows, believe it or not has a POSIX compliant MO
but most people use it for Windows specific functionality so it is in
a separate category.
I guess this doesn't really answer your question head-on but perhaps it
will give you some context.
Also, bare in mind there has always been a lot of rivalry and jockeying
between the different camps so sometimes you need to read between
the lines.
Mike
[ Post a follow-up to this message ]
|