LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > General
User Name
Password
General This forum is for non-technical general discussion which can include both Linux and non-Linux topics. Have fun!

Notices


Reply
  Search this Thread
Old 07-02-2008, 05:17 AM   #31
crashmeister
Senior Member
 
Registered: Feb 2002
Distribution: t2 - trying to anyway
Posts: 2,541

Rep: Reputation: 47

Quote:
Originally Posted by Berticus View Post
Just read a Pirate's Dilema.
Is that on Piratebay?

On topic:

Quoting Sun UK's chief open-source officer, Simon Phipps:

After all, Windows is built on open-source software. If you search through the binary of Windows for the phrase "Regents of Berkley University", you'll find that loads of their code is open source that they got from the BSD license.
 
Old 07-02-2008, 08:05 AM   #32
Berticus
Member
 
Registered: Jul 2005
Distribution: Arch
Posts: 159

Rep: Reputation: 31
Really? Loads? I thought it was only a networking thing that they copied years ago, but ditched in XP or Vista...
 
Old 07-02-2008, 09:17 AM   #33
crashmeister
Senior Member
 
Registered: Feb 2002
Distribution: t2 - trying to anyway
Posts: 2,541

Rep: Reputation: 47
Dunno - is a quote from a recent interview.
 
Old 07-02-2008, 12:42 PM   #34
ErV
Senior Member
 
Registered: Mar 2007
Location: Russia
Distribution: Slackware 12.2
Posts: 1,202
Blog Entries: 3

Rep: Reputation: 62
Quote:
Originally Posted by crashmeister View Post
Dunno - is a quote from a recent interview.
Just checked it (in both ansi and unicode). In WinXP in C:\windows there is only one file that contains word "berkley" and that's nls302en.lex (no, there is nothing about "reagents"). words about "berkley reagents" are part of BSD license, which is often written within comment block at the beginning of source files. Because it's within comment, there is no way it'll make it to binary after compilation. So even if half of windows system uses BSD-licensed components, it won't be possible to find that out by searching for word "berkley".
 
Old 07-03-2008, 04:46 AM   #35
pinniped
Senior Member
 
Registered: May 2008
Location: planet earth
Distribution: Debian
Posts: 1,732

Rep: Reputation: 50
@ErV:

That's "regents", not "reagents" - reagents are chemicals that you plan to react with something. And that's "Berkley", not "Berkly".

The quote is strange though - the "open source" code in WinDuhs is definitely a minority if you can find any left. Of course WinDuhs had to conform somewhat to what the rest of the world expected of BSD sockets and to some extent, the POSIX specification. But I'd be surprised if MS didn't almost completely rewrite the network code. I remember looking at the 'sockets 2' code a long time ago and I only saw little bits and pieces of the original BSD code.
 
Old 07-03-2008, 05:50 AM   #36
crashmeister
Senior Member
 
Registered: Feb 2002
Distribution: t2 - trying to anyway
Posts: 2,541

Rep: Reputation: 47
It is a quote from 'Suns open-source officer'.I'd expect some spin there.What he didn't say was what version of windows he was refering to.
These days it is more important to read what isn't there then the actual statements.

I didn't expect anybody to go out and search for code in actual windows versions as this is obviously a propaganda statement on Sun's part.
For that reason I did include who said it and didn't link the article.
 
Old 07-03-2008, 07:51 AM   #37
ErV
Senior Member
 
Registered: Mar 2007
Location: Russia
Distribution: Slackware 12.2
Posts: 1,202
Blog Entries: 3

Rep: Reputation: 62
Quote:
Originally Posted by pinniped View Post
@ErV:

That's "regents", not "reagents" - reagents are chemicals that you plan to react with something. And that's "Berkley", not "Berkly".
I admit "reagents" was a typo, but where did you see "Berkly" in my post?

Quote:
Originally Posted by pinniped View Post
@ErV:
The quote is strange though - the "open source" code in WinDuhs is definitely a minority if you can find any left.
I suspect that they are using libpng and libjpeg in certain D3DX functions (D3DXCreateTextureFromFile, etc.), maybe in some other places, but I have no proof for that.
 
Old 07-04-2008, 01:39 AM   #38
pinniped
Senior Member
 
Registered: May 2008
Location: planet earth
Distribution: Debian
Posts: 1,732

Rep: Reputation: 50
Quote:
Originally Posted by ErV View Post
I admit "reagents" was a typo, but where did you see "Berkly" in my post?


I suspect that they are using libpng and libjpeg in certain D3DX functions (D3DXCreateTextureFromFile, etc.), maybe in some other places, but I have no proof for that.
I must be going blind; I could swear I saw "Berkly". Then again maybe I'm just going senile and forgetting some letters.
 
Old 07-11-2008, 04:46 AM   #39
Mega Man X
LQ Guru
 
Registered: Apr 2003
Location: ~
Distribution: Ubuntu, FreeBSD, Solaris, DSL
Posts: 5,339

Rep: Reputation: 65
Quote:
Originally Posted by komodo View Post
For one I would like to see a clear separation (sp?) of user-space and kernel space. AFAIUI, XP and all other windows versions, have e.g. the windowing system hardcoded into the kernel, rather than letting it live in user-space like X. (so a problem in de windowing system may bring the system down, rather than only the windowing system). <- actually, this is most important to me, the windows kernel does too many things in kernel space, that should be left to user space.

I would introduce a user-space file system (by default).

I would rewrite much of the code to be in c for more flexibility and portability. Also, c would allow a greater proportion of the community to actually read and understand the zillions of lines in windows.

Well, maybe I'll think of something else

Of course, when I say 'I would' I don't mean 'I personally would', but rather it means 'Someone way smarter than I could try and implement that'.
Well, I can't say for sure if the windowing system is integrated or not in Windows, but it appears to be. Now how exactly would separating the X from the kernel be a good thing? (For Desktop use). If anything, that is a bad thing.

