Slashdot Mirror


BSDCon '03 Nearly Here (OpenBSD 3.4, Too)

robotdreams writes "Once again BSDCon showcases the BSD community's long history of innovative research, open exchange of ideas, and collaborative work. Tutorials this year feature: an intensive code walkthrough of the new FreeBSD 5.x release, debugging kernel problems on live systems, advanced BSD system and network security, and FreeBSD's new GEOM disk I/O subsystem." Since BSDCon runs from September 8th through 12th, you're probably either already going or out of luck ;) On the other hand, you're still early for OpenBSD 3.4, now taking pre-orders -- details below.

An anonymous reader writes "Pre-orders for the OpenBSD project's latest release, 3.4, are now being taken. This release will ship around November 1st. Significant enhancements have been made in this release, including i386 switch to ELF executable format, further W^X improvements for i386, ld.so on ELF platforms now loads libraries in a random order for greater resistance to attacks, inclusion of a static bounds checker to the compiler for basic checks on functions which accept buffers and sizes, strcpy/strcat function audit to replace with safer strlcpy/strlcat, ProPolice stack protection in the kernel, further manual page cleanups, large number of bug fixes and optimizations to the packet filter (PF) including packet tagging, stateful TCP normalization, passive OS detection, SYN proxy, and adaptive state timeouts, and many other improvements to the rest of the system.

Order a CD from the OpenBSD store. Ordering a CD helps support the project, as a bonus you get cool stickers, artwork, and an audio track!"

The same reader sent links to more information on this release, including new features, and the changelog between 3.3 and 3.4.

