Slashdot Mirror


User: Jadeus

Jadeus's activity in the archive.

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

Comments · 43

  1. Re:Here's your answer, Peter.. on Kernel.org Needs Some Help, Perl Foundation Got Some · · Score: 1

    I believe this is what you're looking for, and many will probably find something they want here. Since the sunsite.unc.edu days downloading Slack with a 0.99 kernel, these guys have always given me great thruput even on crappy 2400 baud connections.

  2. Re:Quit Complaining on Aristotle, Dilbert And The Working Life · · Score: 1
    I currently work for a government agency. For a few weeks in a row I can go without having more than an hour's work a day, then bang, I go a week where I'd need to put in 20 hours a day to keep up. [...] But literally 3 weeks of sitting on my ass doing nothing? Do you have any idea how long these days are?
    Yes. Followed by
    I have to try and keep up with technology on my own time.
    Sounds like you have (8*5*3) hours to work with whatever tech you want to. In my own case, I've used time like this to find new things to do / new ways to do them, impress management, and get promoted. Just a thought, but hell, if they're paying you to fiddle your thumbs then get your fingers in on the action and learn something.
  3. Re:AMD's Perception in business on What Happened To SMP For AMD processors? · · Score: 1

    I haven't had this experience. Dell cases are usually very easy to get into (well, the old ones were; the new ones are too, once you figure out how to get the first one open ;-) and their support is top-notch. I've heard some stories to the contrary, but the number we received after complaining to one of their management types (this was before my time) was guarenteed to be answered within two minutes, and it always has.

    They even tried their hardest to support Linux on an old 6200, way before any official word from Dell.

    You are right, though, you have to convince their support staff that the [insert hardware here] is broken before they'll do anything about it, but once you do you'll either have a tech there the next business day, or the part in 2-3 days.

    Overall, their product is decent, and their support is excellent. Not to say that we buy Dells anymore, I made sure we put an end to that (beige boxes all the way :).

  4. Re:Info on 760, 760MP on What Happened To SMP For AMD processors? · · Score: 1
    I think the reason people get the impression that AMD chips are not top of the line, is because of the poor compatability with other components. I've had a lot of problems getting AMD chips to play nice with my other cards.
    This was true with the K6-2's (or, rather, the chipsets that "supported" them). I "upgraded" to one, and was bitter for a long time, since it's AGP support was broken at best. However, I got an Athlon system at work, which convinced me to spend the money on a substantial system at home, and I haven't had a single problem or complaint with it - the Athlon kicks butt!
  5. Dell is on crack (w/proof, long) on Apache vs IIS in Performance? · · Score: 1

    My digital watch could handle 100,000 hits per day. I tried ab (ApacheBenchmark, comes with Apache) on my workstation, which is significantly more powerful than my watch. ;-) The config:

    Athlon 850/512MB PC133/Adaptec 2940 (U2W LVD)/9GB Cheetahs. This was going through localhost since Apache, and not the network, is in question. Running RH62, default kernel, and more importantly, default Apache installation, with a slight system load (desktop crap).

    Bottom line: 112 to 128 seconds to fulfill 100k requests. Page was the Piranha (static) login page. Taking 120 seconds as an average, that's 72,000,000 hits per day under constant load, on relatively cheap desktop hardware.

    Using -k (keep alive) with 128 tasks, this even better: 71 seconds, 1396 hits/second, or 121.6 million hits per day.

    -----
    primus:~# ab -n 100000 -c 128 -k localhost:8000/
    This is ApacheBench, Version 1.3c <$Revision: 1.38 $> apache-1.3
    Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
    Copyright (c) 1998-1999 The Apache Group, http://www.apache.org/

    Server Software: Apache/1.3.12
    Server Hostname: localhost
    Server Port: 8000

    Document Path: /
    Document Length: 1314 bytes

    Concurrency Level: 128
    Time taken for tests: 71.620 seconds
    Complete requests: 100000
    Failed requests: 0
    Keep-Alive requests: 99078
    Total transferred: 164082524 bytes
    HTML transferred: 131419710 bytes
    Requests per second: 1396.26
    Transfer rate: 2291.02 kb/s received

    Connnection Times (ms)
    min avg max
    Connect: 0 0 112
    Processing: 1 91 6992
    Total: 1 91 7104

    ------------------------------------------------ --------------

    primus:~# ab -n 100000 -c 32 localhost:8000/
    This is ApacheBench, Version 1.3c <$Revision: 1.38 $> apache-1.3
    Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
    Copyright (c) 1998-1999 The Apache Group, http://www.apache.org/

    Server Software: Apache/1.3.12
    Server Hostname: localhost
    Server Port: 8000

    Document Path: /
    Document Length: 1314 bytes

    Concurrency Level: 32
    Time taken for tests: 126.877 seconds
    Complete requests: 100000
    Failed requests: 0
    Total transferred: 160411228 bytes
    HTML transferred: 131409198 bytes
    Requests per second: 788.16
    Transfer rate: 1264.31 kb/s received

    Connnection Times (ms)
    min avg max
    Connect: 0 6 194
    Processing: 12 33 740
    Total: 12 39 934

    ------------------------------------------------ --------------

    primus:~# ab -n 100000 -c 128 localhost:8000/
    This is ApacheBench, Version 1.3c <$Revision: 1.38 $> apache-1.3
    Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
    Copyright (c) 1998-1999 The Apache Group, http://www.apache.org/

    Server Software: Apache/1.3.12
    Server Hostname: localhost
    Server Port: 8000

    Document Path: /
    Document Length: 1314 bytes

    Concurrency Level: 128
    Time taken for tests: 112.513 seconds
    Complete requests: 100000
    Failed requests: 0
    Total transferred: 160476992 bytes
    HTML transferred: 131463072 bytes
    Requests per second: 888.79
    Transfer rate: 1426.30 kb/s received

    Connnection Times (ms)
    min avg max
    Connect: 0 27 166
    Processing: 21 115 716
    Total: 21 142 882

    ------------------------------------------------ --------------

    primus:~# ab -n 100000 -c 512 localhost:8000/
    This is ApacheBench, Version 1.3c <$Revision: 1.38 $> apache-1.3
    Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
    Copyright (c) 1998-1999 The Apache Group, http://www.apache.org/

    Server Software: Apache/1.3.12
    Server Hostname: localhost
    Server Port: 8000

    Document Path: /
    Document Length: 1314 bytes

    Concurrency Level: 512
    Time taken for tests: 124.992 seconds
    Complete requests: 100000
    Failed requests: 0
    Total transferred: 160443308 bytes
    HTML transferred: 131435478 bytes
    Requests per second: 800.05
    Transfer rate: 1283.63 kb/s received

    Connnection Times (ms)
    min avg max
    Connect: 0 115 93103
    Processing: 4 304 268
    Total: 4 419 93371

  6. Re:modem=modulate/demodulate on WinDSL Coming? · · Score: 1

    I do not know about dsl, but a cable modem is actually a modem. The signal on the cable line is an analog signal, and has to be converted into
    digital information. Yes it is not converting an audio signal that you can hear, but it is modulating/demodulating so it is actually a modem.

    DSL stands for Digital Subscriber Line. www.adsl.org.

  7. Another vote for Total Annihilation on Forum: Future Ports of Games to Linux · · Score: 1

    There are only a few games I play, and TA is my all time favorite. I'd gladly pay twice what I paid for the Windows version for a Linux version. In fact, I have a copy of Win98 specifically for TA, which is kind of annoying to have to keep around.

    Cavedog: PLEASE! :)

  8. Re:To overclock or not to overclock.... on Celeron 466 - Good Or Bad? · · Score: 1

    I also have a K6-2/350, but it has a 100MHz bus, so there's no problem using PC100 RAM. As for overclocking RAM, I have done so (with that same system, actually). Depending on the RAM it can either be stable as a rock (and provide a significant performance boost), or utterly unstable.

    I have seen boards with seperate jumpers for RAM and CPU bus speeds, but I'm curious to know if the RAM could be clocked higher than the CPU. I assume not, since the bus to the RAM is regulated by the CPU.

    BTW, I have yet another board which uses DIP switches. And here I thought they had all been burned in the Great Purges. :)

  9. Re:To overclock or not to overclock.... on Celeron 466 - Good Or Bad? · · Score: 1

    The only problem with RAM is that newer Celerons have their multiplier locked (my 400A's are locked at 6). By default the bus is 66Mhz, which means that your RAM is also running at that speed, getting no gain from PC100 RAM. The only solution, unless your board lets you set the CPU and RAM clocks differently (it's possible to run RAM slower than the CPU, but I don't believe it can be done the other way around), is to overclock. I've been able to overclock my CPUs to a 92MHz bus, so there's not much loss. It all depends on the chip and board I suppose.

  10. Re:Dual Overclocked celerons and Linux on Celeron 466 - Good Or Bad? · · Score: 2

    I also have the BP6. I'm using two 400A (Mendocino) CPUs. They're not overclocked at the moment because of cooling issues - they run at 55 degress C cracking RC5. However, I was able to overclock them to 572 running stable, if way too hot.

    The ATA/66 support works great under Linux. You need to get the HPT366 patch (available from here or any other kernel.org mirror). The README says it won't boot from the ATA/66 bus, but it works fine for me.

    The Win9x and NT support is fine, but get the newest drivers from here. After applying the newest BIOS flash I was unable to install Win2k, but with the earlier BIOS it worked fine.

    Also, the BP6 website has some useful information.

  11. Re:Complexity is like a liquid...incompressible on Gartner Slams Linux · · Score: 1

    The user interface is fine (due largely to the fact that they stole it from the mac)

    More like they stole it from OS/2, right down to the single click close icons. But thru four iterations of Windows, they still can't give me transparency on icon text. :(
  12. Re:Thanks, but no thanks on Microsoft Clarifies Linux Myths · · Score: 2

    _A_ Linux swap file may have a limit of 128MB, but you can have _more than one_ swap file, which is probably on a completely different paradigm than that of the Microsoft developers.

    Actually, that was a limitation in the 2.0 kernels. I have several 2.2.x (x=10/12) systems running with 256MB swap partitions.
  13. Re:The NT myth on Dvorak On Linux And "The Big Time" · · Score: 1

    What we need now is to have someone start LinuxFacts.com (or some other such name) and do things like benchmarking, stability testing, and basically serve as an "one stop open-source marketing shop".


    www.linuxpr.com

  14. Fast from 14 hops on Load Test the New Slashdot Setup · · Score: 1

    She's fast like the speed (2.2Mbps DSL, Ottawa). Almost as quick as my LAN, I like it. :)

  15. Bigger bits, softer blocks, tighter ASCII... on Forged e-mails from Linus · · Score: 1

    And if I happen to crack that one special RC5 block then I've got a few grand to buy some new hardware. Besides, distributed.net's numbers are bigger. :)

  16. Re:THERE IS NO GLOBAL EMAIL TAX IN THE WORKS! on UN Proposes Email Tax · · Score: 1

    Now then, I'm certainly not saying that these nations should not have help, by way of charity of other voluntary effort. It's not the dollars I'm opposed to, but the general principle. I simply do not believe that the proper way to make things happen is by taxing industrialized countries and passing the funds along to the less fortunate, from each according to ability and to each according to need.


    I'd rather see the funds from any tax like this to go to major upgrades here in NA. Gigabit fibre to my living room, bring it on, and send our then outdated OC-3/etc technology to these nations. Kind of an infrastructure hand-me-down, the big kids get the new toys and the little ones get the rest. Seems fair to me, considering we're paying for it.
  17. Re:64bit pci x 5 on Ask Slashdot: Linux and Fibre Channel Storage Systems · · Score: 1

    I haven't used it, but Intel sells their AC450NX "Server Platform", a quad Xeon board sporting five 64bit PCI slots and two 32bit buses for six 32bit slots. It also supports 8gig of ECC (isn't that architecturally impossible?)

    Yours for the low, low cost of an internal organ of your choice.

    http://www.intel.com/design/s ervers/ac450nx/index.htm


  18. Re:Roadrunner service on @Home quietly initiates 128k upload cap · · Score: 1

    I get 1.1mbps upstream with a static IP and non-proxied access for $65 - Canadian. It's not sold here anymore, now Bell uses Nortel's 1Meg modem.