Linux GUI was, and still feels, sluggish at best. I will only use Gnome and KDE as examples because they are the most used ones and are the ones the majority of new users will stick with. Moving a simple Window in Gnome does not feel nearly as responsive than any version of Windows. Why? Because they are not integrated to the kernel. In fact, both Gnome and KDE are made to be crossplatform.

When you plug a device in Windows, it loads the drivers, it looks for drivers and a balloon tells me that the device is ready to use. I plug a device in Linux and gnome does not do a thing. If I check the logs, Linux almost always identifies an USB device greatly. It might even work without loading modules, but Gnome and KDE are just there, doing nothing, because they are not listening to the kernel messages.

So yes, separating things in Windows would be great for a server, saving resources, etc. For a Desktop user, I think that would make Windows as broken as Linux is for the Desktop.
 
Old 07-11-2008, 08:49 AM   #40
SlowCoder
Senior Member
 
Registered: Oct 2004
Location: Southeast, U.S.A.
Distribution: Debian based
Posts: 1,250

Rep: Reputation: 164Reputation: 164
Quote:
Originally Posted by Mega Man X View Post
When you plug a device in Windows, it loads the drivers, it looks for drivers and a balloon tells me that the device is ready to use. I plug a device in Linux and gnome does not do a thing. If I check the logs, Linux almost always identifies an USB device greatly. It might even work without loading modules, but Gnome and KDE are just there, doing nothing, because they are not listening to the kernel messages.
When I plug my USB memory in Gnome pops up a nice icon, and a window showing me the files. Fedora 7. Ubuntu, too.

I think it's easy to see that you're a Windows proponent. That's fine with me. You don't seem to like Linux much these days. To each his own. But I've also noticed you have been throwing some nonsensical stuff out there too, appearing to me to be trash talking Linux, or to perhaps start flame wars. E.g. the paragraph I quoted above. What's the deal?
 
Old 07-11-2008, 09:14 AM   #41
XavierP
Moderator
 
Registered: Nov 2002
Location: Kent, England
Distribution: Debian Testing
Posts: 19,192
Blog Entries: 4

Rep: Reputation: 475Reputation: 475Reputation: 475Reputation: 475Reputation: 475
KDE also throws up a window asking what I want to do - mount, open, play, etc etc in the exact same way that Windows does. And even if it didn't, I'm plugging it in for a reason - I want to read, play, print or whatever with it. So I will plug in the device and attempt to use it. In Windows, if I'm lucky that will happen, otherwise I have to load or reload drivers or plug/unplug the device and so on.
 
Old 07-11-2008, 09:18 AM   #42
XavierP
Moderator
 
Registered: Nov 2002
Location: Kent, England
Distribution: Debian Testing
Posts: 19,192
Blog Entries: 4

Rep: Reputation: 475Reputation: 475Reputation: 475Reputation: 475Reputation: 475
Quote:
Originally Posted by Mega Man X View Post
So yes, separating things in Windows would be great for a server, saving resources, etc. For a Desktop user, I think that would make Windows as broken as Linux is for the Desktop.
This is an argument I recall from when I started using Linux. The great thing about Linux is that when X falls over (that should be "if" though) all you lose is your desktop. You get thrown to a command line and can diagnose the problem. In Windows, when X fails, it takes down the whole box. This is why, when IE fails it knocks out your desktop. All apps on Windows are bound to each other to make them faster - increasing the risk of losing everything after a minor failure. In Linux the apps are not bound to each other, sacrificing a small amount of speed for more security and less danger of trashing your system.

Mega Man X - for someone who has been around for a while, that was the worst bit of FUD I have ever seen.
 
Old 07-11-2008, 10:22 AM   #43
Mega Man X
LQ Guru
 
Registered: Apr 2003
Location: ~
Distribution: Ubuntu, FreeBSD, Solaris, DSL
Posts: 5,339

Rep: Reputation: 65
Come one guys, don't take me too seriously on the general section. After all, the General is basically useless. All we have here is flamewar, people believing that killing Bill Gates is fine, discussing American politics even though this is an International forum. Heck, some even believe that the hippie Stallman makes a good point sometimes. To do not mention that how many drop by just to recommend Slackware...
 
Old 07-11-2008, 10:41 AM   #44
wizardhat
Member
 
Registered: Apr 2008
Location: Melbourne, Australia
Distribution: Slackware 12.2
Posts: 52
Blog Entries: 1

Rep: Reputation: 15
Quote:
Originally Posted by Mega Man X View Post
To do not mention that how many drop by just to recommend Slackware...
Slackware cured my haemmorhoids.

Laugh if you must but I CAN RIDE A BIKE AGAIN!
 
Old 07-11-2008, 10:53 AM   #45
trickykid
LQ Guru
 
Registered: Jan 2001
Posts: 24,149

Rep: Reputation: 269Reputation: 269Reputation: 269
Quote:
Originally Posted by Mega Man X View Post
Come one guys, don't take me too seriously on the general section. After all, the General is basically useless.
I feel the same way and got castrated at times by sensitive members. Like unspawn said once, General is the "cesspool" of this site. No one should take anything seriously in this forum but for some reason they still do.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Is Gates best option to OpenSource Windows? snares General 15 08-25-2007 02:10 PM
Solaris going OpenSource Megamieuwsel General 1 11-16-2004 10:11 AM
how open is opensource? roofy Linux - General 6 05-20-2003 10:23 AM
Blender3d has become opensource! aliensub Linux - Software 8 10-19-2002 02:45 AM

LinuxQuestions.org > Forums > Non-*NIX Forums > General

All times are GMT -5. The time now is 04:28 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration