Slashdot Mirror


FreeBSD XP^H^H 4.5 available now

The_Rift was one of many who wrote in with this news: "The official mail has gone out to the FreeBSD-announce mailing list announcing the availability of Freebsd 4.5. Check your local mirrors for the ISOs.". The release notes have all the details, but take it from me -- this one is worth it just for the TCP/IP performance improvements by Matt Dillon and others. Kudos to Murray, Bruce, and the rest of the release engineering team.

86 of 362 comments (clear)

  1. This is a very lame joke. by Eskimo+Bob · · Score: 2, Funny

    Did you know that a simple name change could get more people to try FreeBSD, or at least get 'em interested in it.

    FreeBDSM... Sure, they'd all be perferts, but hell... a user's a user.

    Lame joke, I know. but I warned you.

    --
    I am a big, fluffy, cute, cuddly bunny. fear me.
    1. Re:This is a very lame joke. by Basje · · Score: 2, Funny

      Gives a whole new meaning to the term 'power user'. Lame again, I admit

      --
      the pun is mightier than the sword
    2. Re:This is a very lame joke. by stevey · · Score: 2, Funny

      Not to mention (re)booting, powering down, and hot-mounting USB toys ..

  2. Check you local mirrors for the ISOs? by Anonymous Coward · · Score: 3, Insightful
    Check your local mirrors for the ISOs

    and waste a lot of bandwidth in the process. cvsup is your friend.

  3. Re:Why call it XP? by aje · · Score: 2, Informative

    I think you should try to install the FreeBSD-partition slice onto a primary partition. The partition contains all subslices, which the system is installed onto (/, /usr, /var etc.). I have absolutely no experiences (XP :) with FreeBSD on laptops - the hardware acceleration for for instance X might be a problem (console should run fine).

    Regards

    --
    -- Anders
  4. syncookies? only now? by chrysalis · · Score: 2, Troll

    I'm surprised to see that a new feature of that release is... syncookies. Doesn't Linux (and probably a lot of other OS) have that for years? Syn floods is a very old attack, and I can't understand why FreeBSD only implements syncookies now.

    --
    {{.sig}}
    1. Re:syncookies? only now? by Pengo · · Score: 2

      A) if you where to really setup a firewall to battle attacks/dos, etc, I would recomend OpenBSD. Second, you can compile into the kernel IPFilter which does support a stateful firewall configuration as well as acception and denyal of TCP packets based on the flag (SYN/ACK/FYN) etc. Once the rule has been accepted, the end packet stream is accepted into the state. I believe this is the same thing as syn-cookie, only better.) I hope someone reading this will give a bit more insight into the issue, because IANAFE (firewall expert).

      In my experience the IPF and PF firewall configurations are the most simple, flexible and powerful to use, and can be found on freebsd and openbsd and probably the others.

    2. Re:syncookies? only now? by helixblue · · Score: 3, Interesting

      Yes, in fact, I remember quite clearly when Linux 2.0 got syncookies. I'd wager 2.0.27 or 2.0.28. The syncookies implementation was totally awful. I was a pretty newbie sysadmin at the time, and whenever someone checked POP3 mail on our mailserver.. it'd warn us about sending syn cookies, and that all the students were attacking the mailserver whenever they loaded Microsoft Internet Mail.

      I didn't quite know what syncookies were. I just knew I didn't want them anymore after that. If it was an option in FreeBSD at that time, I would have laughed at the option, and subsequently turned it off. After other issues in 2.0.28 (was Linus drunk?), I tried FreeBSD by suggestion of my brother. Been pretty happy since.

      I'm sure the issues I had have been long fixed in the Linux tree, and should be in the new FreeBSD implementation, I hope. :)

      I'd check the CVS commits on the Linux kernel to give more precise info of the syncookies, but I can't seem to find them linked from http://www.linux.org/

    3. Re:syncookies? only now? by cperciva · · Score: 5, Informative

      FreeBSD has had a syncache for quite some time now; it has never been clear which of the two is technically superior.

      Now FreeBSD implements both commonly accepted solutions; I haven't looked at the code enough to say for certain, but I'd assume that syn cookies would be used in order to avoid connection loss only during *very* high packet rates (10^5+ SYN packets/second) since the syn cache works fine up to those levels.

    4. Re:syncookies? only now? by Xenophon+Fenderson, · · Score: 3, Interesting

      I'm not sure how you went from syncookies to OpenBSD, but you did mention stateful inspection, so flame on!

      Stateful Inspection(tm), stateful inspection, and TCP flag checks are not all the same thing. The INSPECT engine included in FireWall-1 is a dynamically-programmable state machine, capable of semi-complicated connection state tracking over a variety of connection-oriented (e.g. TCP) and connectionless (e.g. UDP) protocols. INSPECT is, in some form or another, patented. IPFILTER 's keep state clause (and IPFW's dynamic rules using the keep-state clause and the check state rule) also tracks connection state, but only for ICMP, UDP, and TCP, and it can only be changed by re-compiling the appropriate C code.

      Here's the rant part: SIMPLY CHECKING TCP FLAGS IS NOT STATEFUL INSPECTION!! It's sometimes called stateless inspection and it means that a decision to pass or block a packet is decided on the characteristics of that packet alone. Allowing J. Random TCP packet to go through the firewall with a cursory check of the headers means I can do FIN or ACK scans through your firewall, and if you've got it set up to only log connection attempts, the scans won't even be logged. Suck!

      As for stop denial of service attacks (aside: I hope to God I'm not the only person who has to figure out whether a person means the operating system or the network attack every time he sees those three letters), the only way to do that is to implement proper ingress AND egress filters on the gateway firewall or router. Needless to say, this is complicated, so most people don't bother.

      Only you can prevent forest fires and improperly configured firewalls.

      --
      I'm proud of my Northern Tibetian Heritage
    5. Re:syncookies? only now? by Pengo · · Score: 2

      No flaming, just would like to know more..

      SIMPLY CHECKING TCP FLAGS IS NOT STATEFUL INSPECTION!! It's sometimes called stateless inspection and it means that a decision to pass or block a packet is decided on the characteristics of that packet alone.

      Well, based on what you just said.. I still am ok. My rules basically states, only allow the packet into the state if it a) meets the port/proto requirements, b) meets the TCP Flags (S/SA). You seem to know what your talking about , so I am asking.. wouldn't that block a FIN/ACK scan through the firewall, being that the state wouldn't be established unless you met the criteria?

      Cheers

    6. Re:syncookies? only now? by Xenophon+Fenderson, · · Score: 2, Informative

      The rule you describe (only allow S/SA and keep state) would indeed block a FIN or ACK scan.

      For example, I have the following IPFILTER rule installed on my firewall:

      pass in log first quick on fxp0 proto tcp from any to 10.63.1.1 port = 3389 flags S keep state keep frags group 132 # wtsrv
      This allows the initial SYN packet in, and tracks state from there on out. The next packet it allows through the firewall must be a SYNACK, and the packets following that must be ACKs, RSTs, or FINs. Once it sees the terminating FIN or RST, it removes the connection from the dynamic state. If it doesn't complete the handshake (SYN, SYNACK, ACK), the dynamic rule times out pretty quickly. If it does complete the handshake, I think the default timeout is on the order of a few days.

      Sorry about the flame bit. It's just that so many people mis-understand stateful firewall rules that I try to explain it to avoid people getting confused.

      --
      I'm proud of my Northern Tibetian Heritage
  5. FreeBSD 4.x STABLE branch. by AntipodesTroll · · Score: 4, Funny

    It turns out it is a good thing that 5.0-CURRENT was frozen, and they concentrated on 4.X STABLE. It means I dont have to worry about changing to a new 5.X branch.

    It was kinda annoying that the FreeBSD guys obsoleted 3.X so quickly, they had only really just fixed the glaring issues with the ATA driver corruption problem and other important issues (that affected my use of FreeBSD 3.4 for fileserving) and then they went and obsoleted it.

    If 4.X stays as the most current tree in STABLE for another year, hell, another 2 years, I for one will be happy. I dont see the 1-year cycle for major number increments as much really other than ticking over the most siginificant version-numbers. Stuff that gets MFC'd from CURRENT is usually good enough for STABLE, Look at Linus, he dosent feel a need to tick over the major version numbers for Linux. I'd stay with FreeBSD 4.x if it goes all the way to (say) 4.7 or 4.8.

    --
    Anyone who considers arithmetical methods of producing random numbers is, of course, in a state of sin.-John von Neumann
    1. Re:FreeBSD 4.x STABLE branch. by neroz · · Score: 3, Informative

      There will be a 4.6, and *possibly* a 4.7, but 5.0 will be -released before then. See this interview with one of the TrustedBSD developers for a good read on the status of 5.0. It also covers the fixes to 4.5.

    2. Re:FreeBSD 4.x STABLE branch. by essdodson · · Score: 2

      5.0-CURRENT was never frozen.

      --
      scott
  6. Time to give it a try? by John+Betonschaar · · Score: 3, Interesting

    Maybe I should really check out the FreeBSD FAQ & site & stuff, but hey, there's a lot of experts around here who can help me out, so I'll throw it in anyways:

    Is it worthwhile for me to try FreeBSD now? I've already installed Win 95/98/2000, RedHat, Slackware,Suse,Debian & BeOS before and I still have an unfinished Linux from scratch install lurking around, but until now only Debian, Slack & Win 2000 stayed on long enough to make real use of them. ATM I'm running Debian w/KDE2.2 and I'm really happy with it, but hey, I still have a free 2Gig partition.

    Can I run all apps/libs (or equivalents of the same quality) I use regularly now on FreeBSD? That would be KDE2.2, XMMS, OpenGL on GeForce2, MSN client, \LaTeX{}, Java1.2 a.o. Would It really bring me some extra performance/stability?

    The whole FreeBSD approach does appeal to me, so I'm definitely interested in trying, but only if it has a real chance becoming my primary LILO partion ;-)

    1. Re:Time to give it a try? by CatherineCornelius · · Score: 2, Interesting
      If you've delved as far as Linux-from-scratch and are happy with Debian and Slackware, you might like to have a look at the Debian-BSD mailing list. There was an article here about it around a week ago. Most of the work going on is around a NetBSD port, but others are working on a FreeBSD port. It's at a very early stage where they're still debating what to do about libc (BSD) versus libc6 (GNU) dependencies in packages.

      The list archives are here.

    2. Re:Time to give it a try? by jquirke · · Score: 3, Informative

      Using FreeBSD after experience with Linux is actually a good idea. You will find it a bit more challenging than Linux, but the rewards will be *improved* stability and performance in general. (From my experience in various situations, especially under heavy load).

      I know KDE2.2, XMMMS, and the MSN client will run fine. I also know most source-code apps will compile in general. Also, FreeBSD does have Linux binary compatibility (to an extent). However, if you don't thrash your machine much, you will probably prefer Linux.

      In short, put some time into learning about it and FreeBSD really is a fantastic OS. I would recommend it to tech-savvy people anyday. And it's constantly getting better (not dying :-P).

      --jquirke

    3. Re:Time to give it a try? by Ded+Bob · · Score: 4, Informative

      Can I run all apps/libs (or equivalents of the same quality) I use regularly now on FreeBSD? That would be KDE2.2, XMMS, OpenGL on GeForce2, MSN client, \LaTeX{}, Java1.2 a.o. Would It really bring me some extra performance/stability?

      KDE2.2: yes
      XMMS: yes
      OpenGL: yes
      GeForce2: yes, but not hardware accelerated. Fortunately, it is being worked on: http://nvidia.netexplorer.org/news.html
      MSN client: ?, there are Jabber clients for instant messenging with MSN.
      LaTeX: yes
      Java: in a few days. It is standard with FreeBSD (they paid the licenses fees). It is v1.3.
      Extra performance/stability: yes (SMP is lacking)/yes

      I believe LILO can handle FreeBSD.

    4. Re:Time to give it a try? by rho · · Score: 3, Informative

      I'd recommend giving a few hundred megs to a partition for FreeBSD. Since you're using your computer as a workstation, you won't see that much of a difference. It's not noticeably faster or more stable.

      KDE, et. al. are just Unix programs. They work fine on BSD. The real difference is how you install it. Wait until you give the /usr/ports tree a try. The coolest way ever to install software.

      *BSD is somewhat different from the Linuxes, especially RedHat. My last experience with RH was back at 6.2, but I got frustrated with its habit of tossing thing hither and thither all over the filesystem, and after my RH server was comprimised (buggy wu-ftp), I switched all my machines to Free and OpenBSD.

      I, personally, prefer the BSD way of configuration, and I've been very happy since.

      --
      Potato chips are a by-yourself food.
    5. Re:Time to give it a try? by hawk · · Score: 2
      >Extra performance/stability: yes (SMP is lacking)/yes


      SMP is not lacking, at least for x86.


      >I believe LILO can handle FreeBSD.


      yes, and FreeBSD's loader can handle linux partitions.


      hawk

    6. Re:Time to give it a try? by Quill_28 · · Score: 2

      I am not an Unix expert, nor a programming one. I played around with Linux for a couple years on a casual basis. I have been working with FreeBSD for about 6 months. I like FreeBSD much better,nothing against Linux glad it's doing well, I just prefer FreeBSD. Some reasons: I got frustrated in all the different flavors of Linux. Do I use RPM or .deb's. Red Hat seems to have their own way of doing things. Along with this the documentation on Linux is harder to follow because of this. Again, if I wasn't a newbie it might not be a big deal. Also, the installation(at least using broadband) it much easier than Linux. I have found ports very easy to use, much easier than Linux, where there always seemed to be a dependency issue. Again, my inexperience may play a role in this opinion. FreeBSD seems to be better server OS than Linux. Linux seems to be a better workstation OS than FreeBSD. My Linux friends tell there are much more end-user apps available but I really just want X-Windows, web browser, e-mail, and a development envirnoment. I am not interested in doing cd-burning, mp3 players, graphic design, and the like. Sorry for the random thoughts, in all I just really like FreeBSD. Take it for what it's worth.

    7. Re:Time to give it a try? by Ded+Bob · · Score: 2

      > > Extra performance/stability: yes (SMP is lacking)/yes

      > SMP is not lacking, at least for x86.

      He was asking about extra performance of FreeBSD over Linux. I wanted him to know that SMP is not quite up to par. As he did not mention SMP, I believe he will see very nice performance. I just didn't want others to assume SMP was stellar. When 5.0 comes out, I will have to consider getting me an SMP box.

      > > I believe LILO can handle FreeBSD.

      > yes, and FreeBSD's loader can handle linux partitions.

      Well, he did ask if LILO worked with FreeBSD. Personally, I use FreeBSD's loader.

    8. Re:Time to give it a try? by scrytch · · Score: 3

      Can I run all apps/libs (or equivalents of the same quality) I use regularly now on FreeBSD? That would be KDE2.2, XMMS, OpenGL on GeForce2, MSN client, \LaTeX{}, Java1.2 a.o. Would It really bring me some extra performance/stability?

      Yes, yes, no, yes, yes, sorta. Most apps for linux compile for freebsd out of the box, and if they don't, you just type 'linux bash' at a shell and install a redhat rpm. nVidia is never going to release a driver for freebsd, closed or otherwise (don't start with OSX, it's not even close to the same thing at that level), or sufficient specs to write one. There's native Java now, but I doubt they'll port a retrograde version -- it should be backward compatible anyway.

      The whole FreeBSD approach does appeal to me, so I'm definitely interested in trying, but only if it has a real chance becoming my primary LILO partion ;-)

      We may yet see the death of LILO and it won't be too soon. FreeBSD's bootloader is comparable to GRUB and then some. It'll load Linux just fine as well.

      --
      I've finally had it: until slashdot gets article moderation, I am not coming back.
    9. Re:Time to give it a try? by dcs · · Score: 2

      Not sure if it would be worth your time trying FreeBSD. But if you do, PLEASE get rid of LILO! :-)

      --
      (8-DCS)
    10. Re:Time to give it a try? by Lazaru5 · · Score: 2

      Your /. ID isn't terribly high, so I assume you've been here for a while. How is it that after dozens and dozens of BSD stories that people still don't know a damned thing about it? Unix, for the most part, is Unix. There's nothing Linux about KDE, XMMS, etc. Linux and "Open Source" are used together in sentences all the time by people who never give a moment's thought to ./configure && make install and frankly it scares me.

      And now you ask if LaTeX! of all things is on FreeBSD? Dude, TeX (and friends) are OLDER than Linux! So is the X Window System!

      The answer to your question "is it worthwile to try FreeBSD now?" can be found by asking YOURSELF that question. Is it worthwile? Would you gain anything? Not just in performance or stability, but would you maybe learn anything in the process? Would you maybe even find that you just 'like it' better and switch completely? Is spending the time learning another OS (course, it's still Unix so as long as you don't go into it with preconceptions it'll be easy) worth any rewards you may gain?

      This goes for anything, and not just FreeBSD, and not just Operating Systems and computers.

      Tis better to have loved and lost than never to have loved at all.

      --

      --
      My comments and opinions completely reflect those of anyone and anything I am remotely associated with.
    11. Re:Time to give it a try? by Lazaru5 · · Score: 2

      "my Linux friends tell me there are much more end-user apps available [for Linux]"

      That's an ignorant myth. A most there are (_literally_) a *few* more apps because of commercial software companies that sell closed source applications.

      Thankfully, FreeBSD can run these as well under it's Linux ABI compatibility.

      --

      --
      My comments and opinions completely reflect those of anyone and anything I am remotely associated with.
    12. Re:Time to give it a try? by Lazaru5 · · Score: 3, Informative

      There is support for this in -CURRENT and people have successfully manually backported a patch to -STABLE. Then again, the burncd utility that's included in -STABLE works just fine for IDE burning.

      --

      --
      My comments and opinions completely reflect those of anyone and anything I am remotely associated with.
    13. Re:Time to give it a try? by Lazaru5 · · Score: 2

      Most apps for Linux ARE NOT "Apps for Linux". That's why they'll compile. And nVidia OpenGL support is working (though not in the install yet.) See other comments under this story for details and link.

      --

      --
      My comments and opinions completely reflect those of anyone and anything I am remotely associated with.
  7. Re:Where's the DVD by Metrol · · Score: 5, Informative

    Someone tell me how to install this over a network, please.

    The FreeBSD folks have already done this, in very plain language.

    For myself, I'm doing a cvsup now as I write this. Make world gonna start to cooking tomorrow night. I'm probably about 2 weeks behind the release as I try to update fairly regularly with the latest stuff.

    The really good part about this is that all that stuff that's been held back for release is now gonna start flowing back into the ports tree and src directories. Yummy!

    --
    The line must be drawn here. This far. No further.
  8. Re:Where's the DVD by DrSkwid · · Score: 3, Informative

    Someone tell me how to install this over a network, please.

    you need two floppies

    kern.flp and mfsroot.flp

    boot with them and choose a few menu items and it's off

    all detailed at the freeBSD homepages of course

    --
    There are places where the networks are not touching,and there are places where they are-Boeing's Lori Gunter
  9. Re:Why call it XP? by Mister+Snee · · Score: 3, Insightful

    For the record, logical partitions are a fictional creation of Microsoft and are extremely scary, unnecessary things which you should probably avoid when using a sane operating system. You can have up to four primary partitions -- extended partitions and "logical drives" exist to expand that. The (sane) idea was that, if you used your first three partitions and expansion to more was imminent or necessary, you'd throw an extended partition in the fourth and put as many logical drives in it as you needed. You know, hda1-4 ... then your logical drives are hda5 and up.

    It's a nice idea but since MS-DOS you've only been allowed to make one primary partition, and after that you're forced to put in an extended partition and logical drives. Most operating systems need to be installed on a primary, so your best bet would be using the operating system in question to set up the partition table. Last I checked even XP won't let you add more than one primary partition, but I could be wrong.

    I've had the same problem with Intel Solaris. Bleh.

  10. Native JAVA by DrSkwid · · Score: 5, Informative

    at last!!!1

    now no fucking about with linux emulated Java

    maybe now I can get java in Konqueror to work

    and I know it's not new but maybe you linux heads might've missed it.

    FreeBSD now has a third party script that will auto-update any ports you've installed.

    cvs update to the lates ports list and run portupgrade -ra and ALL of your port instaleld software will be updated to the latest version and dependencies resolved and reset (and a tool pkgdb will do some pre upgrade checks)

    It's great. I'm going on about it because I'm so impressed with it.

    FreeBSD rocks

    --
    There are places where the networks are not touching,and there are places where they are-Boeing's Lori Gunter
    1. Re:Native JAVA by billhuey · · Score: 3, Insightful

      It's being worked on by me and a number of other folks.

      Native threading is in alpha and I'm currently working on the HotSpot compiler. ;-)

    2. Re:Native JAVA by Metrol · · Score: 5, Informative

      I normally don't comment on moderations, but what in the heck got the above message mod'd to a troll? Not only was nothing insulting in that post, he hit on some great points.

      Having to deal with Linux emulated Java does suck. It doesn't integrate well with desktop apps that are compiled to run native on FreeBSD, like Konqueror or Mozilla. It's out of date, thus impacting stand alone apps like JEdit and server side apps as well. It'll be nice to see that Linux emulated Java yanked from the port tree. This is NOT about whether Linux is good or bad.

      The "third-party" script being referred to is an implementation of even greater automation with installing and updating apps. The two key commands involved are "portupgrade" and "portinstall". For you Debian kinda folks this should look awful familiar...

      portinstall gnome
      portupgrade gimp

      Essentially, an even smarter handling of apps building up from the infrastructure of the ports tree rather than trying to replace it. It works smooooooth too. apt-get, eat your heart out :)

      Coupled with cvsup for keeping things all up to the minute, FreeBSD does rock!

      --
      The line must be drawn here. This far. No further.
    3. Re:Native JAVA by infinii · · Score: 2, Informative

      I recently upgraded to 4.5-RC. When installing the /usr/ports/java/jdk13 port, it forced me to install linux-jdk13 first.

      With this native JAVA, does it mean we don't need linux-jdk anymore? Should I cvsup and reinstall my port?

    4. Re:Native JAVA by DrSkwid · · Score: 2, Informative

      y the troll thing got me wondering too

      I've had two in two days that patently aren't

      must've pissed someone off

      I don't care though, I'm in the 45-50 cap zone anyway.

      Sure Debian might have the upgrading problem sorted out
      (but actually I doubt it's as good tbh but that's pure speculation)
      but the other distro's don't.

      The java thing is annoying for me as I've got a project waiting for a java applet and I can't get konq to use java.

      For me FreeBSD brings me consistency and ease of use. Linux has the light but so what, strength to your Penguin. I moved from slackware to FreeBSD (sadly via NT 3.5-4!). I tried Debian but didn't get along with it. My real OS of choice is plan9 but I won't go on.

      --
      There are places where the networks are not touching,and there are places where they are-Boeing's Lori Gunter
  11. Re:Firewall? by Pengo · · Score: 3, Interesting

    try open bsd. I am running it on my nat firewall (cable) and it runs in very modest settings. (I am running on a p100 w/32 megs ram and base install was 60 megs). You can install it from floppy disk over ISDN in an afternoon. (Look at the web site www.openbsd.org for install howto).

  12. Re:Here's the text before it got slashdotted... by Metrol · · Score: 2

    FreeBSD get Slashdotted? What, you think they're hosting on Windows or something?

    Move along unfunny troll, move along.

    --
    The line must be drawn here. This far. No further.
  13. Good experience with ISDN/FreeBSD by absurd_spork · · Score: 5, Informative

    I have been running an ISDN gateway with FreeBSD 4.2 on an AMD 5x86-133 which is roughly comparable to your Pentium 90 for some time. It works perfectly well. Compiling the operating system takes a bit long, but that's not much of a surprise.

    ISDN support under FreeBSD is very convenient. It uses the isdn4bsd system, which is integrated into recent versions of FreeBSD. In my opinion, it's superior to Linux, partly because configuration is easier and partly because ituses user-mode ppp by default instead of kernel-based systems which are usually more difficult to configure and maintain. You have to see if your ISDN card is supported. Most passive cards are. Check the ISDN section of the FreeBSD handbook.

  14. Re:Firewall? by Anonymous Coward · · Score: 3, Interesting

    An OpenBSD example can help you how FreeBSD scales for your biz.
    A Pentium 120 with 48 MB RAM and a total 62 MB installation. 3 legged bastion host, making NAT for 130 WEB and ICQ maniac clients, protecting the DMZ with a heavy loaded Web server inside (2 requests per second). Making stateful inspection for the DMZ.

    The only part expensive is the ethernet cards used in this box. Intel Pro100S, 51$ +VAT each (here in Turkiye).

    ISDN support for {Free|Net|Open}BSD is really sophisticated. It's hard to experience problems.

    Regards...

  15. Should I triy it? by XRayX · · Score: 3, Insightful

    Should I, as a pretty experienced (Kernel compiling, configuration /etc) Linux User, give it a try?
    I heard a lots of good things about FreeBSD, but how big are the differences to Linux (installation)?
    X

    --
    Boycot? Blackout? Subscriptions?
    I don't care!
    1. Re:Should I triy it? by Arandir · · Score: 3, Informative

      Yes, give FreeBSD a try. But don't go in expecting it to be just another Linux distro, because it's not. It's a real Unix in all but name. If you read the manual you shouldn't have too many problems.

      What are the differences? Well that depends. What specific Linux distro are you comparing it to? All the Linux distros are different, so you can't really compare it to Linux as a whole, because that's just the kernel. Some distros don't even use glibc.

      Installation is similar to Slackware and Debian. You won't get a fancy GUI that routinely misdetects your video card. It's very straight forward, sensible, and chock full of help.

      Administration is uses sysinstall, which happens to lead a double life as the installer. No need to learn two programs when one will do. Similar to YaST in that regard. But you can also edit everything by hand in vi, and sysinstall won't undo you changes. You won't have a SysV style init scripts, but BSD (duh!) style scripts instead. I prefer the latter as it's easier to learn and understand. Everything in the base system is configured in one file, rc.conf. Apache, Sendmail, etc., still have their own configuration files though.

      Installing software is similar to Debian and Gentoo. There are precompiled packages available, but the standard way is to use ports, which automatically fetches source, builds and installs. Using the cvsup and portupgrade utilities, keeping your system up to date is simplicity.

      The GNU utilities aren't standard, so if you learned Unix the GNU way you may be thrown for a loop now and then. But if you learned Unix the Unix way, then you'll feel right at home. sh and tcsh are the standard shells, but just install bash if that's what you want. I prefer bash at the command prompt, but I write my scripts for plain vanilla sh.

      --
      A Government Is a Body of People, Usually Notably Ungoverned
  16. Linux is a better tinker-toy by Pengo · · Score: 3, Insightful

    To be honest, if you are just using workstation apps, and not really using it for anything like a nat box, or the 'server in the closet tha never gets turned off' , it's probably not worth your time. The nice thing about playing with it, you get a feel of something different, which is a good thing. Linux ,, redhat, is not the end-all be-all of server configurations.

    I had a freebsd box sitting my in closet for about 18 months, until I got bored with it and install openbsd. BUT, I don't really do any xwindows stuff on it.. basically web serving, outgoing email gatway, nat, proxy, and the place where I build my Python programs and scripts.

    I guess to summarize my experience, *BSD is not a workstation supliment, but more a compliment. It will sit there and do it's job without much headache. Thats good enough for me ;-)

    1. Re:Linux is a better tinker-toy by Arandir · · Score: 3, Informative

      To be honest, if you are just using workstation apps, and not really using it for anything like a nat box, or the 'server in the closet tha never gets turned off' , it's probably not worth your time.

      I have to respectfully disagree. There's nothing that Linux can do that FreeBSD can't. So why is there this perception that Linux is suitable for a workstation but FreeBSD isn't?

      KDE, GNOME, Xmms, StarOffice, Java, Mozilla, Wine, etc., etc. I'm using FreeBSD as my desktop at home and my workstation at work. I couldn't be happier.

      --
      A Government Is a Body of People, Usually Notably Ungoverned
  17. Mirror site speed... no complaints! by Nonesuch · · Score: 3, Informative
    One benefit of being up early (not by choice) is that I'm getting some damn good download speeds from the official FreeBSD mirror sites, as in 773KB/s... that's over 6 megabits!

    Not all of the sites have the full set of files (yet), I had to hunt around a bit to find the '4.5-install.iso'.

    Don't trust my math on transfer speeds?

    local: 4.5-disc2.iso remote: 4.5-disc2.iso
    227 Entering Passive Mode (192.168.1.1,162,179)
    150 Opening BINARY mode data connection for '4.5-disc2.iso' (631341056 bytes).
    602 MB 00:00 ETA
    226 Transfer complete.
    631341056 bytes received in 796.65 seconds (773.92 KB/s)
    (Yes, that transfer went via a proxy firewall)
  18. Re:Firewall? by Nonesuch · · Score: 3, Informative
    I agree. OpenBSD makes for good firewalls, right out of the box. I'm even starting to like 'pf'.

    Part of 'secure by default' is that the base install omits a lot of fluff- this makes for quicker installs, and a smaller footprint.

    ...base install was 60 megs
    One nice option for a firewall, there are plenty of cheap 64MB 'IDE FLASH ATA' devices showing up on Ebay, etc. These look like a laptop drive, work with any IDE controller, have no moving parts.

    Compared to FreeBSD, there are drawbacks, the most glaring being the lack of SMP support.

    Also, OpenBSD's installation process can be intimidating the first few times through. Where Free makes it easy, Open makes you think about disk partitioning and other low-level issues.

  19. Damnit.. by Night0wl · · Score: 3, Funny

    I had just finished the first ISO.
    I was about the finish the second ISO (96%)
    and I had 3-5% on each of the third and fourth ISO's

    and then they release 4.5... damnit...

    *deletes 1+ gb of data, and begins again*

    And this is all at a top of 15KB/s. And I can assure you it never got that high.

    --
    Computational Madness in a round package.
    1. Re:Damnit.. by benedict · · Score: 3, Informative

      You could just download the small (~200 MB)
      install ISO and then get anything else you need
      once the system is up.

      --
      Ben "You have your mind on computers, it seems."
  20. Re:Firewall? by Pengo · · Score: 3, Interesting

    Also, OpenBSD's installation process can be intimidating the first few times through. Where Free makes it easy, Open makes you think about disk partitioning and other low-level issues.

    Without sounding like an elitist, (which I am clearly or qualified to be), though the instalation was a bit awkward, it was direct and forward. After getting it installed, it was VERY easy to setup the configuration. All you really have to do is follow the instructions on the website. I had a machine setup in 2 hours (downloads and all w/floppy based install), after never touching the distro before thats not bad. Within 3 hours (and another helpful howto) I had the box hardened. Before the end of a long working day I had a VERY impressive set of rules setup to block various types of traffic, I understdood the difference between a stateless and statefull firewall and most importantly I understand why all the rules in my PF config where there.

    I just find it nice knowing that there OBSD crew is working overtime to help me sleep better at night. At this stage in my career, if I am using and deploying open source solutions.. my judgment and credibility is on the line. I can't blame it on Scott or Bill if something goes wrong.

    Cheers

  21. Re:Where is the "BSD is dying" clown? by Pengo · · Score: 2

    Next -> OSX ;-)

  22. Linus and vers. numbers by Anonymous Coward · · Score: 5, Funny

    Linus doesn't actually *DO* anything worth bumping up the numbers.

    2.x aout
    3.x elf
    4.x cam
    5.x new smp

    Linux - 2.4 - the kernel of pain
    What will 2.5 be? The kernel of torment?
    Then 2.7 The kernel of icy death?
    3.0 The Kernel of eternal buring flesh?
    @.8 could just be the kernel of itchy rash.

  23. Robert Watson's interview about the release by Anonymous Coward · · Score: 5, Informative

    This interview with Robert Watson describes many of the new 4.5-RELEASE features, and talks about how they relate to the much more advanced work in 5.0. He also talks about how the Linux development targets relate to those in FreeBSD, and says he reads linux-kernel regularly. It
    sounds like 5.0 should be incredible.

  24. Re:Firewall? by DreamerFi · · Score: 2

    and for those of us without the geek knowledge, I've set a smaller distribution, based on NetBSD, up as a firewall at www.dubbele.com.

  25. Logical partitions fictional by k8to · · Score: 2

    Yes, logical partitions are fictitional. So are all partitions. They're just conventions on how to share sections of the disk. Come to think of it -- files are fictitional, so are jpegs. etc.

    Or did you just mean to suggest that the name logical partition is somehow less valid than logical drive.

    Regardless of how problematic you view this system to be, it is the normal way of slicing the disk up into more than four chunks that can be shared among many operating systems on the x86 platform. You don't have to like it, but you'd think FreeBSD -- which is native to x86 -- would support it.

    --
    -josh
  26. Well, we already have Midori Linux by kriegsman · · Score: 2

    Well, we already have Transmeta calling their OS Midori Linux -- a blatant reference to Fetish Diva Midori.

    Geeks? Perverts? Who'da thought!?!

    -Mark

  27. What about the new JDK by thedarkstorm · · Score: 3, Interesting

    I had thought it was announced that the new Sun Authorized JDK was supposed to be in this release, but I find no information on the readme or the site?

    --
    ... hey ... I had a .sig, bu then MicroSo$$ embraced it...
    1. Re:What about the new JDK by ebcdic · · Score: 3, Informative

      The FreeBSD Java people now have a licence from Sun, but they have to go through a testing process before they are allowed distribute the system. It wasn't ready in time for 4.5.

      For now, you have to download the source from Sun, apply patches, and build it.

  28. Native JDK by ajcpi · · Score: 2, Informative

    According to the release notes:
    http://www.freebsd.org/releases/4.5R/relnotes-i3 86 .html:


    2.3.2 Ports/Packages Collection
    Due to delays in the certification process, native JDK support for FreeBSD will be released shortly after 4.5-RELEASE. An announcement will be made on the FreeBSD Web site, as well as the FreeBSD announcements mailing list , when the distribution is available.

  29. Already running it... by erat · · Score: 2

    I was running 4.3 until last night, when for some odd reason I decided to upgrade to 4.4. I ran cvsup manually to make sure I had the latest sources, ran "make world", then this morning I compiled a new kernel and rebooted.

    Whaddaya know, it booted up as "4.5-STABLE" instead of "4.4-STABLE". Talk about pleasant surprises... I guess if I read my email before rebooting I would have known.

  30. Re:Building a better BSD by Anonymous Coward · · Score: 3, Informative

    ........the real Jordan Hubbard is user #3999, http://slashdot.org/~jkh/.

  31. leading to new metamoderation categories . . . by hawk · · Score: 2
    Some half-wit tags Jordan Hubbard with "troll" while explaining FreeBSD . . . next he can proceed to alt.folklore.computers and try to correct Dennis Ritchie on unix history (happened a week or two ago), accusePeter Seebach of not understanding basic C (happens fairly regularly).


    At least there we get to have a little fun with it (find the Seebach/Crispin flamewar at dejanews [search for "popcorn" in title]), but not here.


    Coldn't we add "funny" to fair and unfair for meta-moderation categories?


    While we're add it, let's add "-1, twit" as a moderation option, as well as "-1, just plain wrong" . . .


    hawk

    1. Re:leading to new metamoderation categories . . . by hawk · · Score: 2
      oh :)
      in that case . . .


      Still, though, I've seen other moderations that were funny.


      hawk

  32. install by hawk · · Score: 2
    You'd need at least the two floppies to bring the machine far enough to use tools like cvs.


    I generally install from the three disks (there's an optional fixit.flp with lots of programs on it) by choosing an absolute minimal configuration, installing the cvsup package, then "make update" in /usr/src to get an up to the minute system.


    hawk

  33. Re:Recommended hardware for a new FreeBSD box? by hawk · · Score: 2
    if you grub around at www.freebsd.org,there's a list of known supported hardware. Realistically, "most" mainstream hardware will work.


    hawk

  34. better yet . . . by hawk · · Score: 2
    download the three floppies, boot, and download everythign . . .


    hawk

  35. Re:Building a better BSD by Thornae · · Score: 5, Informative

    For those of you who missed the (as yet un-modded) AC above, this comment isn't the real Jordan Hubbard, and is thoroughly deserving of any Troll moderations it recieves.

    It's a pretty damn good troll, though. Well crafted and subtle.

    --
    |>
    Here be Dragons
  36. Re:Why call it XP? by Sj0 · · Score: 2, Insightful

    "... I have absolutely no experiences (XP :) ..."
    XP stand for experimental.
    as in Microsoft Windows eXPerimental.


    You....don't get out much, do you?

    Rule number 1: If you need to explain the joke, especially in this crowd, it's probably not nearly as funny as you think it is.

    Rule number 2: If you feel the need to send us the same joke again, at least make it original!

    bad example:

    XP stands for unknown(as in X) Piracy.

    --
    It's been a long time.
  37. Re:4.4 installer by Metrol · · Score: 2

    frankly the installer on 4.4 was buggy to say the least.

    It's not so much buggy as it is non-intuitive. Unlike the Linux installers I've seen, it doesn't provide a good step by step wizard for what things you do next. I guess you could call that buggy, but it's not like it doesn't work.

    Robert Watson recently commented on this in an interview on OS News. There's apparently work being done now to get a more straight forward, and quite possibly pertier, installer up and ready for FreeBSD 5.0.

    It's actually a great interview, worthy of it's own thread.

    --
    The line must be drawn here. This far. No further.
  38. Speaking of Etch-a-Sketchs by infinii · · Score: 2, Funny

    About the time when Palm Pilots were taking off. Every manager and anyone important enough in our company started using them. Every meeting consisted of higher ups scribbling away on their Palms or reading email, avant-go, etc.

    Well as a joke, I borrowed an etch-a-sketch and in the middle of a meeting. I pulled it out of my briefcase with the straightest face I could put on. Ignoring everyone, I started scribbling with it and the meeting just fell apart from there. The person speaking tried to ignore it and contine but the laughter from the rest was overwhelming.

  39. FreeBSD 5 by Fweeky · · Score: 2

    I don't usually reply to trolls, but I haven't got anything better to do that I cba doing atm :P

    > Well, what the hell do expect from an obsolete,
    > ancient code base which is developed in a
    > closed fashion?

    Linus and friends approves patches to the kernel, does that make it's development model closed?

    Having the core team approve commits to the base OS is no different to any other open source project, and just serves to keep the base system as high quality as possible.

    As for old, since when has maturity been a bad thing for Unix?

    > (Yeah, it "supports" SMP. As in, when one CPU
    > is running, the other is locked idle. And vice-
    > versa.

    FreeBSD's current SMP support scales poorly because the kernel is based around a "Giant" lock, which prevents multiple CPU's from entering most of the kernel at the same time. However, except on systems where the kernel itself is heavily loaded, and/or on systems with lots of CPU's (4 or more), it's not a major problem.

    FreeBSD 5, due out at the end of the year, will have Giant mostly removed, as well as things like kernel preemption and advanced userland threading. It'll scale as well as if not better than Linux.

    It'll also have a new startup system based on NetBSD's (have a look at it, it's pretty cool - http://www.freebsd.org/cgi/cvsweb.cgi/basesrc/etc/ ?cvsroot=netbsd), much improved random data generation, and a lot of other things that'll only really interest geeks.

  40. Re:Anyone know... by Anonymous+DWord · · Score: 2

    http://www.freebsd.org/handbook/index.html

    --
    "If he thinks he can hide and run from the United States and our allies, he's sorely mistaken." Bush on bin Laden
  41. FreeBSD Ports by Fweeky · · Score: 4, Interesting

    > Contrary to popular belief, the ports system is
    > a steaming pile of horse crap. It offers little
    > or no flexibility in regards to how packages
    > are built,

    Most ports include all the options you need as make defines. If you need more, you can copy the makefile and edit it to your hearts content, and maybe type "send-pr" and submit a patch. Or you can just compile from bog standard source and have the rest of the ports tree use it because they look for libs, binaries and executables, not packages.

    > and has a nasty habit of installing
    > unecassary dependencies.

    Such as? It's certainly nowhere near as bad as Debian, where the entire packages system is so complex and interdependent that it needs to go through years of testing before a release is concidered stable.

    > For an example, try compiling PostgreSQL on a
    > non-XFree FreeBSD machine from the ports tree.
    > Notice how it insists on installing XFree86.

    It used to want TK, which would want the XFree libs. That's no longer the case.

    > You can't pass it any configure script options > like --without-xfree or ---don't build-
    > retarded-gui.

    For most people flags like -DWITHOUT_X11 etc are good enough. Otherwise scratch your itch and send-pr.

    > Even with RPMs I can do that. In the end, you
    > usually just wind up downloading the tarball
    > and compiling it yourself, which seems to
    > defeat the purpouse of a Ports/ Package
    > Managment system entierly.

    Making your own ports is trivial, pr's usually get resolved in a couple of days, and installing from source interacts with the ports system far better than any RPM/DEB system I've seen.

    Frankly it sounds like you haven't tried it in a while. Sure, it's nowhere near perfect, but what is? Certainly not a binary package system with fragile dep issues and completely unaudited sources.

    1. Re:FreeBSD Ports by Lazaru5 · · Score: 2

      "Frankly it sounds like you haven't tried it in a while."

      Sounds more like he never really tried it in the first place. Being able to customize Ports behavior has been a feature for nearly as long as the system has existed.

      He just never bothered to learn it. There's no harm there of course, but then he's not allowed to bitch and moan afterwards.

      --

      --
      My comments and opinions completely reflect those of anyone and anything I am remotely associated with.
    2. Re:FreeBSD Ports by Lazaru5 · · Score: 2

      Are you referring to ./configure && make install? Wow, I never knew you could do that before. I wish I could change environment variables and install paths in the Makefiles myself.

      Wait, or what if I could just type a 5 line gcc command?

      I heard there's this low-level ASSembly thing-a-ma-jig so you wouldn't even have to do that.

      What I _really_ wish for is a microscopic magnet so I could just twiddle the bits on the disk myself. That would rawk!.

      You're so smart, I think you're really onto something here.

      In other words, your sarcasm has not gone unnoticed. Of course you can customize software at compile time when building something manually. That, however, wasn't what the parent of my comment was talking about. They thought Ports were unflexible when the opposite is true.

      --

      --
      My comments and opinions completely reflect those of anyone and anything I am remotely associated with.
  42. improvements by Matt Dillon by glwtta · · Score: 2

    is there also hot Neve Campbell on Denise Richards TCP/IP action? then it really might be time to switch...

    --
    sic transit gloria mundi
  43. Re:Recommended hardware for a new FreeBSD box? by hearingaid · · Score: 2

    There's a hardware compatibility list in the ISO. HARDWARE.TXT in the root directory gives it to you. Or: Here's the link.

    Recently, they've started producing an HTML version of HARDWARE.TXT as well. Look for HARDWARE.HTM on the ISO.

    --

    my old sig used to be funny, but then slashcode ate it and now it's not funny anymore

  44. Is there an Understanding Ports HOWTO? by ewhac · · Score: 2

    I have FreeBSD 4.3 on a little x86 pizzabox that will eventually become my firewall and Web server. I'd like to upgrade to 4.5. Everyone I meet says, "just run cvsup and recompile the world."

    Er, uh... Well, first of all, cvsup doesn't appear to be installed by default (why the heck not if it's so integral to keeping the system up to date?). Second, "recompiling the world" seems like a fairly drastic and space-hungry step, particularly since I installed binary packages in the first place (and presuming that actual recompilation is involved). And third, all the docs I could find on FreeBSD.org are rather thin (and even way out of date) on this process.

    Is there a HOWTO or a step-by-step tutorial for FreeBSD newbies to become conversant with cvsup, the ports tree, and upgrading packages?

    Schwab

    1. Re:Is there an Understanding Ports HOWTO? by ctucker · · Score: 2, Informative

      I'll take a crack at helping... First thing you want to do is install cvsup, so su to root, then cd /usr/ports/net/cvsup, then make install clean

      Next, here's my cvsup script (which I have run via cron every Thursday):

      su-2.05# more `which cvsupLatest`
      #!/bin/sh
      sed -e 's/CHANGE_THIS/cvsup9/g' /usr/share/examples/cvsup/stable-supfile > /tmp/stable-supfile && /usr/local/bin/cvsup -g /tmp/stable-supfile
      rm /tmp/stable-supfile
      #rm -rf /usr/ports/www/jakarta-tomcat/
      sed -e 's/CHANGE_THIS/cvsup9/g' /usr/share/examples/cvsup/ports-supfile > /tmp/ports-supfile && /usr/local/bin/cvsup -g /tmp/ports-supfile
      rm /tmp/ports-supfile

      Running this will update the sources and ports in one go. Finally, I usually use the following to do the whole build world mess in one quick script (change REDRACER to the name of your kernel configuration file):

      su-2.05# more `which makeworld`
      #!/usr/local/bin/bash
      (cd /usr/src/ && make -Bj 4 world && cd /usr/src/ && make -Bj 4 buildkernel KERNCONF=REDRACER && make -Bj 4 installkernel KERNCONF=REDRACER) >& /usr/src/makeworld.log &

      Unfortunately, I've only given you a fish, not taught you how to fish, but it really just takes a little poking around to figure out what you need to do. Look at the handbook, especially chapter 9. Rebuilding world and kernel is less space-hungry than you might think, it seems to take more time than anything. Another good source of advice is the newsgroup comp.unix.bsd.freebsd.misc

      --

      --
      My other computer is your IIS server.
    2. Re:Is there an Understanding Ports HOWTO? by Lazaru5 · · Score: 2

      cvsup isn't installed by default because to build it from source requires Modula-3 and X libs, neither of which are part of FreeBSD and Modula-3 is fucking HUGE and would add upwards of 30 minutes to the world build time for Modula-3 and cvsup.

      'make world' sounds scarier than it is, mostly for mythical religious reasons. It's not space hungry at all really. A full /usr/src is about 250M which you're likely to have anyway and /usr/obj (where the object files are during a make world) also gets to about 500M.

      The fact that you installed binary packages is not relevant to building the world. FreeBSD is not a package based system (ala RPM, Deb, etc) and thus no portion of the OS itself is installed via a Package. 'make world' refers to rebuilding FreeBSD, not any 3rd party packages you installed so you wouldn't have to worry about them.

      Freebsd.org/handbook is anything but thin on the process, and it's most CERTAINLY not out of date as it was updated to 4.4-RELEASE and 5.0-CURRENT for the recent 2nd Edition hardcopy publication (www.freebsdmall.com) handbook/makeworld.html has full step-by-step directions.

      If you want to understand ports, the best source aside from the Handbook is 'man ports'. There's a man page for nearly everything in FreeBSD. You'd be surprised. Since Packages are just pre-compiled ports, they fall under the realm of the 'portupgrade' and pkg_* utilities. This is academic of course because there's no need to rebuild your packages after a make world unless you just happen to want newer versions of those packages (should new ones be available.)

      --

      --
      My comments and opinions completely reflect those of anyone and anything I am remotely associated with.
  45. Re:I disagree with the installation remark by Nonesuch · · Score: 2
    AC Writes:
    Being a complete newbie to BSD (and linux too).. I installed OpenBSD 2.6 without a problem a couple years ago. Ofcourse I made good use of the resources available, I printed the entire FAQ [openbsd.org], read it for 2-3 days at work and when it came time to start installing, I made sure I had this [openbsd.org] handy.

    The only way I think it can look intimidating is if you dive into it not knowing what to expect and not planning on doing any reading.

    I had built many SVR4 systems and a half dozen NetBSD/FreeBSD servers before I tried my first OpenBSD installation, and the first time doing the hand-entry of filesystems/partitions to get OpenBSD up was not fun.
    In fact, I'm spoilt after using the OpenBSD installer.. I wish FreeBSD had a text-only install too, navigating through sysinstall's menus can be a pain sometimes.
    Agreed. I do a lot of installs of OpenBSD on Sparc with just a serial console, and not needing to worry about terminal types and cursor key settings or alternate keys is handy.

    One thing I really like about the Solaris 8 installer is they've gone back to the pure command line, no more 'Press F1 to continue`.

    Not only is a command line a lot faster at low baud rates than a full-screen TUI, but the scrollback history is of infinite value to figure out where you went wrong when things start to go all wahoonie-shaped.

  46. Agree with your flamebait by GCP · · Score: 2

    I think C# takes the best of Java and adds a lot of goodies that many of us appreciate. Implementing C# for BSD or Linux is a matter of implementing an ECMA standard, just like ECMAScript (and unlike Java). I'd love to have a C# for GCC.

    I'm not sure how much of .Net is going to be standardized, though, so it may have to be cloned. I hope that happens because I really like what I see of .Net and I REALLY don't want to use a Windows server.

    --
    "Those who have never entered upon scientific pursuits know not a tithe of the poetry by which they are surrounded."
  47. Re:4.4 installer by Lazaru5 · · Score: 2

    The installer has always gone through a step-by-step installation as long as you choose the basic (or beginner, or whatever it is. I make world to upgrade and infrequently do a fresh install.)

    --

    --
    My comments and opinions completely reflect those of anyone and anything I am remotely associated with.
  48. Re:What I would like to see in freeBSD� by Lazaru5 · · Score: 2

    1. Fast boot ups

    Boots as fast as Linux and faster than Windows.

    2. Ease of use

    It's as easy to use as any Unix. Get over it.

    3. Better setup interface (auto probe of PC hardware, setup hardware, if no drivers for hardware install modem or NIC and download drivers via cvsup and complete setup using xserver)

    I don't know what you're talking about here. The GENERIC kernel, which is the one installed has support for all network cards already. A modem is just a serial device and doesn't need 'drivers'. All your typical PC hardware is also supported in GENERIC. That's why it's called 'GENERIC'.

    4. One standard/exclusive window manager

    This isn't a FreeBSD issue but a Unix/X one. It's the same situation on Linux.

    5. One tool for window manager configuration.

    If you mean to choose between wm's then this would seem to conflict with #4. If you mean to configure options for which ever wm you use, this already exists. GNOME and KDE (which are desktop environments more than window managers. GNOME runs on top of WindowMaker, Blackbox, Enlightenment, etc....), WindowMaker, etc all have their own window manager config tools.

    And, like #4, this isn't a FreeBSD issue. Talk to your local window manager development team. Or hell, do it yourself.

    6. One tool for driver/software tracking and installation/removals.

    CVS baby (at least for the first part.) FreeBSD isn't a package based system so with the exception of 3rd party software (via Packages or the Ports Collection) What You See Is What You Get. You add and remove drivers by either recompiling your kernel or removing kernel modules that you've added. (In fact, build a very slim kernel and you can do nearly all via modules.)

    As for 3rd party Packages that you've installed (Installed Ports essentially become registered Packages. In fact Packages are themselves made from Ports via 'make package' in /usr/ports/foo/bar.) You use the pkg_* tools. Ok, so it's not one single 'pkg_tool' command that does it all, but is it really that difficult to type 'pkg_delete' as opposed to 'pkg_add'?

    7. One tool for system administration

    Several such tools exist. Myself, I like vi(m).

    --

    --
    My comments and opinions completely reflect those of anyone and anything I am remotely associated with.
  49. Re:What I would like to see in freeBSD� by Lazaru5 · · Score: 2

    Certainly I could. There was nothing in my responses that was the least bit fanatical. I also wasn't defending anything or being apologetic in any way. Logic was present in every response.

    #1. Sure, instant boot would be great.

    #2. FreeBSD is as easy a Unix as any. This is not a biased or narrow view. I know full well that Unix isn't terribly user-friendly. I don't have to put a disclaimer in every single comment to cover my ass just so I don't offend ACs such as yourself.

    #3. The question itself indicated an unfamiliarity with FreeBSD's support for hardware. Since no setup for specific hardware is actually required for installs. The context of the question implied this. This type of question often comes up when users do new installs because of the visual Kernel Config (boot -c followed by 'visual' at the config prompt will get you back into it on a running system) which would LOGICally fit within this context. The inexperienced new user is often confused by this screen and proceeds to deactivate every device they think they don't need. In fact, this screen can be skipped completely. The 'conflicts' indicated at the top are not real but only those that _could_ exist if you actually _had_ every device that was listed. If you skip it (I always do), the kernel automatically probes for everything (which I believe is what was asked for?). That (like I originally said) is what GENERIC is for. There's no chance that there'd be 'no drivers for hardware' because they already exist. Removing items from this 'setup interface' is actually the opposite of #3's request.

    Of course LOGIC is not perfect. I could just have misunderstood #3, but that's only human, and not not a symptom of narrow visions or fanatiscism.

    #4 and #5. Too obvious.

    #6 also demonstrates some misunderstandings on the part of the poster. My answer is factual.

    #7. There _ARE_ several such applications. There was a company with one at BSDCon 2000 but it's name escapes me. I suppose I could go out of my way and look it up (or find the sample CD I got) but then, so could you.

    Of course, I don't know that it was you, but the tone of your response would indicate that it was. That, or you're just another fanatic with a narrow vision who sees evil and conspiracy where none exist. You have erred.

    If I actually read comments on many Linux stories and saw an equally misinformed comment I would respond in kind in much the same way I did this one. My goal was only to inform the uninformed, nothing more. You should learn to relax.

    --

    --
    My comments and opinions completely reflect those of anyone and anything I am remotely associated with.
  50. "BSD is dying" is dying! by Gordonjcp · · Score: 2
    It is now official - Netcraft has confirmed: "*BSD is dying" trolls are dying.


    Yet another crippling bombshell hit the beleaguered Slashdot community when recently IDC confirmed that "*BSD is dying" trolls account for less than a fraction of 1 percent of all posters. Coming on the heels of the latest Netcraft survey which plainly states that "*BSD is dying" trolls have lost more market share, this news serves to reinforce what we've known all along.


    You don't need to be a Kreskin to predict their future. The hand writing is on the wall: "*BSD is dying" trolls face a bleak future. In fact there won't be any future at all for them because "*BSD is dying" trolls are dying. Things are looking very bad.



    All major surveys show that "*BSD is dying" trolls have steadily declined in market share. They are very sick and their long term survival prospects are very dim. If they are to survive at all it will be among the "hot grits" dabblers. "*BSD is dying" trolling continues to decay. Nothing short of a miracle could save it at this point in time. For all practical purposes, it is dead.


    Fact: "*BSD is dying" trolling is dead