Slashdot Mirror


IBM's JFS & PTh-NG Reaches 1.0

jd writes "IBM's Journaled Filing System becomes the second commercial filing system for Linux to reach the exalted 1.0 status! It also follows close on the heels of another of IBM offering, the PThreads Next Generation project, which also hit 1.0 today." Check out this LWN story on it as well. It's worth noting that this is a free as in open source version - GPLed. There will be another commericial version as well.

46 of 94 comments (clear)

  1. Re:How do these differ from Linux Threads? by Anonymous Coward · · Score: 2

    AFAIK the IBM "Next Generation POSIX Threads" (NGPT) is mainly a more conforming implementation of POSIX Threads than the older Linux Threads.. It's still based on "kernel threads" (i.e. clone()'d processes), but I assume the reference to M:N threading means that it can map a number of user level threads onto a different number of kernel threads in the same way Solaris maps user threads onto OS Light Weight Processes (LWPs).

    There's an interesting update to the clone() man page that indicates some of the recent clone() enhancements that were added to allow full POSIX thread implementation:

    http://lwn.net/2001/0628/a/man-clone.php3

  2. Re:How do these differ from Linux Threads? by AndyS · · Score: 3

    Ahhh, I've noticed this

    But, it's not as bad as you think

    I use 2.4.5-acsomethingorother

    It has threaded coredumps - which is nice, until of course you get one (well "one" - it dumps every single core seperately for each cloned process)

    So you have to manually go through them and bt them - but it does work, it's simply fiddly, and you can't easily check other threads without seperately reading in the cores.

    In terms of threaded processes however, gdb is a lot better - indeed, the worst thing we've been bitten by is some of the bugs that it has with C++ and static members in superclasses.

    gdb CVS seems competant with threads - I've had it weird out on me occasionally, but generally it's capable of doing the job.

    gdb 5.0 isn't capable (at least, not the one debian ship), but the CVS version is a damn site better.

    HTH

  3. Re:Comments about Pth compliance, M:N threading. by Kaz+Kylheku · · Score: 2
    When they talk about performance, they might, e.g., have in mind a $100,000 multi-proc web application server running hundreds or even thousands of threads in parallel, with several thousand more requests in queue.

    Again, using thousands of threads is not going to get the best performance out of it, if it does not actually have thousands of CPU's or network cards or disks. A reasonably small pool of threads is all it takes. You need a thread for each peripheral you ever need to wait for, and each processor you need to keep busy, and then some.

    There is no special set of processing principles for a $100,000 server which say that you can stuff in any number of threads. Of course, with a larger address space, memory and greater memory bandwidth, you can be more wasteful and notice it less.

  4. Hahaha! by Kaz+Kylheku · · Score: 2

    The threading library LinuxThreads has to play the violin while standing on its head to make threads look POSIX-like. The kernel people look upon POSIX threads as braindamaged, and they are largely right.

    In my view, most of the noncompliances that exist actually make LinuxThreads a better library. For example fcntl() locks are owned by threads rather than the ``process''. This is more natural to program with; you don't want a locking request by one thread to just proceed even though it overlaps with an existing lock held by another thread in the same process! Think of the race condition bugs that can cause. Yet that's what POSIX requires. It's evident that POSIX is largely driven by vendors who have operating systems on which it's easier to hack threads this way, as sort of dadoes that are engraved into processes.

    Another braindamaged area of POSIX is that all threads share the same current working directory. This is upheld by LinuxThreads using CLONE_FS,
    but in principle it doesn't have to be. Again, think of the bugs this can cause! One thread does a chdir(), and the file accesses done by another thread go beserk into another directory.

    Then there is the whole problem of security contexts. In POSIX, your effective and real user and group ID's are process-wide; if a thread changes user ID, it changes it for all threads. Like chdir, changes in user ID *need* to be done in a procedural discipline, regardless of what you may think of the idea of having multiple security contexts in one address space. Think you can fork() around the user ID problem? If you fork() in a POSIX threaded process, the child can use only async-safe functions, or the behavior is undefined. If you need to do more things, you must exec() a new image.

    On the other hand, there are some reasonably nice behaviors in POSIX that don't work on Linux, like doing a fork() in one thread, but doing the wait() in another. (Workaround: make a fork server thread which handles fork and wait requests on behalf of others).

  5. Comments about Pth compliance, M:N threading. by Kaz+Kylheku · · Score: 5

    The way I see it, this IBM project is just reinventing LinuxThreads with a few differences, the biggest being M:N threading. If you look at their list of known issues listed in the release notes, it's about the same as for LinuxThreads: no process shared mutexes, no process identity for threads (except when only one underlying system task is used). These two are the biggest sources of complaints from some LinuxThreads users.

    The rest of my comments have to do with M:N, specifically the false claim that M:N provides a performance enhancement for all multithreaded applications.

    I don't believe that M:N threading is a good idea It creates issues and complications in the library implementation. The responsibility of scheduling and dispatching is divided between user space and the kernel instead of being done in one place. What M:N threading does is speed up voluntary context switches---context switches that take place within a threading function that is directly or indirectly invoked by the application, such as a synchronization function (pthread_cond_wait, pthread_mutex_lock, etc). Such a function can just call the user space scheduler, which can dispatch a thread without cooperation from the kernel. This is how M:N reduces overhead.

    M:N does nothing for involuntary context switches, which have to somehow go through the kernel (for example, a signal is delivered to the process, which swaps context so that returning from the handler will cause a new thread to run). Actually, this kind of context switch can be worse than the ordinary Linux kernel context switch, depending on how it is done. The current task is interrupted to run kernel code (transition 1). Then a handler in user space is dispatched (transition 2). Then the handler returns to the kernel (transition 3) then the kernel passes control back to user space with a new context (transition 4). On the other hand, a native context switch is just two transitions: interrupt the current task, and dispatch the new one. In any case, the kernel is involved in the involuntary context switches of the so-called ``user space'' scheduler, which puts their expense in about the same ballpark as a kernel task switch (within the same address space).

    So what about the faster voluntary context switches that M:N provides? Unfortunately, most of the *useful* voluntary context switch points are in the kernel: such as blocking calls that wait for I/O or real-time events. So M:N does nothing for I/O or response to real-time inputs. Dispatching a response to the completion of I/O or a real time input always requires a switch from the kernel to the user process.

    M:N also does nothing for compute-intensive multithreading that is done *sanely*. Sure, M:N may speed up a program that performs, say, some operation on a large matrix using 50 threads on two processors, because when these threads synchronize, it can be done using those fast voluntary context switches. But M:N will do nothing for a program that uses two threads over two processors to do the same thing, which is the more sane design.

    As a rule, the number of threads in an application should be not much more than the minimum that is required to utilize the various functional units of the hardware (processors and peripherals). Using too many threads just causes wasteful context switches that accomplish nothing, increases the memory access footprint of the application (since each thread has its own private data areas, such as the stack), and causes the scheduler to have to choose from among more threads.

    It's not worth trying to speed up brain-damaged applications that make poor use of threads, yet this is exactly what M:N is for.

    1. Re:Comments about Pth compliance, M:N threading. by Phouk · · Score: 2

      Hm, careful, after all, they are Big Blue... ;-)

      When they talk about performance, they might, e.g., have in mind a $100,000 multi-proc web application server running hundreds or even thousands of threads in parallel, with several thousand more requests in queue.

      For such a situation, for example, your arguments don't seem to apply, as far as I understand.

      --
      Stupidity is mis-underestimated.
  6. Re:Distros? by jd · · Score: 2

    Hard to say. Red Hat like to use all sorts of experimental stuff, so they're one possibility. On the other hand, I'm going to make a wild guess and say Debian'll be the first distro to provide the packages as an option.

    --
    It's a small world and it smells funny; I'd buy another if it wasn't for the money; Take back what I paid (SoM)
  7. Re:Filing system? by jd · · Score: 2

    Shhhhh! You're giving TiVO ideas!

    --
    It's a small world and it smells funny; I'd buy another if it wasn't for the money; Take back what I paid (SoM)
  8. Re:Isn't it third? by jd · · Score: 2

    Well..... if you want to stretch a point, it's actually at 1.0.1pre.

    --
    It's a small world and it smells funny; I'd buy another if it wasn't for the money; Take back what I paid (SoM)
  9. Re:How do these differ from Linux Threads? by Lally+Singh · · Score: 2
    you've got replies telling you that the difference is that userspace threads are mapped into linux threads... The real cost of linux threads is that they're almost real processes, with almost the same costs involved. In reality, all you need is a register context and a stack... Thread creation costs are much higher than absolutely necessary.

    --

    --
    Care about electronic freedom? Consider donating to the EFF!
  10. Re:gdb and core dumps by spitzak · · Score: 2
    I actually have not much idea what is going on, and am just trying to debug my program without learning details about how gdb and threads are implements. But so far (on a 4.2 machine) I have had good luck debugging mutliple threads with gdb, if I can get the thread to crash while running under gdb. It then seems to produce a stack dump and other information that is correct for the thread

    I have had no success with setting break points and getting them to trigger. And I have absolutely no luck using core dumps generated when the program was not run under gdb. This is made more annoying because gdb changes something so that the code that I can crash easily when run directly does not crash when run under gdb. Pretty annoying!

    Anybody have an explanation of what is going on?

    PS: also don't use "-march=i686" in a multithreaded program. Is this a gcc bug?

  11. Re: I agree 100% by spitzak · · Score: 2
    It is pretty obvious that the "posix standard" was forced through to conform to quick implementations of light-weight threads on existing single-threaded Unix systems.

    Linux should ignore stupid standards. All information that is stored in the os should be seperate copies for each thread. There is no reason to share even file descriptors (they should be duped during clone and each process can seek() individually) The only things threads should share is their virtual memory. Light-weight threads can still be implemented by having calls like setuid() force the thread to become a heavy thread.

    I would also like to see them get rid of the locks they put around virtually every system call (such as getc()!!!). The overhead of these is insane, and I really really can manage to do this on my own if I really have multiple threads reading from the same file.

  12. Re:How do these differ from Linux Threads? by ink · · Score: 2
    What's wrong with Linux threads? I've been using them for a while. They seem to work for me.Why are the IBM ones so much better?

    Linux threads are 1:1 mapped with kernel threads. This is great for I/O intensive operations because they can be independently scheduled by the kernel. If one task is bloking on some thing or other in the kernel, the others can be scheduled just fine. The problem comes with scalability; scheduling a kernel thread is just as expensive as scheduling a process, so if you have many many threads and relatively few processors things can get slow because the task switching/creation overtakes the performance.

    The solution to this is to have both kernel threads and userland threads. Things that don't block and/or require other things that block the kernel should be spawned as userland threads (they are about an order of magnitude faster for both scheduling and creating), and things that will block the kernel (network I/O, file I/O, etc.) should be setup as kernel threads. This makes life easier on the scheduler and also makes GUI applications "feel" faster than they currently do. Solaris has been doing this for quite some time already.

    The wheel is turning but the hamster is dead.

    --
    The wheel is turning, but the hamster is dead.
  13. cheap Linux process creation by MenTaLguY · · Score: 3

    Process creation under Linux (>= 2) is cheaper than on many other systems, however. It's (usually) still a net win.

    OTOH, for _kernel level_ threads, you need more than just a register context and stack -- the scheduler ends up needing a fair amount of bookkeeping data anyway.

    Linus just decided that there's not much point in making threads a special case ("thread-like" behavior depends on which of several things are shared, specified by flags).

    Things get a lot simpler that way, and is probably one reason why thread and process creation are so cheap on Linux.

    Even the recently added CLONE_THREAD stuff is a pretty generalist approach -- it just controls whether or not threads (including those considered "processes") share a "thread group" (the id reported by getppid(2) in 2.4).

    --

    DNA just wants to be free...
  14. Re:FS conversion tools please... by Psiren · · Score: 2

    Solaris has had a similar capability since 7. You just stick the logging option in your vfstab and you're off. Its not vxFS, but its quick and easy, and a lot more robust than no logging at all. It will be nice when Linux users can do the same. Playing with a new fs is all very well if you have the free space and time to implement it. Sticking one word in a config file is a lot easier though ;)

  15. Did SGI GPL their XFS 1.0 announcement? by Booker · · Score: 5

    [punch /tmp]$ diff -u xfs_announce jfs_announce
    --- xfs_announce Tue May 01 08:19:51 2001
    +++ jfs_announce Thu Jun 28 14:30:02 2001
    @@ -1,10 +1,12 @@
    -SGI is pleased to announce the 1.0 release of XFS, high-performance
    -journaled file system for Linux.
    +IBM is pleased to announce the v 1.0.0 release of the open source
    +Journaled File System (JFS), a high-performance, and scalable file
    +system for Linux.

    -http://oss.sgi.com/projects/xfs/
    +http://oss.software.ibm.com/jfs

    -XFS, widely recognized as the industry-leading high-performance
    -filesystem, provides rapid recovery from system crashes and the
    -ability to support extremely large disk farms. ... It is a
    -mature technology that has been proven on thousands of IRIX
    -systems as the default filesystem for all SGI customers.
    +JFS is widely recognized as an industry-leading high-performance
    +file system, providing rapid recovery from a system power outage or crash and the
    +ability to support extremely large disk configurations. The
    +open source JFS is based on proven journaled file system technology
    +that is available in a variety of operating systems such as AIX and
    +OS/2.

    ;-)

  16. Re:Don't you mean? by artdodge · · Score: 2
    Actually, no; Daniel Frye announced the two releases yesterday at Usenix, and he made a point of talking about "Linux" and "Open Source", and not "GNU/Linux" and "Free Software".

    For better or for worse - I also watched the NetBSD people just about go ballistic when he said Linux has been ported to every platform ("that matters" was probably implied).

  17. Re:Isn't it third? by jefft · · Score: 3

    XFS and JFS are both sold as part of a commercial (as opposed to "open" or "free") operating system. Reiserfs is not.

  18. How do these differ from Linux Threads? by Kludge · · Score: 2

    Am I right in saying that Linux threads
    are kernel level threads and the IBM/GNU threads are user space threads?

    What's wrong with Linux threads? I've been using them for a while. They seem to work for me.Why are the IBM ones so much better?

    Since they're both posix threads (pthread_create()) how does one determine which one will be used when both are on one system?

    1. Re:How do these differ from Linux Threads? by randombit · · Score: 2

      I had written this out before and then Netscape decided it was time to crash.

      What's wrong with Linux threads? I've been using them for a while. They seem to work for me.Why are the IBM ones so much better?

      LinuxThreads are OK. The problem is that LinuxThreads uses a 1:1 mapping between kernel processes and the threads, whereas this package uses an N:M setup, which is much more scalable. The thing is that Linux doesn't really scale well to large number of processes (by large I mean around 10K+, to pull a number out of my hat). Since LinuxThreads is 1:1, that means these limitations also apply to LinuxThreads. Of course the IBM threads stuff isn't immune but the way it works could help things out quite a bit (though mostly for larger things).

      Also LinuxThreads is kind of buggy. Having not used IBM's stuff I can't say anything one way or another there but hopefully this package improves on that.

      Since they're both posix threads (pthread_create()) how does one determine which one will be used when both are on one system?

      Generally speaking, you're only going to have one of these packages on the system. And since both (in theory) comply with the POSIX standard, it shouldn't matter which one is actually installed (except for the little issue of binary compatability, of course).

    2. Re:How do these differ from Linux Threads? by GGardner · · Score: 2
      >What's wrong with Linux threads?

      Off the top of my head:

      Using pthreads makes core dumps unusable

      Despite "thread aware" patches to gdb, the debugger still wierds out on my when using pthreaded application

      Pthreads mmaps 2Mb for each pthread's stack, meaning that there is a hard limit of around a thousand threads in any 32 bit system

      Doesn't look like the new pthreads implementation really fixes any but the last one, though.

  19. Re:FS conversion tools please... by gmhowell · · Score: 2

    AFAIK (which ain't much), ext3 has this as a design consideration, or at least as part of the implementation.

    I was tempted to wait, but got impatient and used ReiserFS. Perhaps when I upgrade the 20GB drive in there, I'll switch.

    --
    Jesus was all right but his disciples were thick and ordinary. -John Lennon
  20. Re:Questions by gmhowell · · Score: 2

    You can/should be able to replace the WinME box with a Linux box (but the initial setup may require a Win box. My DSL was setup with NT4.0, but now runs on Linux).

    A linux box can be made to read PC disks (Dos, Win3.1->NT), Amiga disks, Mac disks, and a bunch of others.

    There is zero problem accessing files over the network amongst these systems. Depending on the mix, you can use NFS, SMB, AppleTalk, ftp, etc.

    Finding your NIC is the first step. In the past, I would have reccommended linuxnewbie.org to ask that sort of question. Not sure where these days.

    BTW, treat your father like the head of a major corporation: do what you have to do. Don't tell him you switched computers on him. Chances are he'll never notice. I take it you are still in school (be it elementary or university. It doesn't matter) and now have some time off for the summer. Presumably your father works. That gives you plenty of time to fiddle with things. Eventually, you'll get it right, and just leave it on.

    --
    Jesus was all right but his disciples were thick and ordinary. -John Lennon
  21. Re:Too many JFS ?? by gmhowell · · Score: 3

    I'm not sure why anyone (other than Micro-Soft) would think this would be a sign of forking. Presumably, all will wind up in the kernel, and all will be either compiled in or available as modules for all the major distros. "mount -t auto yadda yadda yadda" should take care of this.

    This actually makes Linux stronger, as it provides choice. Got an old system: use ext3. Want speed: use ReiserFS. Want (I don't know. Sorry): use JFS, XFS, fooFS.

    This isn't the either/or situation of FAT, FAT-32, and NTFS (not sure if XP will add another FS standard). All versions of the GNU/Linux OS should have the ability to read all of the filesystems.

    You do, however, have a point that there is some overlap. I am not a part of any of the devel teams (or any devel teams for that matter) so it would seem, at least from a lay perspective, that having (just for example) Hans, the ext3 group, etc working on and submitting patches for JFS would result in the strongest solution. But there is nothing to preclude this from happening (except, perhaps, for Hans' ego and financial plans. And I don't know how open IBM is. And...)

    Anyway, this is fairly early in the development, and the choice of filesystems is hardly as major a concern as the Gnome/KDE schism WRT forking possibilities.

    --
    Jesus was all right but his disciples were thick and ordinary. -John Lennon
  22. Re:Too many JFS ?? - too much is never enough! by henley · · Score: 3
    This actually makes Linux stronger, as it provides choice. Got an old system: use ext3. Want speed: use ReiserFS. Want (I don't know. Sorry): use JFS, XFS, fooFS.

    Speaking as an ex-AIX worshipper (I have now been converted to the One True OS and it's apt-get luvin' incarnation), IBM JFS has one MAJOR attraction for me: ease of filesystem modification.

    I haven't tried JFS/Linux yet, but after years of expanding filesystems on production systems without outage ("chfs -a size=+blocks /fs/mount/point"), porting this to Linux is all it'll take me to switch. Performance? Pah! nice to have, but if you're reliant on FS performance you need to splurge a few beans on more memory. Ease of administration is the major win with JFS here folks....

    --

    --
    I'd rather have a bottle in front of me than a frontal lobotomy
  23. JFS is buggy by chrysalis · · Score: 2

    I just installed JFS to benchmark it. It seems to be a bit buggy : sometimes the keyboard blo



    -- Pure FTP server - Upgrade your FTP server to something simple and secure.

    --
    {{.sig}}
  24. Re:Too many JFS ?? by be-fan · · Score: 2

    Multiple filesystems don't add to fragmentation, since they are all interface compatible. When multiple things have the same interface (whether they be software components or cars) multiplicity is called 'choice'. When they have different interfaces (GNOME, KDE, etc) that is 'fragmentation'.

    --
    A deep unwavering belief is a sure sign you're missing something...
  25. Re:Too many JFS ?? - too much is never enough! by be-fan · · Score: 2

    Actually, XFS is dynamically resizable too. And fast at that.

    BTW> Is it just me, or do ugly people and slow systems have something in common...

    --
    A deep unwavering belief is a sure sign you're missing something...
  26. Pansy-ass lightweights... by be-fan · · Score: 2

    Whenever a potentially interesting tech article comes up on /., all we get is a bunch of pansy-assed posts about licenses or whatnot. This is news for NERDs. Where are the hard-hitting questions? Why hasn't somebody downloaded the damn thing and posted benchmarks comparing the major JFSs? (I'm working on it!) How fast is it? How stable is it? How easy is it to install? How does it work internally? Good grief, you'd think you'd get something meaty on a discussion like this...

    --
    A deep unwavering belief is a sure sign you're missing something...
    1. Re:Pansy-ass lightweights... by be-fan · · Score: 2

      Actually, if you got your head out of your elitist ass, you'd realize that JFSs are useful to EVERYONE, not just 'leet server admins. BeOS users have had a kick-ass JFS for years now helping keep their MP3 collections safe. For these desktop users, speed matters as well as safety. Thus, a benchmark of JFSs IS valid. If XFS and JFS are both equally safe in the "pull-the-plug" test, then why not use the faster one?

      --
      A deep unwavering belief is a sure sign you're missing something...
  27. Filing system? by quartz · · Score: 2

    the second commercial filing system for Linux to reach the exalted 1.0 status!

    Is that something I would run on my filing cabinet?

  28. Congrats, JFS team! by Will+the+Chill · · Score: 2

    Well, we've got ourselves a new filesystem to play with, guys, and IMHO a pretty cool one, at that. I'm a summer intern with the JFS team at IBM, so I'm definitely looking at this subjectively. However, I've been testing it's stability for the past month or so, and have been pleased with the results. (It'll pass RedHat's "cerberus" kernel stressing tests.)

    Oh, and there are more features on the way, so check the JFS website every once in a while!

    -Will the Chill

    --
    Creator of RPerl, Scouter, Juggler, Mormon, Perl Monger, Serial Entrepreneur, Aspiring Astrophysicist, Community Organiz
  29. Re:Questions by emir · · Score: 2

    > As someone who can't use Linux (we have a WinME box sharing our cable modem connection), I have often wondered how compatable are such things as different file systems? Can a linux box read a PC floppy or HD?

    if you mean windows/dos formated floppy/hd by saying PC floppy than the answer is yes, it can read PC floppy or HD. > How about one for Mac?

    not sure about this one , but i think it has support for mac filesystem.

    > Can a redhat box access files from a Mandrake one?

    yes. only difference between different linux distributions a) location of config files b) some distros are using bsd init (slack ?)instead of sysV init like rest of the the distros c) packaging system d) amount of apps shipped with the distro.

    > Can I get a linux box to access the internet through the Windows network?

    i'm no expert in this area but i believe you can do that with the help of samba. try looking at samba.org for more info. there is also free samba book published by oreilly on their site. good luck

    --
    -- http://electronicintifada.net --
  30. Re:Questions by pi_rules · · Score: 2
    Read Win32 and Mac disks? You betcha. Shoot, you can read:
    • ADFS -- RiscOS
    • Amiga FFS
    • Apple Mac
    • BFS -- Boot sector thing for SCO UnixWAre
    • DOS FAT
    • Fat16/32
    • NTFS
    • EFS -- Pre Iso9660 filesystem for CDROMS
    • Ramdisks
    • ISO 9660 for CD's. Plus the MS Joliet extensions
    • Minix FS -- Nostalgia I suppose.
    • FreeVxFS -- main FS in Sco UnixWare the docs say.
    • HPFS -- OS/2's filesystem.
    • QNX4FS -- for QNX Systems
    • ext2 -- most common Linux filesystem
    • System V filesystems, for SCoO, Xenix, and Coherent
    • UDF -- for DVDs
    • UFS -- for SunOS, FreeBSD, NetBSD, OpenBSD, NeXTstep.
    And now we're getting ReiserFS, JFS, and XFS from SGI is on the way. Ext3 is out there too but not used all the time.

    So yeah, you can read Win32 formatted disks and just about everything else under the sun.

    And you don't have to use Windows to use @home. There's plenty of documentation out there on this.
  31. Re:Isn't it third? by Wesley+Felter · · Score: 2

    ReiserFS is funded by Namesys, a for-profit corporation AFAIK.

  32. Isn't it third? by Wesley+Felter · · Score: 4

    What about ReiserFS and XFS? Or is there some weird meaning to "commercial filing system" that I don't get?

  33. Re:beyond 5 by The+Pim · · Score: 2
    Third, everyone picks an appropriate (positive, smartass) moderation for this article

    Uh, I'm talking about the "wakka wakka" article, not mine. You know, the gut-bustingly funny one.

    --

    The evaluation of an action as 'practical' . . . depends on what it is that one wishes to practice.
  34. beyond 5 by The+Pim · · Score: 4
    for the love of jesus, mod this guy up beyond 5.

    A post with Score: 6 has appeared on slashdot before (anyone remember it?). This suggests that there was a race in slashcode; and since slashdot still uses a non-transactional data store, I bet the it's still there. I think everyone gets where I'm going with this.

    So, here's the plan: First, someone moderates this back down to 4. Second, everyone with mod points synchronizes their clocks to UTC (apt-get install ntp). Third, everyone picks an appropriate (positive, smartass) moderation for this article and moves their pointer over the "Moderate" button. Fourth, at exactly midnight (00:00:00 UTC, June 29), everyone clicks "Moderate".

    Everyone without mod points places bets on how high we can get this sucker.

    --

    The evaluation of an action as 'practical' . . . depends on what it is that one wishes to practice.
  35. FS conversion tools please... by 2Bits · · Score: 2
    Alright, some open source hacker will tell me to go write it myself, for this kind of request....

    A lot of people are using Linux distributions (e.g. RH) that don't come with journaling file system by default (argh....). Sure, we can create a dummy partition, and more the system to it, and create the journaled file system (JFS, ReiserFS, ...), and re-install on that, blah blah blah... it's that simple.

    But hey, we got production system out there, and the disk has no space for new parition anymore. And we have patched and configured the system to work exactly like we want (performing, reliable, and secure), and we have no intention to re-install things and migrate. And I have a VAIO 505FX that does not have spare disk space to for use to install journaling FS, and I don't want to go thru all the hassle of re-installing everything.

    So, a FS conversion tool would be really nice, like that DOS to NTFS thingy.

    I'm sure the group (IBM, Reiser, SGI, Ext3) that comes up with the first will have a first-mover advantage and more users.

  36. Re:Too many JFS ?? - too much is never enough! by duffbeer703 · · Score: 2

    Amen brother. AIX rocks.

    I wish they would port the AIX LVM. The linux lvm is a load of shit.

    --
    Conformity is the jailer of freedom and enemy of growth. -JFK
  37. What IBM said when PthNG project was proposed: by JCCyC · · Score: 2

    "Make it so."

  38. Re:Questions by 11223 · · Score: 2

    XFS is *on the way*? I run three computers with XFS and will be installing a fourth shortly. Take a look at their site - not only are they at 1.0, but there's a very useful install disc for RH7.1!

  39. fooFS by Cardhore · · Score: 3

    I don't care if you call your filesystem fooFS; please don't call it BarFS.

  40. Re:Questions by tb3 · · Score: 2
    > Can I get a linux box to access the internet through the Windows network? You don't need to use Samba to get IP Routing, you just need to turn on IP sharing on the Windows box, and configure the Linux box accordingly.

    I've got IP routing working between a Windows box with a cable modem and a Mac. Took about fifteen minutes to set up.

    "What are we going to do tonight, Bill?"

    --

    www.lucernesys.comHorizon: Calendar-based personal finance

  41. Wakka wakka by return+42 · · Score: 5
    Don't those idiots at IBM ever listen to Microsoft? Now look what'll happen!

    GPLGP
    LGPLGPL
    GPLGPLGPL
    GPLGPLG
    PLGPLIBM
    GPLGPLG
    PLGPLGPLG
    PLGPLGP
    LGPLG

  42. No More AIX by locker1776 · · Score: 2

    IBM is just trying to get Linux as stable as AIX. I think they are going to get rid of AIX in a few years, and they hope Linux will be there for enterprise applications. Good for IBM: Free software development. Good for Users: An open source stable operating system with commercial goodies.