Slashdot Mirror


User: petchema

petchema's activity in the archive.

Stories
0
Comments
77
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 77

  1. Re:Let's predict the responses on Sun and 3Com agree to embed Java into Palm Pilot · · Score: 1

    ...As if Sun control over Java protected it from forking...

  2. Re:UpDATE on the server for those interested. on Ask Slashdot: Linux and IDE CD-ROM Changers · · Score: 1
    >I don't know if the kernel supports more than two IDE/EIDE controllers.

    I think recent kernels allow 4 controllers "out of the box", and can be made to support 8 with very little work...

    >If you have that many devices, frankly:
    >GET YOURSELF A SCSI SETUP! STOP THE EIDE INSANITY!

    Agreed. I used to have more than 2 EIDE controllers, but it was 'cause I had an ATAPI streamer that didn't cooperate very well with any other device, and that had to install with its own dumb controller as a last resort... :(

    >IDE I/O is very CPU intensive, you'll find it to be faster to go SCSI.

    That used to be true, but DMA modes aren't CPU intensive anymore. SCSI still has advantages over IDE (being able to hang lots of devices out of a single controller, as you mentionned, is one of them), but CPU usage advantage is a thing of the past.

  3. Re:Integration of the Internet and Everyday Life on Ask Slashdot: The Hazards of Developing the Internet · · Score: 1

    Fine plan. No, go back to reality and Chaos Theory... Boom! :)

  4. Re:Rather Disturbing Signature on Australia Admits to sigint · · Score: 1
    >>Minds are like parachutes, they work best when open.

    >But remember, if your mind is _too_ open, then everything falls out. (Or any trash can fall in).

    Or other people may get in and look around. That'd be more "on topic" :)

  5. Re:DONT INSTALL IT on MS writing Internet Explorer for Linux? · · Score: 1

    Actually TrueType fonts should be "enhanced" with "hints" that allow them to be rendered on low res devices and still be readable.
    I guess the problem is that very few fonts designers take the time to add those "hints", and that all but very standard fonts are ugly at some resolutions.

  6. Re:Usage on MS writing Internet Explorer for Linux? · · Score: 1
    Mmmh, if IE for Linux is just as bloated and slow as IE for the other *nix OSes (Solaris and HPUX right now, iirc), then using IE on Linux will be a good way to be disgusted of Linux from the very start.
    And I really don't see how it could be otherwise; Starting a native *nix version (no more megs of "win32 compatilibity libs") from scratch would cost too much of development time, for a low priority platform...
    IE is fast because it is integrated (you pay the loading time when the GUI start, where it is less noticable), so if you want IE, you'll have to use Windows or be very disappointed by performance. IE was not designed for portability, mind you.

    Personally, I'm don't feel a huge need to replace Netscape bugs with Microsoft ones on my desktop. IE parsers must be horrible cludges (ever tried an URL with "&sect=" as a substring ? just an example of what shouldn't happen). I hate how IE promotes the use of tables with fixed sizes everywhere. Can anyone write pages "best viewed in 680x800" so it looks good on my browser ?). And so on.

    No thanks.

  7. Re:Okay, here's a question on Wcarchive Does 1.39tb In 24 Hours · · Score: 1

    fyi, cdrom.com box *is* a heavyly tweaked system (userland for sure, kernel almost certainly).

  8. Re:Ha! Difficult Linux installs ... on Time Review of Linux · · Score: 1
    >After it found it, the install went
    >relatively smoothly, except for the fact that all
    >the packages were just listed by a single letter,
    >with no explanations, and being a Linux novice,
    >"D" did not mean anything to me.

    It's not the problem of being a novice, it's a problem with reading the docs. Last time I installed a Slackware distro ('95), it came with a small "book" that explained, among things, what each package set was about (D is development tools, iirc).
    I must add that Slackware is not the easiest distro to start with, its motto is KISS (Keep It Simple Stupid), so you have to have some hacking abilities to enjoy it.

  9. Re:Thank you Microsoft! on Microsoft starts anti-Linux Group · · Score: 1

    [Taken from linux-kernel mailing-list]

    To: Juergen Schmidt
    cc: linux-kernel@vger.rutgers.edu
    Subject: Re: Bad apache perfomance wtih linux SMP
    References:
    From: Andi Kleen
    Date: 18 May 1999 15:02:08 +0200
    In-Reply-To: Juergen Schmidt's message of "Tue, 18 May 1999 05:23:42 GMT"
    Message-ID:

    Juergen Schmidt writes:
    > Do you have any ideas, what's happening there?
    > Or even better, how to fix this?

    One culprit is most likely that the data copy for TCP sending runs completely
    serialized. This can be fixed by doing replacing the

    skb->csum = csum_and_copy_from_user(from,
    skb_put(skb, copy), copy, 0, &err);

    in tcp.c:tcp_do_sendmsg with

    unlock_kernel();
    skb->csum = csum_and_copy_from_user(from,
    skb_put(skb, copy), copy, 0, &err);
    lock_kernel();

    The patch does not violate any locking requirements in the kernel, because
    the kerne lock could have been dropped at any time anyways when the copy_from_user
    slept to swap a page in.
    (I'm not sure if running a published benchmark with such a patch is fair though.
    On the other hand Microsoft did some many hidden changes in their service packs
    that probably everything is allowed ;)

    Another problem is that Linux 2.2 per default uses only 1GB of memory. This can
    be tuned by changing the PAGE_OFFSET constant in include/asm/page.h and
    arch/i386/vmlinux.lds from 0xc0000000 to 0x80000000 or so and recompiling
    (the tradeoff is that that it limits the per process virtual memory to ~1.8GB,
    but increases the overall physical memory that can be mapped).
    [...]
    Message-ID:
    Date: Tue, 18 May 1999 19:44:25 +0200
    From: Juergen Schmidt
    To: Andi Kleen
    CC: linux-kernel@vger.rutgers.edu
    Subject: Re: Bad apache perfomance wtih linux SMP
    References:

    Andi Kleen wrote:
    > One culprit is most likely that the data copy for TCP sending runs completely
    > serialized. This can be fixed by doing replacing the
    >
    > skb->csum = csum_and_copy_from_user(from,
    > skb_put(skb, copy), copy, 0, &err);
    >
    > in tcp.c:tcp_do_sendmsg with
    >
    > unlock_kernel();
    > skb->csum = csum_and_copy_from_user(from,
    > skb_put(skb, copy), copy, 0, &err);
    > lock_kernel();

    Bingo !!!

    This raised performance from 270 rps to 802 rps when 64 clients were
    pulling a 4k HTML-page. Single CPU perfomance lies by 890 rps -- but the
    new numbers are just from a very short run. (BTW: NT/IIS on 4 CPUs
    deliver 840 rps :-)

    Or with apaches ab:

    ab -c 8 -t 120 127.0.0.1/4k.html

    produces:

    2.2.8 4 CPUs: 350.95
    2.2.8 4 CPUs with patch: 1334.19
    2.2.8 no SMP: 1540.22
    [...]

    If a two lines patch fixed 95% of the problem, I suppose a full de-serialization of the tcp stack (and vfs/filesystems ? please) would allow Linux to beat NT on that test...
    This is a much more complex task, but that kind of news help me keeping the faith in Linux kernel developers...
    Kernel hackers rocks !!

  10. Re:A surprisingly knowledgeable article on SGI open-sourcing XFS · · Score: 2

    Not to mention Hans Reiser's fs called (guess what) Reiserfs.
    It wouldn't have journaling at first, but it is planned.

  11. Re:what is the difference? on SGI open-sourcing XFS · · Score: 2

    Journaling is not about not loosing data (that would requires no-delay write to disk, etc), but about being able to return to a consistent state fast. You may loose several seconds of updates (or more), but you are then guarantee to have all your files as they were supposed to be (from system and applications point-of-vue) at that time, not a "hopefully rightly fixes fs" like what most *fsck can do.

  12. No libc5 version ? on Realplayer G2 for Linux · · Score: 1

    I know, my libc is getting old, but it works :)

  13. Re:Menu code on Microsoft "thinking about" Open Source · · Score: 1

    Netscape scrolling repaint is plain trash too.
    And ImageMagic repaint is all but optimized... Try moving a window in "OpaqueMove" mode over it... :(
    Or is it an X problem ? Off topic anyway.

  14. Re:Relax and enjoy school and Life. Work can wait. on The Dark Side of IT · · Score: 1
    No wonder why you find so much unmaintainable code all around. People think that because they can write code they're done.

    :((

  15. Re:Reality on NOS Crossroads · · Score: 1

    threads are much less problematic than select() actually.

  16. Re:P233 + quake on Q3Test 1.05 for Linux released · · Score: 1

    Tried with a PII 350 + 192Mb + Voodoo2
    CPU usage was between 45% and 60% most of the time, with peaks at 100% when entering rooms/enabling new visual effects (like "quake power" effect).
    q3 also used 85Mb during play, so it may be playable with a voodoo2 and enough ram on your box.

  17. like ? on NSI challenged over "obscene" domains · · Score: 1

    nsisucks.com ?

  18. Your Right, I had an intership with em. on The Mindcraft Debacle: Part MCXVI · · Score: 1

    You missed this interview with Linus some time ago where he said (sort of late answer to Tanenbaum's "Linux is obsolete"), mainly, that microkernels were the panacea for researchers only, but that in real world you could have most of microkernel's benefits without the overhead with a monolithic kernel and good code design...

  19. And your point is??? on "Hackers" are Dumb · · Score: 1
    That it's not surprizing that those who get caught are mostly dumb, since smart ones usually manage to stay unseen...

    So "All those hackers [examples of lately caught hand-in-sack people there] are dumb" does not prove anything, nor is helpful in evaluating the damage done by crackers.

    I read it as a "nice" way to downplay the involvment of Word macros in industrial piracy ;(

  20. Bias on "Hackers" are Dumb · · Score: 1

    All the crackers that have been caught have been caught.

  21. Thanks... on Mozilla M4 is Out · · Score: 1
    Most of the time, it's the netscape's event queing, that uses a mere Unix pipe, that is overflowing (and blocking)...
    Stanislav Meduna posted a workaround on the linux-kernel mailing list the 23rd of January, look for the "nspipepatch".

    It solved 95% of my problems (Communicator still "freezes" at times 'till I move the mouse, but it occurs much less often now; It still randomly crashes in java/javascript stuff, though).

  22. 2 GB? I thought it was 8GB on D.H. Brown Associates Attacks Linux · · Score: 2

    > Hmmm... I thought that at some point Intel made
    > it possible to do 36 bit memory addressing on the
    > i686 processors. This would allow access to 8 GB
    > of memory. Of course I could totaly be off my
    > rocker.

    Yes, but that involves gross hacks, thanks to
    yet-another-f*cked-up-design-from-youknowwho.

    NT mm engineers screamed "yuck" loudly, but will
    add support for that because they will be paid for
    the job.

    Linus (and "official kernel team") won't mangle
    Linux mm to support this. 3rd parties may, but
    anyone needing such amounts of memory should use
    clean 64 bit architectures anyway.

  23. Looks like many people missed the point on French ISP responsible of "all content" · · Score: 1
    > ...as a model...
    From what I've read those were "private" pictures, and I interpret that as pictures of the person, not the model.
    > (not to mention wife of Johnny Hallyday, no?)
    Daughter, afaik.
    > ...is a public figure, and as such does not necessarily "own" her own image.
    Maybe it's just me, but I think one person can have many images; She's got a professionnal image (owned by her model agency ?), but that doesn't deny her from having the right for privacy, that is the right to protect her intimate image.

    The case is not very clear, but again, I don't think it's that _specific_ case that is really important.

  24. They're right! => competition and standardization on Compaq Denies Being a Microsoft Victim · · Score: 1

    Are you trying to say that people flocked on Windows because MS-DOS was so bad ?
    Well, you're right.

  25. Looks like many people missed the point on French ISP responsible of "all content" · · Score: 1

    Yeah, right. Not to mention off topic messages :)
    Estelle (nonstanding what you think of her) has the *right* to sue to protect her "image".
    And someone *has* to be responsible for content. Just imagine another case, child porn or whatever. Do you think it should be allowed, since none is responsible ? Even libertarians among us should say no.
    It seems that the problem is that you could open an account on the server anonymously. So since justice couldn't sue the poster (who is the real guilty man in this history if you ask me), they sue the hosting site.
    Morality: now in France, you can open free sites, people can say what they want as far as they take their responsabilities, but you cannot open anonymous free sites if you don't plan de revue content before it goes online.
    (And 400 000 FF is a huge ammount of money for a free site; I understand the motive, but it's one or two orders of magnitude too much imho; Valentin doesn't look like a bad guy after all, just a bit too naive).