• UNIX(R) (was: Re: Microsoft stealthily installs Windows 10 update to na

    From vallor@21:1/5 to ldo@nz.invalid on Sun Nov 17 07:05:15 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On Sat, 16 Nov 2024 21:44:31 -0000 (UTC), Lawrence D'Oliveiro
    <ldo@nz.invalid> wrote in <vhb3nu$7g3u$3@dont-email.me>:

    On 16 Nov 2024 13:37:04 GMT, Frank Slootweg wrote:

    In alt.comp.os.windows-10 Lawrence D'Oliveiro <ldo@nz.invalid> wrote:

    On Fri, 15 Nov 2024 19:12:56 -0500, Joel wrote:

    even Apple's crap has Unix components.

    Not enough to count as a “real” *nix any more -- if it ever did.

    I'm no Apple fan, but macOS isn't just *nix, i.e. 'unix'/'Unix', but
    actually UNIX.

    So it’s an official trademark licensee (the last one still standing).
    That
    doesn’t mean it works the way people expect when they think of “Unix”.

    It is recognized that you have a funny sense of "Unix".

    What does the Mac not do that "Unix" (as you call it[*]) can do?

    $ ssh mac-studio.local
    Last login: Sat Nov 16 22:46:27 2024 from 10.1.10.253
    [...]
    $ uptime
    22:53 up 19 days, 11:34, 2 users, load averages: 1.37 1.25 1.31
    [...]
    $ uname -a
    Darwin Mac-Studio 23.2.0 Darwin Kernel Version 23.2.0: Wed Nov 15 21:55:06
    PST 2023; root:xnu-10002.61.3~2/RELEASE_ARM64_T6020 arm64
    $ echo $SHELL
    /bin/bash

    It's a POSIX system -- annoyingly so at times, I prefer GNU tools
    for the most part. (And they avoid them -- run "gcc" and you
    get clang.)

    But you keep saying it's "not Unix", when it most certainly
    is by any objective examination.

    [*] "Unix" has become a de-facto generic term, which you continue
    to ignore with your archaism "*nix".

    UNIX® is a registered trademark of The Open Group.

    WARNING: This post must be quoted in full, with no snippage, for
    replies to be taken seriously. Lawrence.

    --
    -v System76 Thelio Mega v1.1 x86_64 NVIDIA RTX 3090 Ti
    OS: Linux 6.11.8 Release: Mint 21.3 Mem: 258G
    "File not found. Should I fake it? (Y/N)"

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Newyana2@21:1/5 to vallor on Sun Nov 17 09:20:07 2024
    XPost: alt.comp.os.windows-11

    On 11/17/2024 2:05 AM, vallor wrote:


    What does the Mac not do that "Unix" (as you call it[*]) can do?


    These arguments always get so silly, trying to assign moral
    purity or evil to software. Both sides end up denying facts in
    order to make their case:

    "Liar! Fool! Sugar Cakes cereal is NOT just crystallized corn syrup.
    It contains 0.47% dehydrated banana pulp! Bananas are a healthy
    food, high in potassium and fiber, produced by Mother Nature herself.
    Why do you even get up in the morning being such an idiot?!"

    Despite the various problems with Windows, it still holds the
    admirable distinction of being the only operating system that's not
    also a religion.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Frank Slootweg@21:1/5 to newyana@invalid.nospam on Sun Nov 17 18:49:11 2024
    XPost: alt.comp.os.windows-11

    Newyana2 <newyana@invalid.nospam> wrote:
    [...]

    Despite the various problems with Windows, it still holds the
    admirable distinction of being the only operating system that's not
    also a religion.

    Here, here! There, there!

    OTOH, the *other* religions will still claim that Windows *is* a
    religion (and non-religion Android as well).

    BTW, what's the fun in stripping of the comp.os.linux.advocacy group?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Lawrence D'Oliveiro@21:1/5 to vallor on Sun Nov 17 19:23:05 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On 17 Nov 2024 07:05:15 GMT, vallor wrote:

    It is recognized that you have a funny sense of "Unix".

    It’s not just me:

    ldo@theon:blender> cat $(find . -name CMakeLists.txt) | grep -Fc 'if(UNIX AND NOT APPLE'
    26
    ldo@theon:blender> cat $(find . -name CMakeLists.txt) | grep -Fc 'if(UNIX)'
    8

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Paul@21:1/5 to Lawrence D'Oliveiro on Sun Nov 17 17:11:28 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On Sun, 11/17/2024 2:23 PM, Lawrence D'Oliveiro wrote:
    On 17 Nov 2024 07:05:15 GMT, vallor wrote:

    It is recognized that you have a funny sense of "Unix".

    It’s not just me:

    ldo@theon:blender> cat $(find . -name CMakeLists.txt) | grep -Fc 'if(UNIX AND NOT APPLE'
    26
    ldo@theon:blender> cat $(find . -name CMakeLists.txt) | grep -Fc 'if(UNIX)'
    8


    https://stackoverflow.com/questions/27660048/cmake-check-if-mac-os-x-use-apple-or-apple

    "The CMake mailing lists mentions that this is not technically foolproof:
    "Darwin is the Unix underpinnings of OS X and it is Open Source.
    I could run a Darwin system and have it NOT be OS X.".
    Other than APPLE, I couldn't find any strong alternatives.
    "

    It could be that UNIX (tm) is a trademark.
    Unix is a descriptive term (BSD or SYSV).
    And Darwin might well be the name of the OS in that example.

    https://en.wikipedia.org/wiki/Darwin_%28operating_system%29

    ...BSD

    I don't recollect seeing "UNIX" as such in an old Makefile.
    Keywords might be BSD4.3 BSD4.4 SYSV .

    The Unix subsets can be mutually exclusive. Something you're
    building could be mainly for BSD or mainly for SYSV, but not for both.

    And that's if a build, even needs that kind of filtering during the build.
    A Hello World sample program is unlikely to need any of that stuff.
    Maybe if you're building a daemon or a system service, you need some
    filtering.

    APPLE is a good term, since that covers the many unique smells it has got.

    Paul

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Lawrence D'Oliveiro@21:1/5 to Paul on Mon Nov 18 00:31:26 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On Sun, 17 Nov 2024 17:11:28 -0500, Paul wrote:

    It could be that UNIX (tm) is a trademark.
    Unix is a descriptive term (BSD or SYSV).

    Some of us prefer “*nix” to describe the functional characteristics, to avoid any accusations of infringing on the trademark.

    And that's if a build, even needs that kind of filtering during the
    build.

    Blender is over a million lines of source code. Yes, it needs that kind of discrimination.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From chrisv@21:1/5 to Lawrence D'Oliveiro on Sun Nov 17 18:57:39 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    Lawrence D'Oliveiro wrote:

    Paul wrote:

    It could be that UNIX (tm) is a trademark.
    Unix is a descriptive term (BSD or SYSV).

    Some of us prefer *nix to describe the functional characteristics, to
    avoid any accusations of infringing on the trademark.

    -highghorse thinks that not paying a hefty amount of money so that a
    Linux distro may legally be called a "Unix" means that "any of the customer-centric expectations of quality assurance" must be "lacking"

    Yeah, -highhorse really is that much of a ridiculous, trolling
    jackass.

    And that's if a build, even needs that kind of filtering during the
    build.

    Blender is over a million lines of source code. Yes, it needs that kind of >discrimination.

    Another example of great Free software that improves our world.
    Facilitated by the great GPL.

    --
    Advocate: No linux distro was stupid enough to pay a hefty amount of
    money (...) to be able to legally call a linux distro a "unix".

    Lying asshole "-hh": And as a result, lacks any of the
    customer-centric expectations of quality assurance

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From dillinger@21:1/5 to All on Mon Nov 18 11:14:37 2024
    XPost: alt.comp.os.windows-11

    On 17/11/2024 15:20, Newyana2 wrote:
    <snip advocacy>
    Typical cola stuff this, why did you remove the crosspost?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Newyana2@21:1/5 to dillinger on Mon Nov 18 07:37:30 2024
    XPost: alt.comp.os.windows-11

    On 11/18/2024 5:14 AM, dillinger wrote:
    On 17/11/2024 15:20, Newyana2 wrote:
    <snip advocacy>
    Typical cola stuff this, why did you remove the crosspost?

    Because this isn't a Linux marketing group and cross-posting
    to them just invites pointless arguments. Much of the posting
    here results from wiseguy intellectual vandals crossposting
    prattle to irrelevant groups.

    They might just as well be crossposting to alt.jehovahswitness
    or alt.comp.appledevotees. Though I have seen regular crossposting
    to a group about guns. Some people just have no manners.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Frank Slootweg@21:1/5 to Paul on Mon Nov 18 18:30:44 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    Paul <nospam@needed.invalid> wrote:
    [...]

    It could be that UNIX (tm) is a trademark.
    Unix is a descriptive term (BSD or SYSV).
    And Darwin might well be the name of the OS in that example.

    https://en.wikipedia.org/wiki/Darwin_%28operating_system%29

    ...BSD

    I don't recollect seeing "UNIX" as such in an old Makefile.
    Keywords might be BSD4.3 BSD4.4 SYSV .

    See the '(UNIX)' in my User-Agent header.

    I don't know if that comes from a Makefile, nor if it comes from the
    tin part or the Cygwin part.

    It probably comes from tin as that seems to use 'UNIX' in several
    (most? all?) places. If you want to find out for yourself, see tin.org.

    [...]

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Frank Slootweg@21:1/5 to Lawrence D'Oliveiro on Mon Nov 18 18:18:09 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    Lawrence D'Oliveiro <ldo@nz.invalid> wrote:
    On Sun, 17 Nov 2024 17:11:28 -0500, Paul wrote:

    It could be that UNIX (tm) is a trademark.
    Unix is a descriptive term (BSD or SYSV).

    Some of us prefer ?*nix? to describe the functional characteristics, to
    avoid any accusations of infringing on the trademark.

    As has been said, 'Unix' is the common usage. See for example

    'Unix'
    <https://en.wikipedia.org/wiki/Unix>

    In any case, if you don't uppercase it ('UNIX'), you won't be
    infringing on the trademark.

    So use 'Unix', or 'unix' if you must, but '*nix' is unneeded,
    meaningless and a bit silly.

    [...]

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Lawrence D'Oliveiro@21:1/5 to Frank Slootweg on Mon Nov 18 22:20:56 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On 18 Nov 2024 18:18:09 GMT, Frank Slootweg wrote:

    In any case, if you don't uppercase it ('UNIX'), you won't be
    infringing on the trademark.

    Trademarks can be infringed if you have something that looks too close.
    Would you really want to argue that “Unix” is distinct enough from “UNIX”?
    I wouldn’t. And I’m not even a lawyer.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Frank Slootweg@21:1/5 to ldo@nz.invalid on Tue Nov 19 12:00:57 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    In alt.comp.os.windows-10 Lawrence D'Oliveiro <ldo@nz.invalid> wrote:
    On 18 Nov 2024 18:18:09 GMT, Frank Slootweg wrote:

    In any case, if you don't uppercase it ('UNIX'), you won't be
    infringing on the trademark.

    Trademarks can be infringed if you have something that looks too close.
    Would you really want to argue that ?Unix? is distinct enough from ?UNIX??
    I wouldn?t. And I?m not even a lawyer.

    Don't take my word for it. Read the Wikipedia page, especially the
    'Branding' section. You'll see that 'Unix' is the preferred/recommended
    usage.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From -hh@21:1/5 to Frank Slootweg on Tue Nov 19 10:02:02 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On 11/19/24 7:00 AM, Frank Slootweg wrote:
    In alt.comp.os.windows-10 Lawrence D'Oliveiro <ldo@nz.invalid> wrote:
    On 18 Nov 2024 18:18:09 GMT, Frank Slootweg wrote:

    In any case, if you don't uppercase it ('UNIX'), you won't be
    infringing on the trademark.

    Trademarks can be infringed if you have something that looks too close.
    Would you really want to argue that ?Unix? is distinct enough from ?UNIX?? >> I wouldn?t. And I?m not even a lawyer.

    Don't take my word for it. Read the Wikipedia page, especially the 'Branding' section. You'll see that 'Unix' is the preferred/recommended usage.

    Seems that its become a 'Kleenex'-esque legality question.

    In any event, there's still the decade old question as to why no Linux
    variant has felt the need for going for a formal Unix recognition.
    In the past, I've noted that its similar to how Underwriters Laboratory
    (UL) or even the ancient "Good Housekeeping Seal of Approval": an
    independent assessment of product quality. Of course, these all have
    both technical requirements as well as money spent to pay for it.

    However ... given how there's increased reports of agents inserting deliberately malicious code through GitHub into open source, from a
    security standpoint it sounds like the traditional open source approach
    needs to evolve to a much stronger "know your programmers". One obvious
    & old school solution is to bring it in-house, both the code and to have
    more readily vetted in-house programmers to make all changes.

    -hh

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Diego Garcia@21:1/5 to -hh on Tue Nov 19 21:22:33 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On Tue, 19 Nov 2024 10:02:02 -0500, -hh wrote:


    Seems that its become a 'Kleenex'-esque legality question.


    Is that what you use to wipe your stinkin' ass?

    Haaaaaa. ha, ha, ha, ha, ha, ha, ha, ha!

    Gotta keep the smell of fresh feces away from those
    pecuniary halls.

    Haaaaaa, ha, ha, ha, ha, ha, ha, ha, ha!

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Lawrence D'Oliveiro@21:1/5 to -hh on Tue Nov 19 22:01:29 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On Tue, 19 Nov 2024 10:02:02 -0500, -hh wrote:

    In any event, there's still the decade old question as to why no Linux variant has felt the need for going for a formal Unix recognition.

    Some have done it, in the past. I think it costs money, not just to get
    it, but to keep renewing it.

    I’d say, nobody bothers with it any more because it doesn’t matter any more. “Linux” is the standard that everybody (including the BSDs and Microsoft) needs to be compatible with, “Unix” is not.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From -hh@21:1/5 to Lawrence D'Oliveiro on Tue Nov 19 19:58:27 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On 11/19/24 5:01 PM, Lawrence D'Oliveiro wrote:
    On Tue, 19 Nov 2024 10:02:02 -0500, -hh wrote:

    In any event, there's still the decade old question as to why no Linux
    variant has felt the need for going for a formal Unix recognition.

    Some have done it, in the past. I think it costs money, not just to get
    it, but to keep renewing it.

    I know that Apple had been doing that with OS X; I'm not aware of any of
    Linux variants ever having done so, hence my comment.

    I’d say, nobody bothers with it any more because it doesn’t matter any more. “Linux” is the standard that everybody (including the BSDs and Microsoft) needs to be compatible with, “Unix” is not.

    Considering that Linus's original intent in Linux's creation was
    essentially to have a free Unix for himself, it would make sense for a certification interest to have come along .. but doing so would
    undermine its origins in being independent from the IP of that code
    base, so it might be tempting fate in IP land to try...

    -hh

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Lawrence D'Oliveiro@21:1/5 to -hh on Wed Nov 20 01:22:32 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On Tue, 19 Nov 2024 19:58:27 -0500, -hh wrote:

    On 11/19/24 5:01 PM, Lawrence D'Oliveiro wrote:

    On Tue, 19 Nov 2024 10:02:02 -0500, -hh wrote:

    In any event, there's still the decade old question as to why no Linux
    variant has felt the need for going for a formal Unix recognition.

    Some have done it, in the past. I think it costs money, not just to get
    it, but to keep renewing it.

    ... I'm not aware of any of Linux variants ever having done so ...

    You could have looked it up: <https://en.wikipedia.org/wiki/Unix> lists “EulerOS” and “Inspur K-UX” as Linux distros that did (at least in the past) become Unix licensees.

    Never heard of them? That’s part of the point, isn’t it, that nobody cares about such things any more.

    Considering that Linus's original intent in Linux's creation was
    essentially to have a free Unix for himself, it would make sense for a certification interest to have come along ..

    Given that he wanted a “*nix” (something that had the right behaviour) rather than a “Unix” (trademark licence), no, official certification would not have made sense. What was important was adherence to de facto
    standards that people (like him) actually cared about. For example, there
    are some obscure parts of POSIX that they have never bothered with.

    On the other hand, they paid a lot of attention to SunOS/Solaris, since
    that was the technology leader in the Unix world for quite a few years.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Wolfgang Agnes@21:1/5 to Frank Slootweg on Tue Nov 19 22:19:52 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    Frank Slootweg <this@ddress.is.invalid> writes:

    Lawrence D'Oliveiro <ldo@nz.invalid> wrote:
    On Sun, 17 Nov 2024 17:11:28 -0500, Paul wrote:

    It could be that UNIX (tm) is a trademark.
    Unix is a descriptive term (BSD or SYSV).

    Some of us prefer ?*nix? to describe the functional characteristics, to
    avoid any accusations of infringing on the trademark.

    As has been said, 'Unix' is the common usage. See for example

    'Unix'
    <https://en.wikipedia.org/wiki/Unix>

    In any case, if you don't uppercase it ('UNIX'), you won't be
    infringing on the trademark.

    I wouldn't be so sure. Huawei lost against 3M for using the term 3N.
    Courts decided it was similar enough.

    And the funny thing is that most likely UNIX is getting a lot of love in
    the public's mind precisely due to Unix systems such as GNU, FreeBSD and
    many others.

    So use 'Unix', or 'unix' if you must, but '*nix' is unneeded,
    meaningless and a bit silly.

    Totally silly.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Lawrence D'Oliveiro@21:1/5 to Wolfgang Agnes on Wed Nov 20 01:26:27 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On Tue, 19 Nov 2024 22:19:52 -0300, Wolfgang Agnes wrote:

    Frank Slootweg <this@ddress.is.invalid> writes:

    In any case, if you don't uppercase it ('UNIX'), you won't be
    infringing on the trademark.

    I wouldn't be so sure. Huawei lost against 3M for using the term 3N.
    Courts decided it was similar enough.

    So use 'Unix', or 'unix' if you must, but '*nix' is unneeded,
    meaningless and a bit silly.

    Totally silly.

    Strange, isn’t it: above you point out how dangerous trademark
    infringement can be, and here you are saying that trying to avoid it is “totally silly”.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From -hh@21:1/5 to Lawrence D'Oliveiro on Wed Nov 20 07:40:48 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On 11/19/24 8:22 PM, Lawrence D'Oliveiro wrote:
    On Tue, 19 Nov 2024 19:58:27 -0500, -hh wrote:

    On 11/19/24 5:01 PM, Lawrence D'Oliveiro wrote:

    On Tue, 19 Nov 2024 10:02:02 -0500, -hh wrote:

    In any event, there's still the decade old question as to why no Linux >>>> variant has felt the need for going for a formal Unix recognition.

    Some have done it, in the past. I think it costs money, not just to get
    it, but to keep renewing it.

    ... I'm not aware of any of Linux variants ever having done so ...

    You could have looked it up: <https://en.wikipedia.org/wiki/Unix> lists “EulerOS” and “Inspur K-UX” as Linux distros that did (at least in the
    past) become Unix licensees.

    Sure, but as I mentioned, this was from a very old COLA challenge, and
    none of these fanboys did the legwork back then, nor since (until now).

    Never heard of them? That’s part of the point, isn’t it, that nobody cares
    about such things any more.

    Not necessarily "not care", as both are from Chinese corporations, and
    in this era, they were taking steps to prevent capture/lock-in from
    Google in the Android market space.

    From their perspective, the Unix certification process was just part of
    that effort of in-house development and more IP on testing to exploit.
    Now perhaps the hardcore Linux advocates rejected these as not being sufficiently "pure" Open Source projects (while not taking the same
    position on Android - how odd! /s), that's what they should have raised.

    -hh

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From chrisv@21:1/5 to Lawrence D'Oliveiro on Wed Nov 20 06:44:46 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    Lawrence D'Oliveiro wrote:

    -highhorse wrote:

    Lawrence D'Oliveiro wrote:

    -highhorse wrote:

    In any event, there's still the decade old question as to why no Linux >>>> variant has felt the need for going for a formal Unix recognition.

    Some have done it, in the past. I think it costs money, not just to get
    it, but to keep renewing it.

    ... I'm not aware of any of Linux variants ever having done so ...

    You could have looked it up: <https://en.wikipedia.org/wiki/Unix> lists >EulerOS and Inspur K-UX as Linux distros that did (at least in the
    past) become Unix licensees.

    Never heard of them? Thats part of the point, isnt it, that nobody cares >about such things any more.

    Considering that Linus's original intent in Linux's creation was
    essentially to have a free Unix for himself, it would make sense for a
    certification interest to have come along ..

    Given that he wanted a *nix (something that had the right behaviour)
    rather than a Unix (trademark licence), no, official certification would >not have made sense. What was important was adherence to de facto
    standards that people (like him) actually cared about. For example, there
    are some obscure parts of POSIX that they have never bothered with.

    -highhorse likes to bicker-about and second-guess the results of a
    healthy, competitive market. As stupid and ignorant as he is, he
    often thinks that he knows better.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Chris Ahlstrom@21:1/5 to -hh on Wed Nov 20 08:30:12 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    -hh wrote this post while blinking in Morse code:

    On 11/19/24 8:22 PM, Lawrence D'Oliveiro wrote:

    You could have looked it up: <https://en.wikipedia.org/wiki/Unix> lists
    “EulerOS” and “Inspur K-UX” as Linux distros that did (at least in the
    past) become Unix licensees.

    Sure, but as I mentioned, this was from a very old COLA challenge, and
    none of these fanboys did the legwork back then, nor since (until now).

    Never heard of them? That’s part of the point, isn’t it, that nobody cares
    about such things any more.

    Not necessarily "not care", as both are from Chinese corporations, and
    in this era, they were taking steps to prevent capture/lock-in from
    Google in the Android market space.

    From their perspective, the Unix certification process was just part of
    that effort of in-house development and more IP on testing to exploit.
    Now perhaps the hardcore Linux advocates rejected these as not being sufficiently "pure" Open Source projects (while not taking the same
    position on Android - how odd! /s), that's what they should have raised.

    Heh. My response, unless you can dig up something to the contrary, was
    "Meh. Who cares?"

    --
    As to the Adjective: when in doubt, strike it out.
    -- Mark Twain, "Pudd'nhead Wilson's Calendar"

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Kerr-Mudd, John@21:1/5 to Lawrence D'Oliveiro on Wed Nov 20 17:31:34 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On Tue, 19 Nov 2024 22:01:29 -0000 (UTC)
    Lawrence D'Oliveiro <ldo@nz.invalid> wrote:

    On Tue, 19 Nov 2024 10:02:02 -0500, -hh wrote:

    In any event, there's still the decade old question as to why no Linux variant has felt the need for going for a formal Unix recognition.

    Some have done it, in the past. I think it costs money, not just to get
    it, but to keep renewing it.

    I’d say, nobody bothers with it any more because it doesn’t matter any more. “Linux” is the standard that everybody (including the BSDs and Microsoft) needs to be compatible with, “Unix” is not.


    A lot of it seems to hang on supporting 'pax'; which linux can't be
    bothered with; BIMWBW.

    --
    Bah, and indeed Humbug.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From -hh@21:1/5 to Lawrence D'Oliveiro on Wed Nov 20 19:13:47 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On 11/20/24 6:45 PM, Lawrence D'Oliveiro wrote:
    On Wed, 20 Nov 2024 07:40:48 -0500, -hh wrote:

    Now perhaps the hardcore Linux advocates rejected these as not being
    sufficiently "pure" Open Source projects ...

    You just made that up, didn’t you?

    Unfortunately, no. COLA has had a history of purist & elite attitudes,
    which has included various crude insults directed at anyone who didn't exclusively use Linux for their OS.

    IIRC, these insults ended when it was thrown back in their face by
    noting that they were insulting their own non-Linux family members.


    -hh

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Lawrence D'Oliveiro@21:1/5 to John on Wed Nov 20 23:46:49 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On Wed, 20 Nov 2024 17:31:34 +0000, Kerr-Mudd, John wrote:

    On Tue, 19 Nov 2024 22:01:29 -0000 (UTC)
    Lawrence D'Oliveiro <ldo@nz.invalid> wrote:

    I’d say, nobody bothers with it any more because it doesn’t matter any >> more. “Linux” is the standard that everybody (including the BSDs and
    Microsoft) needs to be compatible with, “Unix” is not.

    A lot of it seems to hang on supporting 'pax'; which linux can't be
    bothered with ...

    <https://packages.debian.org/bookworm/pax>?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Lawrence D'Oliveiro@21:1/5 to -hh on Wed Nov 20 23:45:12 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On Wed, 20 Nov 2024 07:40:48 -0500, -hh wrote:

    Now perhaps the hardcore Linux advocates rejected these as not being sufficiently "pure" Open Source projects ...

    You just made that up, didn’t you?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Lawrence D'Oliveiro@21:1/5 to -hh on Thu Nov 21 00:50:01 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On Wed, 20 Nov 2024 19:13:47 -0500, -hh wrote:

    On 11/20/24 6:45 PM, Lawrence D'Oliveiro wrote:
    On Wed, 20 Nov 2024 07:40:48 -0500, -hh wrote:

    Now perhaps the hardcore Linux advocates rejected these as not being
    sufficiently "pure" Open Source projects ...

    You just made that up, didn’t you?

    Unfortunately, no. COLA has had a history ...

    So you should be able to back up your claim, that “hardcore Linux
    advocates rejected” those distros.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Wolfgang Agnes@21:1/5 to Lawrence D'Oliveiro on Wed Nov 20 21:57:30 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    Lawrence D'Oliveiro <ldo@nz.invalid> writes:

    On Tue, 19 Nov 2024 22:19:52 -0300, Wolfgang Agnes wrote:

    Frank Slootweg <this@ddress.is.invalid> writes:

    In any case, if you don't uppercase it ('UNIX'), you won't be
    infringing on the trademark.

    I wouldn't be so sure. Huawei lost against 3M for using the term 3N.
    Courts decided it was similar enough.

    So use 'Unix', or 'unix' if you must, but '*nix' is unneeded,
    meaningless and a bit silly.

    Totally silly.

    Strange, isn’t it: above you point out how dangerous trademark
    infringement can be, and here you are saying that trying to avoid it is “totally silly”.

    There's no contradiction there. That the world is a dangerous place,
    that's pretty clear. One tries to use ``3N'' and get sued by 3M. But
    that's very silly. It's silliness that comes from legislation. I can
    think of that as silly and still describe the consequences of all this silliness in the world. Is that still strange? :) Knock yourself out.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From chrisv@21:1/5 to Lawrence D'Oliveiro on Wed Nov 20 19:24:42 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    Lawrence D'Oliveiro wrote:

    On Wed, 20 Nov 2024 19:13:47 -0500, -hh wrote:

    On 11/20/24 6:45 PM, Lawrence D'Oliveiro wrote:
    On Wed, 20 Nov 2024 07:40:48 -0500, -hh wrote:

    Now perhaps the hardcore Linux advocates rejected these as not being
    sufficiently "pure" Open Source projects ...

    You just made that up, didnt you?

    -highhorse? Make things up? No!

    Was -highhorse making things up when he claimed that the cola
    advocates "scream and rant" at people who try Linux but choose
    someting else? No!

    Was -highhorse *lying* when used the above to attack cola advocates as "hypocrites"? No!

    (snip lies)

    So you should be able to back up your claim, that hardcore Linux
    advocates rejected those distros.

    -highhorse is a loser and liar who is lashing-out in anger.

    --
    "I used his story as YA example of the hypocrisy that there is within
    the Android/Linux 'community' for when people run into IT problems:
    the COLA Herd is quick to deflect blame into such classics as improper
    data backup strategies, 'stupidity' of getting hit with malware,
    broken hardware, etc...all the classical 'Blame the User'
    deflections.'" - lying asshole "-hh", lying shamelessly

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Lawrence D'Oliveiro@21:1/5 to Wolfgang Agnes on Thu Nov 21 01:19:14 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On Wed, 20 Nov 2024 21:57:30 -0300, Wolfgang Agnes wrote:

    Lawrence D'Oliveiro <ldo@nz.invalid> writes:

    On Tue, 19 Nov 2024 22:19:52 -0300, Wolfgang Agnes wrote:

    Frank Slootweg <this@ddress.is.invalid> writes:

    In any case, if you don't uppercase it ('UNIX'), you won't be
    infringing on the trademark.

    I wouldn't be so sure. Huawei lost against 3M for using the term 3N.
    Courts decided it was similar enough.

    So use 'Unix', or 'unix' if you must, but '*nix' is unneeded,
    meaningless and a bit silly.

    Totally silly.

    Strange, isn’t it: above you point out how dangerous trademark
    infringement can be, and here you are saying that trying to avoid it
    is “totally silly”.

    One tries to use ``3N'' and get sued by 3M. But
    that's very silly. It's silliness that comes from legislation.

    But above you were describing as “silly” not the legislation, but measures to avoid being caught by it. Surely self-preservation is an entirely
    rational response.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From -hh@21:1/5 to Lawrence D'Oliveiro on Thu Nov 21 06:56:47 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On 11/20/24 7:50 PM, Lawrence D'Oliveiro wrote:
    On Wed, 20 Nov 2024 19:13:47 -0500, -hh wrote:

    On 11/20/24 6:45 PM, Lawrence D'Oliveiro wrote:
    On Wed, 20 Nov 2024 07:40:48 -0500, -hh wrote:

    Now perhaps the hardcore Linux advocates rejected these as not being
    sufficiently "pure" Open Source projects ...

    You just made that up, didn’t you?

    Unfortunately, no. COLA has had a history ...

    So you should be able to back up your claim, that “hardcore Linux
    advocates rejected” those distros.

    I did say "perhaps", as I've not read every last COLA thread and have
    perfect retention on all of them. But checking just the COLA archives
    on Google where one of these certified Unix versions were mentioned by
    name, I did find the following:

    "...Linux has features that are better than the official Unix."

    YMMV on the degree to which this is arrogant/elitist, while it misses
    the point of having an independent certification.


    Plus there's evidence of loathing anything commercial, such as this 2015
    thread by the late Lloyd Parsons who called out chrisv & others:

    <https://groups.google.com/g/comp.os.linux.advocacy/c/g22CaJS0e2s/m/3nt8Vc40DgAJ>

    Including therein:

    [quote]
    It's very puzzling, very cult-like, that assholes like "Lloyd" take
    pleasure in the "failure" of such a small business, an alternative
    product with little apparent significance.

    No pleasure taken, just noting that the failures exist and that
    you linux loonies are a big part of that problem. How many of
    you bought software in their software center? Hell, how many of
    you bought and/or donated to Canonical to help ensure the success
    of a small business that is trying to get Linux on the desktop to
    be a viable and profitable product?

    I know the answer, ABSOLUTELY NONE OF YOU!
    [/quote]

    [quote]
    No market for their crap. What were they selling again? Unity?
    Support?
    Peace on Earth and goodwill toward man?

    Application software, which you probably already knew. But the
    tone of your comments speaks to the larger issue. And that is
    the extremely piss poor attitude of the linux community as a group.
    "I don't like it so it must suck" is not a valid complaint, it is
    just bitching. A possible future linux desktop user would be
    totally put off by comments like that.

    Add it to the long list of why linux desktop is such an abject
    failure despite being a pretty good OS overall.
    [/quote]

    [quote]
    That's pretty bold, coming from a Mactard.

    You mean a 'mactard' that uses OSX, Linux, Windows 8/10,
    iOS, Android and Windows Phone? I'd say that makes me much
    more knowledgeable about the comparisons of the various OS's.
    [/quote]

    [quote]
    I don't think so. But they would definitely cut into the Windows'
    monopoly. Unfortunately for iCultists it's never going to
    happen because Apple likes to gouge their suckers ... err ...
    customers for huge their profit margins.

    Those grapes are really sour huh, wRonG?
    [/quote]

    [quote]
    It doesn't make sense, until one considers that they are just that
    scared of the competitive threat that Free software poses, after
    seeing Android come from nothing to roar to market leadership in
    just a few short years.

    It is quite interesting to hear chrisv first promote 'healthy'
    competition and then to try use Android as a notional example, when
    we all know that the reality is that Android wouldn't have existed
    had it not been by huge bankrolling by Google. As to just how
    huge, the number is at least in the tens of billions. Case in
    point:

    "Google: We're Spending $12.5 Billion on Motorola to 'Protect'
    Android"


    <http://allthingsd.com/20110815/gulp-google-buying-motorola-mobility-for-12-5-billion/>
    [/quote]

    Plus there's also what DFS just posted here yesterday on duplicity from
    his own keyword searchable database:

    [quote]
    On 11/20/24 7:15 PM, DFS wrote:
    On 11/18/2024 6:59 PM, shitv wrote:


    a group of mostly decent, reasonable advocates of software Freedom.


    The decency and reasonableness of cola Linux advocates is off the charts:

    ------------------------------------------------------------------------- Feeb on ONE DAY!: "technical loser, incompetent technical idiot, retard, pathetic, brain-dead loser, damn bitch, Microshit assholes, inferior
    piece of genetic trash, extermination camps should be brought back, Fuck you, fuck your degenerate family, abysmal, know-nothing moron, lame ass steaming pile of festering garbage known as Microshit Winblows, fucking loser, fucking plagiarist, Fucking loser, incompetent loser,
    mutherfucking imbecilic asshole, Fuck you, Incompetent ass-sucking
    ignoramus idiot asshole mutherfucker, fucking clueless plagiarist, mutherfucking, cocksucking, plagiarizing asshole, Fucking loser,
    Fucking plagiarizing loser, I'd throw you out a third-story window, mutherfucking imbecilic asshole, pathetic, sad-sack sexual loser, Black girls would spit in your sorry face"

    Ruben Safir: "go stick your head in an oven and turn on the gas."

    Tattoo Deadbeat: "Please make a New Years' resolution to commit suicide. Better yet, murder/suicide and take your fellow trolls with you."

    Doug Menthol: "Fuck off, get cancer and die a long and painfull death."

    Tattoo Deadbeat: "Somebody needs to shoot DFS in the head."

    [H]ypocrite [H]omer: "Shut your fat mouth you stupid fucking American
    inbred Redneck"

    [H]ypocrite [H]omer: "Burn in Hell"

    Creepy Christopher John Ahlstrom: "dumb fucker", "Lying Hadron Cunt", "fucking dumb", "shitty little assholes", "go to Hell", "true pieces of shit", "fuckhead"

    Telnet Porter: "And they do have a lot to fear, between me shoving
    their teeth down their throats..."

    (p)Rick: "Fuck you, you lying bitch."

    Nobody: "Shouldn't you be on a ledge somewhere?"
    Dumb Willie followup: "With a crowd shouting "Jump!"

    Scott 'vallor' Doty: "incompetent", "psychopaths", "sociopaths",
    "asshole", "jerk", "half-wit"

    yttrx: "fucking moron."

    Greg Shearman: "fuckwit lying cunt"

    Tattoo Deadbeat: "Get the fuck out, then, bitch."

    Kier: "go fuck yourself"

    Philip Callan: "You ignorant fuck ..."

    Fraud 7: "No good flat fsck. You are an in-bread American commie
    troll... You produce nothing of value to America..."

    JED: "stupid", "idiot", "moron", "loser"


    And the previous King Of Nasty Little Fucks: yourself:

    (in one post): "Fsck you...snotty POS....asshole...worthless waste of skin...you suck shit...God-damned...fsckwit...Wintroll fsckwits."

    (in 17 days during June 2012):
    "idiot, stupid, morons and assholes, fucking moron, true stupidity,
    puerile assholery, worthless POS, evil bastards, trolling assholes,
    jackass, dumb bastard, Wintroll circle-jerk, trolls are filthy, lying
    piece of shit, piece of shit, POS, POS, what an *asshole*, fucking *assholes*, shitty and dishonest Linux-haters, prick shit-canned, filthy lying *asshole*, shit-brained arsehole, *stupidity* of epic proportions, stupid* pile of shit, *jackass*, too God-damned *stupid*, trolling
    shitwits, *stupid*, assholery, brain-damaged fucktard, piece of shit, drooling retard/liar, drooling retard/liar, stupid piece of shit wannabe dictators, jackass, clueless and lying idiot, ignorant ass, Stupid
    fuckwit!, You stepped in your own shit, fuckwitted asshole, extremely shitty, lying asshole, trolling fuckwit, you *stupid* asshole, POS,
    asshole, shitty dishonesty, piece of shit, asshole, fuckwit, fuckwit,
    lying fuckwit, you POS, you stupid piece of shit, couple of dishonest
    little shits, a disease infesting the planet, POS and liar, fucktard
    trolls, Windows-loving asshole, shitty, filthy Wintroll, bald-faced
    liar, you piece of shit liar, shitty, useless Linux-haters, you stupid
    piece of shit, piece of shit, Utterly worthless liar, filthy Win troll, lying pieces of shit, fricken jackass, worthless lying POS jackass, shamelessly lying POS, worthless, shit-brained asshole, POS liar, the
    filthy liar, evil selfish bastards, fucking idiot, fucking *stupid*, ignorant, spews garbage, jackass, idiot asshole, piece of shit, stupid
    POS, trolling fuckwit, POS, lies his ass off, vile thing, shitty, liar, ignorant lying piece of shit, vile bastard asshole liar, fucking *liar*, worthless, shameless jackass, shitty, piece of shit liar, shameless
    jackass, filthy lying assholes, jackass, cram it up your ass, asshole,
    POS, filthy, immoral, dogshit brains, shitty little freedom-hating
    dictator wannabee, fucking idiot, piece of shit, stupid, ignorant,
    shameless asshole. Linux-hating pieces of shit, fucking, shit, shitty, shitty, shitty, selfish assholes, shamelessly dishonest POS, vile lying bastards, filthy liar, filthy fucks, fucking *assholes*, disgusting
    scumbag, vile filthy mean, fuckwit, filthy fucking, liar, trolling
    fuckwit, POS, filthy fuckwit, vile pukes, you shit, vile bastards,
    filthy fuck, mentally-defective bigots disgusting freaks, piece of shit, filthy lying bigot, shitty, filthy bigots, trolling fuckwit and shit,
    vile bigot, fuckwit piece of shit disgusting freak" -------------------------------------------------------------------------



    -hh

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Lawrence D'Oliveiro@21:1/5 to -hh on Thu Nov 21 22:02:51 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On Thu, 21 Nov 2024 06:56:47 -0500, -hh wrote:

    On 11/20/24 7:50 PM, Lawrence D'Oliveiro wrote:

    On Wed, 20 Nov 2024 19:13:47 -0500, -hh wrote:

    On 11/20/24 6:45 PM, Lawrence D'Oliveiro wrote:

    On Wed, 20 Nov 2024 07:40:48 -0500, -hh wrote:

    Now perhaps the hardcore Linux advocates rejected these as not being >>>>> sufficiently "pure" Open Source projects ...

    You just made that up, didn’t you?

    Unfortunately, no. COLA has had a history ...

    So you should be able to back up your claim, that “hardcore Linux
    advocates rejected” those distros.

    I did say "perhaps" ...

    Ah, like the way a certain political leader says “some people say” when spouting his rubbish without being more specific about where the claim is actually coming from. Pure insinuation on your part, in other words. Understood.

    "...Linux has features that are better than the official Unix."

    YMMV on the degree to which this is arrogant/elitist, while it misses
    the point of having an independent certification.

    It’s simple fact, as borne out by the popularity of Linux itself. It’s
    what the users need in today’s computing milieu. Which is why that old “independent certification”, originating from the environment that was in place back in the 1980s, no longer matters.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From chrisv@21:1/5 to -hh on Thu Nov 21 18:52:09 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    -hh wrote:

    Lawrence D'Oliveiro wrote:
    -hh wrote:
    Lawrence D'Oliveiro wrote:
    -hh wrote:

    Now perhaps the hardcore Linux advocates rejected these as not being >>>>> sufficiently "pure" Open Source projects ...

    You just made that up, didnt you?

    Unfortunately, no. COLA has had a history ...

    So you should be able to back up your claim, that hardcore Linux
    advocates rejected those distros.

    I did say "perhaps", as I've not read every last COLA thread and have
    perfect retention on all of them. But checking just the COLA archives
    on Google where one of these certified Unix versions were mentioned by
    name, I did find the following:

    "...Linux has features that are better than the official Unix."

    (further idiocy and evasions snipped)

    Read it, folks. There's not one shred of support for -highhorse's
    claim of "hardcore Linux advocates" "rejecting" "insufficiently pure"
    Open Source projects.

    Instead, in classic -highhorse fashion, he evades and blows it up into
    an unwieldy mess that no normal person can respond to it all.

    -highhorse does have a nice collection of filthy, lying, idiot asshole
    trolls getting cussed-out, I will say.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From chrisv@21:1/5 to Lawrence D'Oliveiro on Thu Nov 21 18:57:14 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    Lawrence D'Oliveiro wrote:

    -highhorse wrote:

    I did say "perhaps" ...

    Ah, like the way a certain political leader says some people say when >spouting his rubbish without being more specific about where the claim is >actually coming from. Pure insinuation on your part, in other words.

    Pure trolling, on his part. -highhorse can take the most reasonable
    behavior, and attack it as something "bad".

    --
    "Even RedHat only stands behind their product while you're actively
    paying for support." - lying asshole "-hh", whining that Free
    software doesn't come with free support.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From -hh@21:1/5 to chrisv on Thu Nov 21 22:53:00 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On 11/21/24 7:52 PM, chrisv wrote:
    -hh wrote:
    Lawrence D'Oliveiro wrote:
    -hh wrote:
    Lawrence D'Oliveiro wrote:
    -hh wrote:

    Now perhaps the hardcore Linux advocates rejected these as not being >>>>>> sufficiently "pure" Open Source projects ...

    You just made that up, didn’t you?

    Unfortunately, no. COLA has had a history ...

    So you should be able to back up your claim, that “hardcore Linux
    advocates rejected” those distros.

    I did say "perhaps", as I've not read every last COLA thread and have
    perfect retention on all of them. But checking just the COLA archives
    on Google where one of these certified Unix versions were mentioned by
    name, I did find the following:

    "...Linux has features that are better than the official Unix."

    (further idiocy and evasions snipped)

    Read it, folks. There's not one shred of support for -highhorse's
    claim of "hardcore Linux advocates" "rejecting" "insufficiently pure"
    Open Source projects.

    Yes, they should read everything that you snipped.

    Especially the part of how posters have said crude things about Windows
    users ... which includes their own Windows-using daughter.


    -hh

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From -hh@21:1/5 to Lawrence D'Oliveiro on Thu Nov 21 22:43:48 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On 11/21/24 5:02 PM, Lawrence D'Oliveiro wrote:
    On Thu, 21 Nov 2024 06:56:47 -0500, -hh wrote:

    On 11/20/24 7:50 PM, Lawrence D'Oliveiro wrote:

    On Wed, 20 Nov 2024 19:13:47 -0500, -hh wrote:

    On 11/20/24 6:45 PM, Lawrence D'Oliveiro wrote:

    On Wed, 20 Nov 2024 07:40:48 -0500, -hh wrote:

    Now perhaps the hardcore Linux advocates rejected these as not being >>>>>> sufficiently "pure" Open Source projects ...

    You just made that up, didn’t you?

    Unfortunately, no. COLA has had a history ...

    So you should be able to back up your claim, that “hardcore Linux
    advocates rejected” those distros.

    I did say "perhaps" ...

    Ah, like the way a certain political leader says “some people say” when spouting his rubbish without being more specific about where the claim is actually coming from.

    Except for how you snipped the substantiating specifics.


    "...Linux has features that are better than the official Unix."

    YMMV on the degree to which this is arrogant/elitist, while it misses
    the point of having an independent certification.

    It’s simple fact, as borne out by the popularity of Linux itself.

    That quote was from Feeb. Plus a claim of more features is based on
    what COLA has derided Microsoft for, namely "bloatware".

    -hh

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Wolfgang Agnes@21:1/5 to Lawrence D'Oliveiro on Fri Nov 22 17:17:08 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    Lawrence D'Oliveiro <ldo@nz.invalid> writes:

    On Wed, 20 Nov 2024 21:57:30 -0300, Wolfgang Agnes wrote:

    Lawrence D'Oliveiro <ldo@nz.invalid> writes:

    On Tue, 19 Nov 2024 22:19:52 -0300, Wolfgang Agnes wrote:

    Frank Slootweg <this@ddress.is.invalid> writes:

    In any case, if you don't uppercase it ('UNIX'), you won't be
    infringing on the trademark.

    I wouldn't be so sure. Huawei lost against 3M for using the term 3N.
    Courts decided it was similar enough.

    So use 'Unix', or 'unix' if you must, but '*nix' is unneeded,
    meaningless and a bit silly.

    Totally silly.

    Strange, isn’t it: above you point out how dangerous trademark
    infringement can be, and here you are saying that trying to avoid it
    is “totally silly”.

    One tries to use ``3N'' and get sued by 3M. But
    that's very silly. It's silliness that comes from legislation.

    But above you were describing as “silly” not the legislation, but measures
    to avoid being caught by it. Surely self-preservation is an entirely
    rational response.

    The legislation is indeed silly. Preserving oneself is not silly, but
    it's silly to preserve oneself when there's no danger. Nobody is going
    to sue us because we're writing UNIX over here, for example. That's not
    really how it works. So in such circumstances, it's silly to worry
    about that.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Lawrence D'Oliveiro@21:1/5 to Wolfgang Agnes on Sat Nov 23 01:02:31 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On Fri, 22 Nov 2024 17:17:08 -0300, Wolfgang Agnes wrote:

    Lawrence D'Oliveiro <ldo@nz.invalid> writes:

    But above you were describing as “silly” not the legislation, but measures
    to avoid being caught by it. Surely self-preservation is an entirely
    rational response.

    The legislation is indeed silly. Preserving oneself is not silly, but
    it's silly to preserve oneself when there's no danger.

    You hope.

    Nobody is going to sue us because we're writing UNIX over here, for
    example.

    That might be considered “legal advice” ...

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Wolfgang Agnes@21:1/5 to Lawrence D'Oliveiro on Sat Nov 23 08:54:52 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    Lawrence D'Oliveiro <ldo@nz.invalid> writes:

    On Fri, 22 Nov 2024 17:17:08 -0300, Wolfgang Agnes wrote:

    Lawrence D'Oliveiro <ldo@nz.invalid> writes:

    But above you were describing as “silly” not the legislation, but
    measures
    to avoid being caught by it. Surely self-preservation is an entirely
    rational response.

    The legislation is indeed silly. Preserving oneself is not silly, but
    it's silly to preserve oneself when there's no danger.

    You hope.

    Nobody is going to sue us because we're writing UNIX over here, for
    example.

    That might be considered “legal advice” ...

    Another totally silly thing---to have to state things such as IANAL and
    other silly things. The typical USENET article is just someone's
    opinion, which makes up the rule rather than the exception.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Frank Slootweg@21:1/5 to Wolfgang Agnes on Sat Nov 23 14:02:36 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    Wolfgang Agnes <wagnes@example.com> wrote:
    Lawrence D'Oliveiro <ldo@nz.invalid> writes:

    On Wed, 20 Nov 2024 21:57:30 -0300, Wolfgang Agnes wrote:

    Lawrence D'Oliveiro <ldo@nz.invalid> writes:

    On Tue, 19 Nov 2024 22:19:52 -0300, Wolfgang Agnes wrote:

    Frank Slootweg <this@ddress.is.invalid> writes:

    In any case, if you don't uppercase it ('UNIX'), you won't be
    infringing on the trademark.

    I wouldn't be so sure. Huawei lost against 3M for using the term 3N. >>>> Courts decided it was similar enough.

    So use 'Unix', or 'unix' if you must, but '*nix' is unneeded,
    meaningless and a bit silly.

    Totally silly.

    Strange, isn?t it: above you point out how dangerous trademark
    infringement can be, and here you are saying that trying to avoid it
    is ?totally silly?.

    One tries to use ``3N'' and get sued by 3M. But
    that's very silly. It's silliness that comes from legislation.

    But above you were describing as ?silly? not the legislation, but measures to avoid being caught by it. Surely self-preservation is an entirely rational response.

    The legislation is indeed silly. Preserving oneself is not silly, but
    it's silly to preserve oneself when there's no danger. Nobody is going
    to sue us because we're writing UNIX over here, for example. That's not really how it works. So in such circumstances, it's silly to worry
    about that.

    But the issue isn't even about writing 'UNIX', but about Lawrence
    using the unneeded, meaningless and somewhat silly '*nix', instead of
    the recommended common usage 'Unix' or even 'unix' if he must.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Lawrence D'Oliveiro@21:1/5 to Frank Slootweg on Sat Nov 23 22:22:41 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On 23 Nov 2024 14:02:36 GMT, Frank Slootweg wrote:

    But the issue isn't even about writing 'UNIX', but about Lawrence
    using the unneeded, meaningless and somewhat silly '*nix', instead of
    the recommended common usage 'Unix' or even 'unix' if he must.

    “*nix” is the recommended usage. Also it avoids confusion with systems
    like Apple, which are official “Unix” trademark licensees, but don’t really work the way we expect.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Lawrence D'Oliveiro@21:1/5 to Wolfgang Agnes on Sat Nov 23 22:21:34 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On Sat, 23 Nov 2024 08:54:52 -0300, Wolfgang Agnes wrote:

    Lawrence D'Oliveiro <ldo@nz.invalid> writes:

    On Fri, 22 Nov 2024 17:17:08 -0300, Wolfgang Agnes wrote:

    Nobody is going to sue us because we're writing UNIX over here, for
    example.

    That might be considered “legal advice” ...

    Another totally silly thing---to have to state things such as IANAL and
    other silly things.

    Again, it’s just “cover your arse” --- it’s common sense.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From chrisv@21:1/5 to -hh on Sat Nov 23 18:56:44 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    -hh wrote:

    chrisv wrote:

    Read it, folks. There's not one shred of support for -highhorse's
    claim of "hardcore Linux advocates" "rejecting" "insufficiently pure"
    Open Source projects.

    (snipped, unread)

    Of course, there is nothing wrong with an individual choosing, or
    rejecting, or advocating-for, a product for any reason that they think important. Including "purity".

    But snits, like -highhorse, will twist such opinions into something
    "bad", something "anti choice".

    I'll use this analogy again: There is nothing wrong with saying that
    you should not vote for Donald Trump. It only beomes bad when you say
    that people should not be allowed to vote for Donald Trump.

    No real FOSS advocate seeks to deny anyone the choice of "less pure" open-source products.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From chrisv@21:1/5 to chrisv on Sat Nov 23 19:13:09 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    chrisv wrote:

    -hh wrote:

    chrisv wrote:

    Read it, folks. There's not one shred of support for -highhorse's
    claim of "hardcore Linux advocates" "rejecting" "insufficiently pure" >>>Open Source projects.

    (snipped, unread)

    Of course, there is nothing wrong with an individual choosing, or
    rejecting, or advocating-for, a product for any reason that they think >important. Including "purity".

    But snits, like -highhorse, will twist such opinions into something
    "bad", something "anti choice".

    I'll use this analogy again: There is nothing wrong with saying that
    you should not vote for Donald Trump. It only beomes bad when you say
    that people should not be allowed to vote for Donald Trump.

    No real FOSS advocate seeks to deny anyone the choice of "less pure" >open-source products.

    I should have mentioned that, without even reading it, I know (yes, I
    am that good) that -highhorse posted some crap showing cola advocates personally "rejecting" "insufficiently pure" open-source projects.

    What I took exception to is -highhorse's snotty, dishonest attacking.
    He asserts that there's something hypocritical, something "odd", that
    "hardcore Linux advocates" don't also reject Android phones.

    How many viable choices in phone OS's do we have? Is -highhorse's
    attack fair, or is he a fscking *asshole*?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From -hh@21:1/5 to chrisv on Sat Nov 23 22:15:26 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On 11/23/24 8:13 PM, chrisv wrote:
    chrisv wrote:

    {doublepost whining ... snipped!}

    <https://en.wiktionary.org/wiki/a_hit_dog_will_holler>

    -hh

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Frank Slootweg@21:1/5 to Lawrence D'Oliveiro on Sun Nov 24 10:57:11 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    Lawrence D'Oliveiro <ldo@nz.invalid> wrote:
    On 23 Nov 2024 14:02:36 GMT, Frank Slootweg wrote:

    But the issue isn't even about writing 'UNIX', but about Lawrence
    using the unneeded, meaningless and somewhat silly '*nix', instead of
    the recommended common usage 'Unix' or even 'unix' if he must.

    ?*nix? is the recommended usage. Also it avoids confusion with systems
    like Apple, which are official ?Unix? trademark licensees, but don?t
    really work the way we expect.

    Apparently '*nix' is "the recommended usage" in your world, but not in
    the real world. And there's no such thing as an "official 'Unix'
    trademark licensee". The wording should be "official UNIX licensee", i.e.
    all uppercase and without quotes.

    But all that has already been explained, including the Wikipedia
    reference. If you think you know better than the Wikipedia page, then
    try to get it 'corrected'. And good luck with convincing The Open Group
    that they've got it all wrong.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Lawrence D'Oliveiro@21:1/5 to Frank Slootweg on Thu Nov 28 23:35:05 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On 24 Nov 2024 10:57:11 GMT, Frank Slootweg wrote:

    ... there's no such thing as an "official 'Unix'
    trademark licensee". The wording should be "official UNIX licensee", i.e.
    all uppercase and without quotes.

    What are they licensing then, if not the trademark?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Frank Slootweg@21:1/5 to Lawrence D'Oliveiro on Fri Nov 29 11:21:42 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    Lawrence D'Oliveiro <ldo@nz.invalid> wrote:
    On 24 Nov 2024 10:57:11 GMT, Frank Slootweg wrote:

    ... there's no such thing as an "official 'Unix'
    trademark licensee". The wording should be "official UNIX licensee", i.e. all uppercase and without quotes.

    What are they licensing then, if not the trademark?

    ['Convenient' snipping noted.]

    Sigh! Of course they are licensing the trademark, but the trademark is 'UNIX', not 'Unix'. and when used in a sentence, the name 'UNIX'
    obviously should have no quotes around it. So "official UNIX licensee".

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Lawrence D'Oliveiro@21:1/5 to Frank Slootweg on Sun Dec 1 07:18:18 2024
    XPost: comp.os.linux.advocacy, alt.comp.os.windows-11

    On 29 Nov 2024 11:21:42 GMT, Frank Slootweg wrote:

    Lawrence D'Oliveiro <ldo@nz.invalid> wrote:

    On 24 Nov 2024 10:57:11 GMT, Frank Slootweg wrote:

    ... there's no such thing as an "official 'Unix'
    trademark licensee". The wording should be "official UNIX licensee"
    ...

    What are they licensing then, if not the trademark?

    Sigh! Of course they are licensing the trademark, but the trademark is 'UNIX', not 'Unix'.

    Doesn’t matter which it is, the other one would still be considered close enough to cause confusion.

    Otherwise, we would not be having this discussion, would we?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)