117 of 332 comments (clear)

  1. The important question by Anonymous Coward · · Score: 2, Funny

    Will that hot FreeBSD devil babe be there?!

    1. Re:The important question by Anonymous Coward · · Score: 1

      Will that hot FreeBSD devil babe be there?!

      Ceren? I don't know (but I'm also curious). I don't think she was at the last BSDCon.

      Oh, and it's DAEMON, not devil.

    2. Re:The important question by erikharrison · · Score: 1

      Last I heard, she was retired.

  2. Buzz Buzz Buzz by CEHT · · Score: 2, Interesting

    I can't wait for new OpenBSD music!

    --

    ============
    Mathematics will always come back to hunt you down, in so many ways

    1. Re:Buzz Buzz Buzz by Anonymous Coward · · Score: 1

      Hmm, it is usually the cover-art for me. The cover-art and the music make OpenBSD release CDs (which also come with entertaining stickers and comic artwork inside the CD case) the most collectable in OSS. It is interesting they don't even attempt to dressup their software in formidable-looking packaging; they aren't even trying to win-over business IT departments. The releases are targeted at fandom....

    2. Re:Buzz Buzz Buzz by Anonymous Coward · · Score: 1, Interesting

      Fandom? What are you talking about? Explain.

      First of all: "they aren't even trying to win-over business IT departments."

      Personally I wouldn't want to use an OS that is designed for that reason, why do you think Windows is the way it is today? An OS should be designed to be secure, bug free, well documented, and at the end of the day, just damn well do what it's supposed to do. Nothing else.

      Do you think that the FreeBSD team tries to win over IT departments when they write code? You're kidding, right? Thought you were, had me going there for a second. OpenBSD won over my IT department for a firewall. Why? Not because they tried to for the sake of it, but because it just fucking works and is secure at the same time. (being free, minus CD cost, was a bonus)

      Please give this some more thought.

  3. Technical sessions start Sept 10 by cperciva · · Score: 4, Informative

    The technical sessions start on September 10th, so there's still lots of time to register and book plane tickets.

    Speaking of the 10th... I'd better start working on my slides.

  4. FreeBSD filesystem by Anonymous Coward · · Score: 2, Interesting

    I keep hearing that FreeBSD has a kickass filesystem. Is it more reliable than ext[2|3]? Because frankly, I think Linux filesystem is not all that great. I noticed that when I download a lot of files at the same time, like say with ncftp, netscape and wget all saving data to the same disk at the same time, I invariably end up with serious filesystem issues at the next fsck (and yeah, I use ext3, but you still have to fsck it to fix duplicate/corrupt inodes).
    So anyway, how does FreeBSD's filesystem stack up against Linux?

    1. Re:FreeBSD filesystem by Mr.+Darl+McBride · · Score: 5, Informative
      So anyway, how does FreeBSD's filesystem stack up against Linux?

      FreeBSD chose to address this problem by making fsck capable of running in the background. fsck cooperates with the kernel, checking all files/inodes, and when a file is requested that has not yet been checked, the file operation is held while that check is moved to the front of the unique "moustache ride-ordered" queue.

      Journaling without sacrificing performance and clean algorithms simply isn't possible, and corruption is still possible on a journaling filesystem with out-of-order writes as done by many kinds of cache-enabled drives and controllers, leading to a false sense of security when fsck is bypassed. FreeBSD's approach catches every situation, and guarantees an intact filesystem on every boot.

    2. Re:FreeBSD filesystem by biggerboy · · Score: 1

      Sure. It's BSD -- you can do whatever you want. The BSD license gives you more freedom than GPL.

      (ducking)

    3. Re:FreeBSD filesystem by Mr.+Darl+McBride · · Score: 5, Interesting
      This could be incorporated in Linux, if that's what you mean. It would be a pretty major undertaking, however. This operates with hooks at the filesystem layer and the block device layer both, which means that for every filesystem implementing this, a path needs to be made through it. This would touch not only the INode queue system (which would be good, as the Moustache ride-ordered queue mentioned above is more efficient), but also the Async Network And Loopback probe since this would have to permeate 2.4's proc-based /dev filesystem, and the penal sheath bits of the thread dispatcher in order to allow a filesystem to halt the process requesting fsck-limited activity.

      This could well be a good phd project for someone who wants to work on a thesis project that gives back to the community, and would surely secure them a job at Oracle or one of the other Big Data Storage Management companies.

    4. Re:FreeBSD filesystem by Anonymous Coward · · Score: 1, Funny

      I just lost my Moustache in a shaving accident you insensitive clod

    5. Re:FreeBSD filesystem by Mr.+Darl+McBride · · Score: 1
      I half suspect I'm responding to a troll. This isn't a feature you can simply lift and compile in. This touches many parts of the kernel which don't yet exist on Linux. More details here.

      Hopefully Linux will see this added in 2.8 or similar. Or they may take OpenBSD's tact ofadding commit markers to the journal queues to force syncs before blocks that update metadata. (This is good for reliability, but a little bad for performance, and very bad for potentially losing much more data if power is yanked or machine crashes)

    6. Re:FreeBSD filesystem by caluml · · Score: 2, Informative
      I noticed that when I download a lot of files at the same time, like say with ncftp, netscape and wget all saving data to the same disk at the same time, I invariably end up with serious filesystem issues at the next fsck

      Load of arse. ext2 is both fast and reliable. If you're having lots of disk problems, you should look at your hardware.

    7. Re:FreeBSD filesystem by realdpk · · Score: 4, Interesting

      If ext2 is so reliable, why does it, by default, insist that I must fsck after X days or Y mounts?

    8. Re:FreeBSD filesystem by Frohboy · · Score: 3, Funny

      Sigh... why do people mod things up as "interesting" or "insightful" when they don't understand what they mean? The parent should potentially be modified up as +1 funny.

      Note the following terms used (and think of associated acronyms):

      • Async Network And Loopback probe
      • Big Data Storage Management companies
    9. Re:FreeBSD filesystem by Mr.+Darl+McBride · · Score: 1

      If you're suggesting that as CEO of THE multinational UNIX source licensing company, I don't know about kernels...

    10. Re:FreeBSD filesystem by Anonymous Coward · · Score: 1, Funny

      You missed the moustache ride and penal sheath?

    11. Re:FreeBSD filesystem by evilviper · · Score: 1
      ext2 is both fast and reliable.

      Bull! I've had many-a-time that my Linux system lost power, and an ext2 partition was corrupted. Usually my /home partition.

      I can give you a 100% guarantee that is was not my hardware for two reasons. First of all, I had the exact same experience with a handful of different hard drives. Secondly, I'm still using all of those hard drives, and they haven't lost a single byte of my data, even with numerous power-outages, heavy-duty writing, and uprades from version to version, and even various distros.

      On the other hand, ext3 has (thus far) proven itself to be quite reliable. An occasional FSCK doesn't bother me, as long as the data remains intact.
      --
      Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
    12. Re:FreeBSD filesystem by axxackall · · Score: 1
      Journaling without sacrificing performance and clean algorithms simply isn't possible

      Say it to IBM and SGI. They would like to hear your arguments just to discover that years of research and practice were useless.

      --

      Less is more !
    13. Re:FreeBSD filesystem by Mr.+Darl+McBride · · Score: 3, Informative
      Come back with benchmarks.

      That the FreeBSD filesystem blows the above away is one of its greater strengths. Sun is the only UNIX with a faster filesystem, but at nothing like the price point of course.

      There's a reason why FreeBSD and Solaris are the only platforms where Oracle doesn't require a dedicated partition to create its own database filesystem. FreeBSD and Solaris can hack it. JFS, XFS, Reiser and friends are a fairly distant second.

      Please do your research before posting. This kind of performance isn't about the desktop. Leave the replies to people with real server experience.

    14. Re:FreeBSD filesystem by Brandybuck · · Score: 1

      If ext2fs is both fast and reliable, then why the heck is every Linux distro dumping it for ext3, xfs or reiserfs?

      --
      Don't blame me, I didn't vote for either of them!
    15. Re:FreeBSD filesystem by NuShrike · · Score: 1

      I've set up Oracle 8.1 on both Sun and Redhat Linux systems... On Solaris, it's better to have a dedicated partition with Solaris Disk Suite, or use Veritas VxFS.

      You have no choice on RH Linux so you stick it on a ext3 filesystem in the default install.

      Never got Oracle running in FreeBSD. How did you do it?

      And softupdates 0wns j00!

  5. Soothing break by Mr.+Darl+McBride · · Score: 5, Funny
    We'd like to interrupt this BSD story for a bit of pro-BSD propaganda.

    Tell me you don't want BSD on your laptop now.

    Further persuasion available here. This is definitely +1 Interesting material to any heterosexual male. Mod me down if you are the sendmail author or otherwise uninterested.

    1. Re:Soothing break by pirodude · · Score: 1, Interesting

      THIS is a much better reason. I'm just wondering, does she come in the box or as an upgrade?

    2. Re:Soothing break by pimpinmonk · · Score: 1
      Holy hot tamales! How 'bout a few pickup lines?

      Hey baby, you can do my security audit anytime!

      Hey, wanna go out for a FreeBSD install and a fsck?

      Hey baby, bet you can't install a rootkit in my homedirectory!

      Ouch, ouch, I know... well back to hungover slumber then :-)

    3. Re:Soothing break by Mr.+Darl+McBride · · Score: 2, Funny

      Do you know how hard it is to find an attractive mormon woman in latex?

    4. Re:Soothing break by Anonymous Coward · · Score: 1, Funny

      Tell me you don't want BSD on your laptop now.

      +5, serious; I want BSD on top of my lap. Is that the same thing?

  6. one issue that should be hot on the table by Anonymous Coward · · Score: 3, Interesting

    is ximian compatability.

    Any linux related (binary compat in this case) that wants to move or shake should investigate ximian compatability....

    I for one welcome out new ximian overlords.

    Imagine a schimick GUI interface, FreeBSD underneath, all you'd need is a cheese grater aluminum case......

  7. Soon? by JamesTRexx · · Score: 2, Insightful

    Will soon be widly placed on desktops... I think that's a bit much very premature. So far it's still Windoze, and the hype is Linux, so I think *BSD won't grow that much on the desktop market. Although I would like to see much more articles on using *BSD for the regular consumers. In the meantime *BSD will keep the important parts of the internet running. Oh, and no *BSD is dying comments please. It's getting really old and tired to hear that from close minded people...

    --
    home
    1. Re:Soon? by nyteroot · · Score: 4, Insightful
      I would like to see much more articles on using *BSD for the regular consumers


      Why, god. Why is it that an OS must be usable "on the desktop", "by mom", or by "the regular consumers" in order for it to be considered "good"? First we had Linux, and then they mom-ified Linux. Now you want them to mom-ify *BSD too? Fuck that shit!


      There are server OSs. There are desktop OSs. Any attempt at combination is bound to fail miserably at one or the other and quite likely both.

      --
      Ratio of replies to old sig content : replies to actual post content > 0.5. Sig changed.
    2. Re:Soon? by JamesTRexx · · Score: 1

      I didn't say it isn't good, in fact, I use it for my servers and I hope to get my new workstation soon so I can install the latest FreeBSD on it.
      The trouble is, (most) managers only see what's in the pc magazines so they don't know about the power of *BSD or other OS'.
      I'm all in favor of seperate OS versions for server and for desktop uses. I still curse everytime I see totally useless junk installed on a Windoze server like Imaging, Pinball, etc...
      Hell, if we had our way at work there would have been only a few Windoze boxes left!
      What I want is for more people to realise there's more out there than Windoze and GNU/Linux, or Apple. Let them know so they might try something else for a change and in the process improve on internet and intranet.
      We know the good stuff, now tell the masses.

      --
      home
    3. Re:Soon? by Malcontent · · Score: 1

      I thought MacOSX was the desktop freebsd.

      --

      War is necrophilia.

    4. Re:Soon? by MrHanky · · Score: 2, Insightful
      Why, god. Why is it that an OS must be usable "on the desktop", "by mom", or by "the regular consumers" in order for it to be considered "good"? First we had Linux, and then they mom-ified Linux. Now you want them to mom-ify *BSD too? Fuck that shit!


      I don't know. FreeBSD is a fine desktop/workstation OS. I use it on my laptop. However, it's not quite mummified yet (sorry, but we all have to have a reference to '*BSD is dead', don't we?). I recently installed it on my desktop as well, and wantet GDM as a log in manager. That was painful. After I finally got GDM to start at all, and managed to log in, I noticed I was root. This came as a surprise to me, since I had tried to log in as a user. I didn't bother too much with it, and installed KDM instead. It worked.

      FreeBSD might or might not work for the regular consumer, as a desktop OS. It doesn't rot away from normal use, like Windows does. But the ports and packages aren't necessarily working correctly, might need tweaking and so on. A FreeBSD install that has been set up by a knowledgeable nerd for its intended use should work fine, even for a mummy.
    5. Re:Soon? by JamesTRexx · · Score: 1

      Yeah, except, or maybe it's just me, it doesn't run well on AMD, VIA, and other x86 compatibles like Intel. ;-)

      --
      home
    6. Re:Soon? by evilviper · · Score: 1

      Personally... I won't use it. It isn't just the desktop BSD (FreeBSD/Mach/etc), it's also the closed-source BSD. There are many good reasons people use Open Source software, and they apply to the desktop as well as the base OS, and additional applications.

      I would recomend it over Windows to people that aren't very technical, but that's about it.

      Don't mind me, just ranting here.

      --
      Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
    7. Re:Soon? by evilviper · · Score: 2, Insightful
      There are server OSs. There are desktop OSs. Any attempt at combination is bound to fail miserably at one or the other and quite likely both.

      OpenBSD has been working fine as my desktop for years. I'm using Mozilla on OpenBSD on my Laptop to type this message right now.

      It's really quite easy to install, and you only need the tiniest bit of knowledge to setup X and install applications. I wouldn't say it's for "the regular consumers", but only because those people are horrified if they have to type-in a single word, rather than being able to click the mouse to do everything.

      With a simple shell-script, I could have an OpenBSD CD automatically install itself, configure X, and install and configure basic applications. That's pretty-much what Windows does, but Unixers expect more control and flexibility than that, so nobody bothers to do it.
      --
      Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
    8. Re:Soon? by thedexter · · Score: 1

      After my hard drive's partition table was erased the other day, I installed FreeBSD 5.1. It was a painless install (less the pain that I'd felt to no cause of it) and I'm running it on my desktop right now. I recompiled the kernel to get sound working -- via adding one line, "device pcm", to /sys/src/i386/CUSTOM and recompiling and installing -- and it detected my school's network automatically. I'm doing fine on it.

    9. Re:Soon? by JamesTRexx · · Score: 1

      I think that's the beauty of the BSD's. I haven't yet tried Open or Net, but I can either let FreeBSD handle things automatically for the most part, or download and compile whatever I need.
      It's that kind of choice that would have given Windoze a big extra. At one point those OS will come together, when the BSD's can be as simple to install or use as Windoze, and Windoze can be customized as good as the BSD's. Then we can really make a choice on OS.

      --
      home
    10. Re:Soon? by anthonyrcalgary · · Score: 1

      Darwin (and therefore MacOS X) is based on the Mach kernel. It probably has FreeBSD code, and they make efforts to make it FreeBSD compatable in some respects, but it's only loosely related.

      --
      When someone might yell at me, it has to be OpenBSD.
    11. Re:Soon? by JamesTRexx · · Score: 1

      Hmmm... I don't see how *BSD could be less technical than Linux, presuming that's what you're using.
      *BSD is just as open too, except the license is different, maybe less intruding. It gives everyone a chance to make some money from the software they write/enhance upon.
      I recommend BSD to people so they don't have to go through all the different distributions of GNU/Linux to find the one that might suit them best. With the three big flavors of BSD you make more of a choice between security, portability, and overall usefulness. And, from what I've heard from several sides, the BSD's and their application ports seem to be more structured than the Linux counterparts. But then *BSD and Linux have different approaches to their development and availability of applications.

      --
      home
    12. Re:Soon? by evilviper · · Score: 1

      You misunderstood my post, and are preaching to the converted here. I'm a BSDer, and verymuch recomend it over Linux (you replied to another of my comments here as well, I guess you don't notice usernames too much). What I'm saying, is that I wouldn't recomend Mac OS X to anyone that knows enough to use an open source OS.

      --
      Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
    13. Re:Soon? by JamesTRexx · · Score: 1

      Whoops! Yes, I do notice usernames, but I guess I was too tired to notice you were talking about Mac OS here, heh.
      Doing way too much overtime does that to me...

      --
      home
    14. Re:Soon? by Shanep · · Score: 1

      Darwin (and therefore MacOS X) is based on the Mach kernel.

      Yes.

      It probably has FreeBSD code, and they make efforts to make it FreeBSD compatable in some respects, but it's only loosely related.

      http://www.apple.com/macosx/technologies/darwin.ht ml

      The stability of Mac OS X begins with Darwin, an Open Source, UNIX-based foundation. Darwin is a complete BSD UNIX implementation, derived from the original 4.4BSD-Lite2 Open Source distribution. Darwin uses a monolithic kernel based on FreeBSD 4.4 and the OSF/mk Mach 3, combining BSD's POSIX support with the fine-grained multithreading and real-time performance of Mach.

      It doesn't seem to be very loosely related. In the past it seemed from Apple's site that the FreeBSD component of OSX was mostly in user space with a little in the kernel. But this page seems to suggest FreeBSD plays a much bigger role.

      --
      War crimes, torture, lies, illegal spying... Would someone give Bush a blowjob, already, so he can be impeached?
  8. removing some utilities by deputydink · · Score: 3, Interesting

    Replacement of GNU diff(1), diff3(1), grep(1), egrep(1), fgrep(1), zgrep(1), zegrep(1), zfgrep(1), gzip(1), zcat(1), gunzip(1), gzcat(1), zcmp(1), zmore(1), zdiff(1), zforce(1), gzexe(1), and znew(1) commands with BSD licensed equivalents.

    Anyone know why OpenBSD is removing GNU tools ... other than the licensing issues ?

    1. Re:removing some utilities by Tirel · · Score: 5, Informative

      Theo has said many times before that they will only use GNU tools if there's nothing to replace them with. Infact, the good folks at @openbsd have been looking into replacing gcc with tunDRA (with little success atm) simply because of the GNU licence.

      Basically, GNU licenced programs are only there if really necessary.

    2. Re:removing some utilities by iamdrscience · · Score: 2, Insightful

      Are you serious? Their work can't be "locked down" -- no matter what any corporation does with their code they'll still have all the stuff they wrote available to them and that's what's really important.

    3. Re:removing some utilities by nyteroot · · Score: 4, Insightful
      . . .their work may be locked down and stolen by a corporation [at] any time.


      Ah! Such enlightening insight into the world of open source licensing!
      ..yeah, right.


      My dear sir, you are utterly incorrect. Were some corporation to "lock down" their source code (and I can only assume that by "lock down" you mean to re-release under a proprietary license) they would only be assuring that their version of the software would be utterly disregarded by the entire computer community, because (pay attention here) the free version would not somehow magically cease to exist! So on the one hand you would have the free, latest version. On the other hand, you would have the not-free, catching-up version. Gee, tough choice.


      Now what the BSD license does allow is for some company to take some or all of the source and reuse it elsewhere, under a proprietary license if they so wish, without giving anything back to the Free software community. Whether or not this is necessarily a bad thing is a philosophical matter. However, your assertion that a company could "lock down" the OpenBSD code is completely and utterly incorrect.

      --
      Ratio of replies to old sig content : replies to actual post content > 0.5. Sig changed.
    4. Re:removing some utilities by Anonymous Coward · · Score: 1, Interesting

      Many companies use OpenBSD with their server products. Theo doesn't care and he ends up making enough money. This freedom of how a person may use code is great. Look at the BSD licensed Tk for example. Tk is used in Tcl, Perl, Python, Erlang, KSH, Ada, Scheme, and so on. People have adapted it for many things, and often use it commercially. I'm not sure if you're aware of this or not, but some companies have strict rules that forbid the usage of GPL or LGPL licensed software.

    5. Re:removing some utilities by Anonymous Coward · · Score: 3, Insightful
      making enough money.

      Wrong. There's never enough money.

    6. Re:removing some utilities by Daniel+Phillips · · Score: 2, Interesting

      Anyone know why OpenBSD is removing GNU tools ... other than the licensing issues ?

      While I'm greatful I have these tools for free, and they have served me well, they are not without brain damage. For example, I found to my horror that 'patch' will, under certain circumstances, seek out and change my original files used to generate a patch, instead of what a reasonable reader would think to be the target files (the ones marked with "+++"). This is in fact documented behaviour, presumably thought to be good by some well-meaning but confused soul.

      Here, the argument of continuity apparently outweighs that of sanity. Solution: fork. Maybe with a little competition, the gnu utilities will eventually get updated to get rid of that nasty, destructive behaviour.

      --
      Have you got your LWN subscription yet?
    7. Re:removing some utilities by eht · · Score: 2, Informative

      If anyone really does have a problem with a lockdown of BSD code, they could always take everything and re-release it under the GPL, they're quite welcome to do so as long as the BSD copyright notices remain intact in the source code.

      gplBSD here we come.

    8. Re:removing some utilities by tedu · · Score: 2, Insightful

      licensing, less gpl is always better if possible. we also now maintain the tools entirely ourselves. cleanliness -- they don't even know how to indent properly. :) in the case of grep, it was a major improvement in size of the binary (think floppy installs) because we use libc regexp, not 3 different special edition text searchers made just for grep.

    9. Re:removing some utilities by howardjp · · Score: 2, Informative

      Actually, I was the original author of FreeGrep, and even if you pull out the text searchers in GNU Grep, FreeGrep is still only 1/3 the size (source lines).

      FreeGrep is also FAR more extensible and, in general, better designed. It would not be difficult to add support for grepping bzipped files, other compressed types, or even new types of files. It's also easier to add new options and features, though I do think the entire alphabet has been exhausted.

    10. Re:removing some utilities by kruntiform · · Score: 1

      Now what the BSD license does allow is for some company to take some or all of the source and reuse it elsewhere, under a proprietary license if they so wish, without giving anything back to the Free software community.

      They do give back to the community in many cases anyway. I fixed a bug in some code with a BSD-like license that we use in our proprietary product. It made sense for us to send a patch in to the maintainers because naturally it would have been impractical for us to maintain the software ourselves. So we won and the maintainers won -- it made our product better, and the maintainers got the services of a paid programmer to fix one of their bugs. I imagine this is a fairly common case.

    11. Re:removing some utilities by sketerpot · · Score: 1

      That would probably be worthwhile just for the laughs. You could even submit the story to slashdot!

    12. Re:removing some utilities by cpeterso · · Score: 3, Interesting


      absolutely! The BSD license implicitly encourages companies to share patches "upstream" because it will make future forking easier. The companies that used "forked" BSD software do not want to maintain tons of separate bug fixes in a different codebase. They just want to copy other people's work. That sounds "evil", but it does provide a strong incentive to share a common codebase.

    13. Re:removing some utilities by evilviper · · Score: 3, Informative
      the good folks at @openbsd have been looking into replacing gcc with tunDRA (with little success atm) simply because of the GNU licence.

      First of all, there has been a _small_ bit of interest in Tendra by just a few in the BSD community, but I don't think it's fair to say that they have been looking into replacing GCC.

      Secondly, licensing isn't the only concern. An upgrade from GCC 2.9 to 3 is on the horizon, and at least one of the primary OpenBSD developers has said that they aren't happy with GCC 3. I don't think it's worth getting into detail, but it isn't licensing issues alone.
      --
      Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
    14. Re:removing some utilities by tedu · · Score: 1

      why doesn't redhat ship the same kernel i find on kernel.org?

    15. Re:removing some utilities by infinite1 · · Score: 1

      My company uses FreeBSD and we push any bug fixes etc upstream. It makes sense to contribute back if the changes you make, make the base better. You don't need to maintain it against a changing base.
      I think the BSD license makes sense. Everybody contributes together to make a common platform and you build your own value added services on top. Its in your own best interests to give back to the community to make sure you have a strong and vibrant platform for your business.

    16. Re:removing some utilities by Brandybuck · · Score: 1

      Licensing issues mostly. But licensing issues of a pragmatic, not religious, nature. Unlike Linux, the userlands of the BSDs are an integral part of a single source tree. It's much easier to release the entire OS under a single license. It's to the benefit of the developers and the users. But when some code is not "BSD license compatible", it becomes a pain in the butt.

      --
      Don't blame me, I didn't vote for either of them!
    17. Re:removing some utilities by Geekboy(Wizard) · · Score: 1

      First of all, there has been a _small_ bit of interest in Tendra by just a few in the BSD community, but I don't think it's fair to say that they have been looking into replacing GCC.

      Yes. It is fair to say that. Since they have been investigating it. The biggest issue for OpenBSD to replace GCC, is the other arch support.

      Secondly, licensing isn't the only concern. An upgrade from GCC 2.9 to 3 is on the horizon, and at least one of the primary OpenBSD developers has said that they aren't happy with GCC 3. I don't think it's worth getting into detail, but it isn't licensing issues alone.

      If by "at least one", you mean "the vast majority" dislike GCC, you would be correct. GCC3 is needed for some archs, since they are newer than GCC 2.95.3. GCC is a bloated pig, and needs to be replaced. I don't have the skills to replace it, so I don't bitch about it.

    18. Re:removing some utilities by evilviper · · Score: 1
      Yes. It is fair to say that. Since they have been investigating it. The biggest issue for OpenBSD to replace GCC, is the other arch support.

      I said what I said because, AFAIK, they are not officially doing so. It seems to be just a few individual developers interested in the prospect.

      If by "at least one", you mean "the vast majority" dislike GCC, you would be correct.

      I was refering, specifially, to the upgrade to GCC3. I've only heard one outspoken core developer voice objections about the transition.

      GCC3 is needed for some archs, since they are newer than GCC 2.95.3. GCC is a bloated pig, and needs to be replaced.

      I agree. However, I much prefer not to overstate things myself. It's pure troll-bait here on /.
      --
      Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
    19. Re:removing some utilities by Groganz · · Score: 1

      Bullshit.

      Go read a BSD license and tell me where it says you are allowed to change the license.

  9. OpenBSD 3.4 song? by MADbull · · Score: 2, Interesting

    when will the next song be out? http://openbsd.rug.ac.be/ftp/pub/OpenBSD/songs/ i don't see it there yet...

    1. Re:OpenBSD 3.4 song? by Daniel_Staal · · Score: 2, Informative

      Theo says it will be out in 'about three weeks.'

      --
      'Sensible' is a curse word.
    2. Re:OpenBSD 3.4 song? by ThreeFarthingStone · · Score: 1

      I didn't know about any songs. There seems to be a "songs" directory on each OpenBSD mirror, I've never noticed it before. Perhaps because I'm always inside "3.3".

      Maybe I can download them later.

      --
      ==========
      There are two types of people: those who are in the world, and those who aren't.
    3. Re:OpenBSD 3.4 song? by Mr.+Darl+McBride · · Score: 1
      Mod parent as troll!

      The "about three weeks" he sarcastically quotes is how long Theo had said his wife would be in the hospital from surgical complications just before she passed away early this spring. "About three weeks" is a troll used at every opportunity on the OpenBSD mailing lists, and it's twice caused Theo to have to take time away from the lists.

      This is neither informative nor funny. Come on, people -- whether you like Theo or not, Angie had nothing to do with the BSD project, and this is just cruel.

  10. Don't go! by in7ane · · Score: 3, Funny

    Please don't go to either of these, and if you already are - come back now. I hear there is a good change of dying at either of these two conventions.

  11. Damn! by fi-greenie · · Score: 1

    Sounds too good to be true. I wish there would be similar stuff in Europe. But unluckily, I haven't found anything like this at this side of the Atlantic. Only things that come to my mind are targeted to corporate type of people, who can pay - let's say $1000 and more for a weekend for absolutely "nothing", like Kevin Mitnick's keynote.

    Anyways, you guys have fun!

  12. Re:Oh and... by botzi · · Score: 1
    Oh, and it's DAEMON, not devil.

    Oh, and she actually is not so hot at all, but who cares.....geek-babes are rare enough...;oP

    --
    1. No sig. 2. ???? 3. Profit!!!
  13. Re:Oh and... by Anonymous Coward · · Score: 1, Insightful

    Oh, and she actually is not so hot at all

    Speak for yourself. Some people think she's hot.

  14. Ceren? attending? by santiag0 · · Score: 2, Informative

    I hope so. Dust off the red daemon suit and get packing! For the few who don't know who Ceren is... nevermind, everyone knows who Ceren is!

  15. Re:huh? by realdpk · · Score: 2, Informative

    Make a superior version from the freely available codebase and refuse to release the modifcations back to the Community.

    Inspire competition, the community creates a superior program to the corporation, etc etc. This cycle has been going on for a very, very long time.

    Some of us are OK with sharing, even if it means someone else might make money off of it.

  16. Re:Second deleted post by ThreeFarthingStone · · Score: 1

    Your post is here. It is not deleted. You can find it on the main page just above the capital-letter "article summary" and below the "removing some utilities" comments.

    --
    ==========
    There are two types of people: those who are in the world, and those who aren't.
  17. DragonFly at BSDCon by m.dillon · · Score: 5, Informative
    I will be attending BSDCon this coming week and will be setting up a BoF session on DragonFly as well as doing a quicky summary WIP (Work In Progress) talk. Some extremely interesting work is being done in DragonFly as well as in other BSD's (FreeBSD-5, OpenBSD, and so forth). But the conference is not for the weak of heart. If all you care about is the next K00l music UI don't bother to come {EVIL GRIN}.

    1. Re:DragonFly at BSDCon by Billly+Gates · · Score: 1
      Request?

      Hey Dillion, I was wondering if you had plans to make drivers for cams on Dragonfly? I am sick and tired of those who say FreeBSD is deing, look at driver support, you should try Gentoo, etc. I noticed my usb keyboard had support from FreeBSD long before Linux, contary to what the trolls tell me.

      Just a request since I love my logitech quickcam and hate using Windows all the time. I know kernel work is alot more important to you but I figured its worth a shot to ask.

  18. Re:Why so late? by squiggleslash · · Score: 2, Insightful
    At a guess: a.out works. If it works, why screw with it?

    Remember, with OpenBSD the focus is on correctness and keeping the codebase free of bugs. Making drastic changes in areas where those changes are not absolutely necessary undermines that focus.

    I haven't seen 3.3 or 3.4, but 3.2, which is barely a year old, still runs BIND 4. The current version of BIND is 9. This gives you some idea of how the OpenBSD team things.

    FWIW, other versions of OpenBSD have switched to ELF. I run OpenBSD 3.2 on a SparcStation, and a quick "file /etc/ksh" reveals ksh to be "ELF 32-bit MSB executable, SPARC, version 1". I guess testing the system on obscurer platforms has paved the way for it to be released on the more dominant architecture.

    --
    You are not alone. This is not normal. None of this is normal.
  19. OpenBSD Journal is dying (not a troll) by evilviper · · Score: 4, Interesting

    deadly.org, which was previously the premiere place for OpenBSDers to learn and communicate has now disabled comments completely. Comments, 90% from intelligent and informed users, happened to be the highlight of the site, but now it's all over because the admins are very unhappy about a pair of trolls, and aren't willing to do anything anti-troll. instead, they shut the door completely.

    So, I wonder if anyone here knows of another site that will take-over? BSD-specific, with knowledgable users, and plenty of comments... BSDforums has a large number of factors working against it, keeping it from becomming anything really good, so rule that one out.

    The BSD section here at /. has EVERYTHING working against it... VERY infrequent stories, few commenters, even fewer informed commentors, and nearly as many trolls as BSDers.

    Any suggestions?

    --
    Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
    1. Re:OpenBSD Journal is dying (not a troll) by evilviper · · Score: 1
      when I did I never felt welcome.

      See this article for why not.

      Well, you are pointing to a good example of trolls, and why comments have been disabled.
      --
      Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
    2. Re:OpenBSD Journal is dying (not a troll) by evilviper · · Score: 1
      Any they wonder why the linux users who over number them 1,000 to 1 can't stand them.

      That is a OpenBSD site. There shouldn't be any Linux users there anyhow.

      Besides, I find that comment quite appropriate... GNU version of programs are notorious for being huge, bloated, slow, and sometimes unstable.

      but I don't think I could stomach dealing with many of the people in their community.

      Good. Don't use it. You won't be missed. OpenBSD isn't Linux, nobody in the OpenBSD community is trying to take over the world.
      --
      Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
    3. Re:OpenBSD Journal is dying (not a troll) by anthonyrcalgary · · Score: 1

      OpenBSD zealots, GPL zealots, MacOS X zealots...

      There's a lot of cults to choose from.

      --
      When someone might yell at me, it has to be OpenBSD.
    4. Re:OpenBSD Journal is dying (not a troll) by evilviper · · Score: 1
      Yeah, because no REAL OpenBSD users would ever use Linux for anything.

      Give me a break... I use Linux myself. I was refering to people who use Linux exclusively, since you can't be outnumbered by 1,000:1, or hated by yourself now can you?

      It's going to take a lot more than taking a sentence out of context to troll here.

      Not everyone wants to join the Cult of Theo.

      In fact, I dare say that absolutely nobody wants to join the non-existant cult of Theo. On the other hand, the cult of RMS followers is going strong.
      --
      Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
    5. Re:OpenBSD Journal is dying (not a troll) by evilviper · · Score: 1

      AFAIK, only one post was deleted for trolling, and that was moments before comments were entirely disabled. I don't think that removing one missinformed, infamatory, anti-OpenBSD comment, and leaving the rest of the thousands in place, really counts as censorship.

      Take your trolling to SecurityFocus if you want to be a PaX fanboy.

      --
      Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
    6. Re:OpenBSD Journal is dying (not a troll) by evilviper · · Score: 1
      What does matter is most people don't like BSD users.

      Not true. What you should say, is that most *Linux Users* don't like BSD users, or at least that was true just a few years ago. I think it's safe to say that (to a much lesser extent) the reverse is true. Many Linux users all too often make themselves look like dumb children on BSD mailing lists and websites. You could say that is a definate advantage of BSDers, that they tend to stay on their own ground, while Linuxers seem to stray from their own herds, and make asses of themselves by being all-too-vocal where they don't belong.

      These Linuxers are the exceptions of course, but so are the elitist BSDers, and we are talking about perceptions.

      Of course, you could also accurately say that most Windows users don't like Linux users, although they don't mind BSDer one bit. The difference being that Linux users seem to think they need to take over the world, and try to convert anyone that isn't using their OS, while BSDers don't.

      Of course, you could even go a step further, and say that most Unixers don't like Windows users, for the same reason that BSDers don't like Linuxers.

      So, tell me what the problem is... Each group has a lot of negative perceptions about them, but BSDers clearly seem to get the worst of it.
      --
      Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
    7. Re:OpenBSD Journal is dying (not a troll) by evilviper · · Score: 1
      Who said anything about censorship?

      The parent did... And I block-quote:
      anyone that doesn't think OpenBSD is the greatest thing on earth is clearly a troll

      That implies censorship of comments because they don't refect the official, established point of view. Just because you don't say the word censorship, doesn't mean you aren't talking about it.

      The OpenBSD fanboys are so far up Theo's ass they're unable to think for themselves and accept that there MIGHT be other ways to approach a problem.

      -1: O.T. Rant
      --
      Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
    8. Re:OpenBSD Journal is dying (not a troll) by vesamies · · Score: 1

      Quoting the first post in that page: "Portage is the pure sh*t". Surely, the site is better without such comments. Deadly.org is not dying, it's just much better without all that stuff about what is right or wrong software.

    9. Re:OpenBSD Journal is dying (not a troll) by Anonymous Coward · · Score: 1, Interesting

      You have no idea what you are talking about.

      Please stop posting on these forums. Your comments are not welcome. Freespeech doesn't apply to people like you.

      BSD is not fading out. GET A DAMN CLUE.

      OpenBSD, FreeBSD, NetBSD and...lets not forget, APPLE'S MAC OS X - ARE ALL GOING -STRONG-

      Just because "CNET" doesn't have hype stories on them everyday, does that make them less of an OS?

      Have you been living under a rock? I think so.

      There is not much difference to Linux. Linux today is just a distro with a bunch of GUI's tacked on, this is what makes Linux for A LOT of people. Everything else is pretty much available accross the board.

      BSD hardware support is more than good enough. All the popular hardware works fine. and sometimes commerical driver support sucks, eg nvidia's drivers. I'd rather the open source community write some of those drivers.

      If projects like Mozilla, OpenOffice etc were coded to be a bit more portable, they would be running fine on any BSD. It's not impossible to get Mozilla and OpenOffice (talking desktops here) running on OpenBSD - just takes a bit more effort than it should.

      FreeBSD has very good commericial support. You have no idea, really.

      Maintream...does it really matter what the kids are using to play their MP3s on? Down with Microsoft! yay! Lets clone the Windows gui!

      hobby. Linux is more of a saddled hobby to administer than BSD anyday. FreeBSD and OpenBSD configure and lock down with ease. I can't say I'd use Linux for any of my servers, the stability is just not there.

      Anyway that's enough for you, you're just a common troll and you've been fed. Happy?

  20. Re:I know, but... by MobyTurbo · · Score: 1
    As far as I know Windows have had native support for Java for ages. Actually since Microsoft and Sun signed an agreement about this back in 1997 that deals with this issue. So the fact that FreeBSD got this is fine but not exactly revolutionary.
    FreeBSD has had native Java for several years as well, it is only recently however that Sun, which according to the license must approve of all binary distribution, approved of distributing *binaries* of Java for FreeBSD; so you no longer have to first install the Linux Java VM, Java source, and patches, all the while clicking on Sun-mandated license warnings, to bootstrap Java on FreeBSD. Don't blame FreeBSD for being late to have binary Java 2, blame Sun for not open sourcing Java.
  21. non-executable stack? by Rock+Ridge · · Score: 2

    Are the BSDs working on this? It seems it would be a "good thing," since most of the cracks hope to smash the stack and execute some mal-code. Solaris may have had this feature, but not sure.

    -Rock

    1. Re:non-executable stack? by RdsArts · · Score: 1

      OpenBSD has had it since at least 3.3. There was a large amount of press about it when they announced it, relatively close to the time they had the DARPA funding pulled.

    2. Re:non-executable stack? by Schubert · · Score: 2, Informative

      It has been in OpenBSD since at least 3.2 if memory serves (http://www.openbsd.org/plus32.html | grep non-exec)

      --
      -- schubert
    3. Re:non-executable stack? by anthonyrcalgary · · Score: 1

      OpenBSD has it on most architechtures as of 3.3, and i386 has it in the CURRENT tree, so it'll be included in 3.4 AFAIK.

      I don't know what the other BSD's are doing about it. It takes a fair bit of work in the kernel, so it's not a straight port.

      --
      When someone might yell at me, it has to be OpenBSD.
  22. Re:huh? by tedu · · Score: 1

    yeah, like i'm going to fork out $50 for a better grep. i'm pretty happy with the free one i have now.

  23. Re:BSD troubles by MobyTurbo · · Score: 1
    don't want to start a holy war here, but what is the deal with you BSD fanatics? I've been sitting here at my freelance gig in front of a BSD box (a PIII 800 w/512 Megs of RAM) for about 20 minutes now while it attempts to copy a 17 Meg file from one folder on the hard drive to another folder. 20 minutes.
    This troll is a cut and paste change of a nearly 5 year old troll written attacking the alleged performance of a pre OS X Apple Macintosh. See the original troll, which is identical except for a few words changed to substitute "BSD" for "Mac" and "8600/300" for "Pentium" The BSD trolls are getting more and more lame; as if they weren't lame to begin with... Desperately resorting to cut and paste trolls, red ink flows like a river of blood. ;-)

    Fact: *BSD trolls are dying.

  24. Re:I know, but... by AchmedHabib · · Score: 1

    Hey, I guess Sun has been busy writing drivers for x86 Solaris. :D .. ahrm


  25. Re:huh? by Jeff+Breker · · Score: 1

    Really, well hot dang if I had know that the OpenBSD 3.4 cd's didn't include all that other stuff that is advertised on it (you know the OpenBSD operating system) I wouldn't have pre-ordered this $50 three cd copy of a BSD licienced grep... Thanks for the heads up, I owe you one.

  26. Re:huh? by Jeff+Breker · · Score: 1

    Grr sorry bout that... Thats what I get for reading slashdot at 1...

  27. Re:Why so late? by SteelX · · Score: 1
    OpenBSD 3.3 runs BIND 9.
    $ uname -srm
    OpenBSD 3.3 i386
    $ /usr/sbin/named -v
    BIND 9.2.2
    One more thing that's old is OpenSSL. Here's OpenBSD 3.3's OpenSSL:
    $ openssl version
    OpenSSL 0.9.7-beta3 30 Jul 2002
    But when I checked the CVS, it looks like they've imported the latest stable version of OpenSSL. So hopefully 3.4 would come with a decent version.
  28. Re:Why so late? by styrotech · · Score: 1

    I haven't seen 3.3 or 3.4, but 3.2, which is barely a year old, still runs BIND 4. The current version of BIND is 9. This gives you some idea of how the OpenBSD team things.

    BIND 9 (with patches) was included in OpenBSD 3.3.

  29. Re:Why so late? by hegemon17 · · Score: 2, Informative

    The work that needed to be done to switch i386 to ELF has been ready for a long time. But doing such a switch is a huge pain for the developers and users, so it was delayed for as long as possible. Same thing was with other architectures. alpha switched to ELF when the alpha port was almost dead and was violently revived by redoing lots of code and completly changing everything. sparc switched to ELF after a bug was discovered in how the dynamic linker worked. The dynamic linker didn't map the code segments executable which didn't really work after the kernel was taught to honor the executability bit on memory mappings (that was done to get non-exec stack). And i386 swichted because that was the only way to get proper non-exec stack. OpenBSD does big disruptive changes only when it's really necessary and when those changes come, all disruptions are clustered thightly.

  30. Nice troll... by nacturation · · Score: 1

    You troll initially, respond AC to your own post, and troll in the reply to your AC post. I've been ignoring that "Have you meta-moderated lately?" message, but time to head right on over...

    --
    Want to improve your Karma? Instead of "Post Anonymously", try the "Post Humously" option.
    1. Re:Nice troll... by nacturation · · Score: 1

      Onoe we might lose a karma point!!!1!

      Please please please don't throw me in the briar patch, Mr. Brer Bear!


      Uh oh, looks like I've angered the trolls. Obviously someone's mother didn't pay him enough attention as a child. Hey AC, go post a couple more *BSD is dying threads -- someone just might notice you and give you the recognition you so desperately crave!

      --
      Want to improve your Karma? Instead of "Post Anonymously", try the "Post Humously" option.
  31. They want it to be "stolen"... by anthonyrcalgary · · Score: 4, Informative

    I've never quite understood how the BSD people can think they've got freedom when their work may be locked down and stolen by a corporation any time.

    You don't understand the BSD license. It's impossible to steal something that's given freely. BSD has been such a seminal influence precisely because the code can be "stolen". That's the intent.

    Besides, AT&T did try to steal (in the "you can't use it anymore" sense of the word) BSD's code. They lost.

    If he thinks separating from the protection granted by GPL will further the survivability of OpenBSD, he's seriously mistaken.

    BSD predates the GPL.

    --
    When someone might yell at me, it has to be OpenBSD.
    1. Re:They want it to be "stolen"... by Brandybuck · · Score: 1

      There once has a fabulous apple tree. No matter how many apples one would take from it, there were just as many as before! When this was heard by the villagers they all rushed to the apple tree and took apples. But no matter how many they took, there were just as many apples as before. But some of them came and took apples and locked them within a chest, so that none could steal them. And they laughed at the other villagers, saying, "Look, they do not protect their apples. Surely a thief will come and steal them."

      --
      Don't blame me, I didn't vote for either of them!
  32. Re:Soon?-BSDs convoluted path. by JamesTRexx · · Score: 1

    Actually, I found FreeBSD very easy to install the first time, and also very fast to install.
    I was surprised at the speed in which I had FreeBSD/KDE running. Much faster than a Windows 2000 install. Not to mention installing a simple web/ftp/nfs server.
    That was what I was looking for at that time, a server set up in 5 minutes instead of at least half an hour.

    --
    home
  33. Very interesting, but... by edunbar93 · · Score: 2, Funny

    Significant enhancements have been made in this release, including i386 switch to ELF executable format, further W^X improvements for i386...

    Yes, but what *I* want to know is whether the BSD babes are going to be there. :D

    Mmmm. Mondo cleavage and red latex!

    --
    "No problem. I have the capacity to do infinite work so long as you don't mind that my quality approaches zero."-Dilbert
  34. *nods* by JamesTRexx · · Score: 1

    I agree with evilpiper, that post is a good example of closed minded people. Maybe it's just too much to ask of people to give everyone their right to use whatever OS/program they want instead of dissing them.

    --
    home
    1. Re:*nods* by evilviper · · Score: 1
      I agree with evilpiper,

      Interesting... I don't know anyone named evilpiper.

      --
      Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
    2. Re:*nods* by JamesTRexx · · Score: 1

      Blah!
      See? Overtime and lack of sleep kills more braincells than alcohol can make up for it... *lol*

      --
      home
    3. Re:*nods* by evilviper · · Score: 1

      Don't worry about it too much... I'm just being kinda nit-picky.

      --
      Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
  35. Re:BSD troubles by Dahan · · Score: 1
    Even Emacs Lite is straining to keep up as I type this.

    This part bugs me everytime I see it... how about changing "Emacs Lite" to MicroEmacs next time?

  36. Re:huh? by psergiu · · Score: 1

    How about forking a few hundred times more for a version of sort ? :)

    --
    1% APY, No fees, Online Bank https://captl1.co/2uIErYq Don't let your $$$ sit in a no-interest acct.
  37. Keynote: Computing fallacies by alien_blueprint · · Score: 2, Interesting

    I notice that the keynote speaker is Michi Henning, and he is delivering the "Computing Fallacies" talk again, presumably in an updated form.

    Since this very presentation was discussed on /. previously, it might be interesting for an attendee to take notes so that we can compare with last time. Does he believe things have improved, or not, and why?

  38. Links to ordering site & items -- by Anonymous Coward · · Score: 3, Informative
    Support the OpenBSD developers by getting a 3.4 CD $40 or for Europe EUR 45


    There is a new Tshirt: 3.4 Tshirt $20 or for Europe EUR 20


    The new 3.4 poster is very nice too, get it for $10 US or EUR 14 in Europe


    If you prefer OpenSSH, have a look at this new Tshirt OpenSSH 2 $20 or for Europe EUR 20

    thank you.

  39. Re:thank you for supporting troll kind.. by Anonymous Coward · · Score: 1, Insightful

    people like you are the cancer of the Internet, just like spammers. actually read what the person in the previous most was saying. it is mostly true. he/she seemed to hit a nerve with you at least, you responded. i find it funny that a troll is telling someone else to fuck off and die, you have got it backwards buddy. you have nothing good to say about the subject at hand (bsd), so your presence is not welcome. i actually feel a bit sorry for you that your life is so sad, this is all you have. you seem to feel insecure or threatened by other operating systems besides your own. seek professional help. you can express what ever you want, but there is a right time and place, which you are having trouble understanding.

  40. Re:What We Can Learn From BSD by ddimas · · Score: 1
    That's too bad. I always thought of BSD as the pioneering FOSS. BSD and GNU(later GNU/Linux) both had their start at the same time and in response to the same problem (AT&T raped the Unix community). BSD just managed to get a full OS out there first.

    I will mourn the passing of BSD.