Slashdot Mirror


Back To SCO

wampl3r writes " Eric Raymond and Bruce Perens deliver a great response to SCO's recent Letter to the Open Source Community. Their response does a good job of presenting many of the finer points we have been arguing about around here, but it's nice to see them in such a formal, well-thought-out letter." Munchola adds "Meanwhile, ComputerWire, from where McBride misquoted Perens in the first place, sets the record straight: 'In his statement McBride appears to have attributed a ComputerWire paraphrase as a quote from Perens.'" stefan points to this response to McBride's letter from Kevin Bedell, LinuxWorld Magazine's Editor. Below, find one reader's idea about the "stolen lines" SCO claims are in the Linux kernel, and one expert's claim that SCO might not know some of its own source code very well.

VikingBrad writes "The Sydney Morning Herald has an article on Dr Warwick Toomey of The Unix Heritage Society claiming that SCO may not know the origin of code in System V, including claims that there is a lot of BSD software in Sys V."

Alex writes "I wondered where the 100k+ lines of copied code in the linux kernel would come from in comparison to the SCO Unixware stuff. Then a thought popped up in my head: what if they just compared linewise? All those empty lines in the code would have the same content. But how many empty lines are in the Linux Kernel Code? This small shell script counts them for you:

emptylines=0; function parse_dir () { for file in $1/*; do if [ -d "$file" ]; then parse_dir $file; else while read line; do if [ "$line" = "" ]; then emptylines=$[$emptylines+1]; echo $emptylines; fi; done

Kernel 2.4.22, yet cleaned of the code which SCO claimed was stolen, has still 733140 empty lines, probably copied and pasted by the bad, bad kernel developers from the good, good SCO guys..."

6 of 560 comments (clear)

  1. Let's make this a press release! by mflaster · · Score: 5, Interesting

    Is anyone or their linux-related company a member of any wire associations? Some anti-FUD articles really need to be filed as a press release, specifically mentioning SCOX.

    Right now, if you go to Yahoo, and search for news on SCOX, you only find their press releases. We need to get some of our opinions out there so they'll show as news on SCO!

    Can anyone help? Doesn't this seem like an important thing to do??

    Mike

  2. Doing their work for them by j_dot_bomb · · Score: 5, Interesting

    I wonder if SCO intends all this publicity and open source community reply to do their work for them. Meaning: They dont know things like the lineage of certain code, so some of what they say is to get people to dig for them. Think of how much it would cost to figure some of these things out if you were paying people to do so.

  3. Indemnity by chmilar · · Score: 5, Interesting
    I think the paragraph on "indemnity" is interesting.

    SCO should offer, to those who purchase their license, this guarantee of indemnity:

    SCO guarantees that all IP associated with the SCO license is the sole, undisputed property of SCO. Should said property be shown to be actual property of a third party, SCO will pay all legal fees, rememdies and any other fees associated with any dispute arising from the third party.

    Thus, SCO would show that they are certain they haven't infringed on GPL'd code (or any other party's code).

    If SCO is unwilling to make such a guarantee of indemnity, it shows that they don't believe their own case.

    --
    Reading Slashdot is ruining my spelling and grammar.
  4. Re:SCO is not the problem. Mormonism is? by Anonymous Coward · · Score: 5, Interesting
    Every Mormon I know (and I know a few) who is in the Tech business is disgusted by Darl McBride and his dishonest shenanigans. Connecting Mormonism with his actions is erroneous.

    "What comes of litigation? Poverty and degradation to any community that will encourage it. Will it build cities, open farms, build railroads, erect telegraph lines and improve a country? It will not; but it will bring any community to ruin." -Brigham Young, JD 11:259.

  5. Torvalds to McBride: Please grow up. by Anonymous Coward · · Score: 5, Interesting

    The following has been cut and pasted from the InfoWorld article "Torvalds to SCO: Negotiate What?"

    --- cut here ---

    Open letter to Darl McBride -- please grow up.

    Dear Darl,

    Thank you so much for your letter.

    We are happy that you agree that customers need to know that Open Source is legal and stable, and we heartily agree with that sentence of your letter. The others don't seem to make as much sense, but we find the dialogue refreshing.

    However, we have to sadly decline taking business model advice from a company that seems to have squandered all its money (that it made off a Linux IPO, I might add, since there's a nice bit of irony there), and now seems to play the US legal system as a lottery. We in the Open Source group continue to believe in technology as a way of driving customer interest and demand.

    Also, we find your references to a negotiating table somewhat confusing, since there doesn't seem to be anything to negotiate about. SCO has yet to show any infringing IP in the Open Source domain, but we wait with bated breath for when you will actually care to inform us about what you are blathering about.

    All of our source code is out in the open, and we welcome you point to any particular piece you might disagree with.

    Until then, please accept our gratitude for your submission,

    Yours truly,

    Linus Torvalds

  6. Did SCO inherit AT&T's copyright on blank line by jc42 · · Score: 5, Interesting

    Back in the 1980's, I was just one of many people who noticed that AT&T claimed to have a copyright on blank lines. You can see one of these claims at http://web.42.net/true.html. Google for /bin/true and you'll find more.

    This is the good old "true" program, which on Sys/V was an empty shell script. It works; it does nothing, and then since there were no errors, it exist with a zero status. Some drone at AT&T obviosly wrote a script to run through all their scripts and add an AT&T copyright notice. This also added two blank lines (only one in some later versions), leading to the observation that AT&T really was claiming to own the rights to blank lines.

    One fun thing is that their copyrighted version of /bin/true went through many versions, all of which contained only blank lines and a copyright notice.

    Another fun thing that I did was to post the code for /bin/true on several newsgroups as responses to discussions, pointing out that I had posted a copyrighted AT&T program in its entirety, and challenging AT&T to prosecute me. For some mysterious reason, I never heard from them.

    There was also an AT&T copyright notice in /bin/false, which contained only the command "exit 255", so if you do that in any script, you are also inviolation of AT&T/SCO's claimed copyright.

    Anyway, it does seem that the SCO gang considers /bin/true to be part of the IP that they inherited from AT&T. This is presumably the basis of the majority of their claim that there are a million lines of stolen SCO code in linux. When you add in all the lines that contain only /*, */ and //, you can easily get to a million lines.

    It could be fun if they actually made the mistake of pressing this claim in court.

    --
    Those who do study history are doomed to stand helplessly by while everyone else repeats it.