Slashdot Mirror


User: ArbitraryConstant

ArbitraryConstant's activity in the archive.

Stories
0
Comments
1,513
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1,513

  1. Re:A Vast Sea on Toshiba Recalls Notebook RAM · · Score: 2, Interesting

    Note the recent decrease in hard drive warantees and the even more recent increase.

    People voted with their feet, because hard drive failures are extremely annoying.

    CD-ROMs usually fail harmlessly and can be replaced painlessly.

  2. Re:SMP support on OpenBSD 3.6 Released! · · Score: 1

    The OpenBSD crowd spent their time worrying about those very security problems, as well as others. I suspect they wanted SMP now because the dual core chips are going to start coming out soon.

    Also... some security problems come from race conditions. Those are a lot easier to avoid in a biglock kernel than they are in something like FreeBSD 5.

  3. Re:Firewall ? on OpenBSD 3.6 Released! · · Score: 1

    That's not entirely accurate. NetFilter can do it. It's really ugly though. You have to tell it where the ACK flag is in the headers because it doesn't know.

    From the site I linked:

    tc filter add dev ppp14 parent 1:0 protocol ip prio 10 u32 \
    match ip protocol 6 0xff \
    match u8 0x05 0x0f at 0 \
    match u16 0x0000 0xffc0 at 2 \
    match u8 0x10 0xff at 33 \
    flowid 1:3


    That will (apparently) prioritize ACK packets with no payload. Then there's the PF way. I can actually write one of these rules myself without copy & pasting some magic out of some HOWTO.

    pass out on $external_nic queue( out_standard, out_fast )

    You'd probably want to add a "keep state" to that, and maybe other stuff... but that's the basic idea.

  4. Re:Catching up on New Intel Chipset and Extreme Edition CPU Tested · · Score: 1

    FSB speed is basically irrelevant when it's fast enough to keep up with the memory bus, as Intel has demonstrated for us. The only thing the chip ever does (with some VERY RARE exceptions) is access memory.

    Even on a two processor system, the speed of the memory bus is the bottleneck. Since the only thing the processors ever do is access memory, and there is only one memory bus, the extra speed doesn't help anything.

    One assumes that IBM has a good reason for pumping up the bus speed, but it has nothing to do with accessing memory faster. More likely it's so they don't have to muck around with the internals of the chip when they bump the clock speed.

  5. Bob the Orca is cool on NetBSD Chooses New Logo · · Score: 1

    I'm not saying you deserved to win (as I'm sure there were hundreds of equally cool or cooler logos submitted), but you deserved to win a great deal more than the "flag of indifference".

  6. the contest, months of waiting... for THAT? on NetBSD Chooses New Logo · · Score: 5, Interesting

    I'm sorry, but it's really hard to get excited about that logo. Seems to me they wanted to be so neutral, so inoffensive to everyone in the entire world that they picked a logo that means nothing.

    That sound you hear is millions of geeks the world over saying "meh".

  7. Re:It is just me... on Gentoo Ricer Comparison · · Score: 1

    Let me know when the Gentoo zealots stop seeing my sig and deciding that they should try to convince me that my experience didn't suck.

  8. Re:How does BitTorrent fit into all of this? on New RIAA File-swapping Suits Target Students · · Score: 1

    "since BitTorrent isn't a huge central network it's quite likely IMO that Torrent users are mostly safe."

    I disagree. The tracker makes no attempt to conceal your IP address. All the RIAA (or MPAA) needs to do is grab a bunch of .torrents and they can get a list of IPs from the tracker.

    The strengths of bittorrent are that a) it has substantial legitimate uses (all those Linux ISOs, etc) and b) you don't have to tell anyone about your tracker.

    I wouldn't feel safe and secure using suprnova though. Well, not unless I lived in Canada. Which I do.

  9. Re:What if on New RIAA File-swapping Suits Target Students · · Score: 1

    Given the numbers (at least tens of thousands of people), it's near certain that a large number of slashdotters already have been sued. Apart from bitching and moaning, I don't see a lot of change around here.

  10. Re:WHY ISNT THIS DEFAULT? on P2P Not Dead, Just Hiding · · Score: 1

    "So, you run PF on your Mac then?"

    No. MacOS uses ipfw.

    All traffic on my network destined for the Internet passes through my OpenBSD machine, and it prioritizes ACKs for everyone. My Mac is a laptop, and when I'm elsewhere I rely on the built in, auto-configured ipfw. It doesn't do traffic shaping or anything, but it does the job.

  11. Re:WHY ISNT THIS DEFAULT? on P2P Not Dead, Just Hiding · · Score: 1

    "Why isnt this behaviour to prioritize ACK packets the default operation in Linux?"

    It's not the default operation on any OS I know, the PF configuration syntax just allows you to specify what to do easier than on Linux. On Linux you must specify a mask to apply to the headers to tell the firewall which packets to consider high priority. On OpenBSD you just give it two different queues. It uses the first one by default, it uses the second one if it's important. It takes care of the details.

    You need to know how fast the connection actually is, rather than what the NIC reports, which is why it can't be done by default. My NIC reports that my internet connection is 100 mbit/s, but it's actually 5 mbit/s down 512 kbit/s up. TCP throttles connections by going as fast as it can without dropping packets, so it doesn't actually know for sure how fast the connection is.

    "Can any one help shed some light on doing this for Linux easily?"

    Some HOWTO somewhere

    Scroll down to "General Selectors". It's not what I would call easy, but that's all I could find... it's possible there's something better out there, but I'm not motivated to look because my OpenBSD setup already works.

    Fortunately my Mac and my Linux box can benefit from the OpenBSD firewall. The Mac and Linux firewalls suck, but the OSes are good for other things. :)

  12. PF can help on P2P Not Dead, Just Hiding · · Score: 2, Informative

    From RFC 3449: "performance often degrades significantly because of imperfection and variability in the ACK feedback from the receiver to the sender."

    prioritizing ACK packets with PF on OpenBSD

    This was posted on Slashdot a while back. I personally use this for my home network with pretty much the same results posted there (as far as I can tell without doing formal testing). It's pretty much the only way I can keep my connection usable when my web server or torrents are having a good day.

    PF is now available on OpenBSD, FreeBSD, NetBSD and DragonFlyBSD. I think some of them may still be lacking ALTQ support (needed to do the stuff in that link), but I'm not sure, I don't keep track of all of them.

    I'm vaguely aware of NetFilter on Linux having similar capabilities, but AFAIK you need to tell it how to detect ACK and URG packets, it doesn't "just know" like PF does. I could be wrong about that, as it's been a long time since I looked into it. IPF and IPFW may or may not be able to do this, I have no knowledge of their capabilities in this area.

  13. Re:Google needs to toss its cookies... on Gmail Accounts Vulnerable to XSS Exploit · · Score: 4, Informative

    I don't believe they use a forever cookie, they use a cookie that's invalidated after you log out OR (optionally) a 2 week cookie.

    What I don't like about it is that it doesn't use SSL after you log in.

  14. Amazon.ca doesn't have it... on SuSE Linux 9.2 Professional Released · · Score: 1

    But they suck anyway. I've had problems with 4 of the last 5 orders I placed with them. And with the exchange rate being what it is*, it's probably cheaper to order it from Amazon.com anyway. I guess Bush is good for something after all.

    * USD$1.00 = CDN$0.821

  15. Re:Makes perfect sense to me on Nintendo Apologizes to SuicideGirls · · Score: 1

    "Yeah, I am *really* sure they were *scared* of that one."

    You're kidding, right? Penny Arcade is one of the most widely read and most influential gaming sites out there. They're also a good indicator of the mood of the industry.

    I'm not a gamer, but even I know that much.

  16. Re:Makes perfect sense to me on Nintendo Apologizes to SuicideGirls · · Score: 2, Insightful

    While I agree that Nintendo took appropriate action, I think that they realized that they needed to dispose of the situation very quickly once it started hitting the major news sites. And Penny Arcade. :)

  17. Re:I said it before... on Nintendo Apologizes to SuicideGirls · · Score: 2, Funny

    I think it's a conspiracy. One assumes at least some of the 200k geeks will pay to see the hot goth chicks naked. They both benefit.

  18. Re:problem on Researcher Only High Bandwidth Network · · Score: 1

    It might be harder, but it's possible, and the signal has to go through routers, which can be compromised.

    To store it, I imagine you're want a RAID array. A big one.

  19. problem on Researcher Only High Bandwidth Network · · Score: 1

    Do you want your confidential data shooting across this network in plaintext?

    Alternatively, do you want to encrypt data fast enough for it to be worth it?

  20. Re:Well, clearly Nintendo is crazy on Nintendo Threatens Suicidegirls Over IP Use · · Score: 1

    No, I'm not. Fark is completely different.

    For one thing, on Fark people would be posting barely SFW pictures.

  21. Re:Well, clearly Nintendo is crazy on Nintendo Threatens Suicidegirls Over IP Use · · Score: 5, Funny

    No chance of intelligent conversation in this thread. At all.

  22. Re:Dual G5 Comparison? on The Return of the Sun Workstation, With AMD's Help · · Score: 1

    " I wonder how these babies stack up against the dual G5 machines Apple has been offering. Looking at the specs, the Mac looks like a better deal."

    As always, it depends on what you want it for.

    The w2100z (and the single processor w1100z) have a 10k RPM Ultra320 SCSI drive, ECC memory, etc. These machines are built to be much more reliable than anything meant for the desktop from any OEM (including Apple). Also, for some tasks, the Opteron has an edge over the G5 for various reasons (on die memory controller reduces latency, bigger cache, etc).

    Another consideration is the OS choice. It'll run Windows (if for some reason you wanted to run Windows), Linux*, and Solaris. There are some things for which MacOS is better suited (that would be I own an Apple computer), but there's plenty of stuff for which Solaris or Linux is better suited.

    Like I said. It depends on what you want it for.

    * - Note that while Linux will run on Apple hardware, stuff like Java is not available, and some things don't run properly.

  23. Re:Don't call this a comeback, been here for years on The Return of the Sun Workstation, With AMD's Help · · Score: 1

    "The title is a little interesting to me. The Return of the SUN Workstation. Does this mean to say that the current versions of UltraSPARC and Sun Blade systems shouldn't be considered workstations? What do we (as a /. community) describe workstation as, anyway? Do we mean to say really high end 3D work in CAD/CAM, etc? Is the lowly XP machine I'm forced to use at work a "workstation" because it's where I get work done?"

    It's a "return" because from a performance standpoint, SPARC can't keep up anymore.

  24. Re:Too late for me on Netatalk 2.0.0 Released · · Score: 1

    What do you hate about NFS? Please note that I'm not deffending it, I'm merely curious.

  25. Re:Pure speculation on Google-branded Firefox? · · Score: 1

    "But if it turns out to be real, will they be able to gain a significant market share?"

    Almost certainly yes. Mozilla derived browsers have a pretty good share with people that actually know what it is. When most others hear about another browser, they think "Oh, that's just a third party browser that probably doesn't work properly.".

    On the other hand, the Google name carries vast weight. Google has a reputation for going everywhere and working with everything. A better reputation than Microsoft.