Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Comment Re:News For Nerds (Score 1) 501

Face it. What you said was wrong. Play it off some more if you want. We all know women never admit when they're wrong no matter how obvious that fact is to everyone else.

Don't want to be thought the typical female? Don't act the part. None of us are gonna get any pussy from you (and you're probably an undesirable fatass anyway though your lack of logic suggests maybe this isn't the deal) so really what is your incentive to play coy? Just admit you were wrong.

Someone just lost yet another chance at getting some...

Must be getting really frustrating for you, eh?

Comment Re:Switch to Deadline (Score 1) 472

There are people out there using Python as their shell, would you cater for them in your one-liner as well? I only assumed the lowest common denominator, a POSIX-compatible shell. (Of course the ksh-ism slipped in, didn't test enough).

Awk is fine by me, what I'm allergic to is eval/piping commands to a shell, input validation becomes a bitch there. This is what prompted my original reply by the way, I never meant to enter pedant mode.

To close this off, hats off to you, you sure do know your shit. ;)

AMD

AMD One-Ups Intel With Cheap Desktop Chips 362

CWmike writes "Advanced Micro Devices on Tuesday announced inexpensive desktop microprocessors with up to six cores to put pricing pressure on rival Intel. AMD's new chips include the fastest AMD Phenom II X6 1075T six-core processor, which is priced 'under $250' for 1,000 units, AMD said. AMD also introduced a range of dual-core and quad-core Athlon II and Phenom II desktop microprocessors priced between $76 and $185. By comparison, Intel's cheapest six-core processor is the Core i7-970 processor, which is priced at $885 per 1,000 units, according to a price list on Intel's website."

Comment Re:Leaky Fawcet (Score 3, Interesting) 129

Excuse my nitpicking, your post sparked some new questions for me:

The problem stems when legitimate applications attempt to use that memory. How long does it take to page (read/wirte) 16GB, 4KB at a time?

Are you sure that's it's only reading/writing 4KB at a time? It seems pretty braindead to me.

The old 1:1+x and 2:1 memory to disk ratios are based on notions of swapping rather than paging (yes, those are two different virtual memory techniques), plus allowing room for kernel dumps, etc. Paging is far more efficient than swapping ever was.

Could you elaborate on the difference between swapping and paging? I have always thought of it (adopting the term "paging") as an effort to disconnect modern Virtual Memory implementations from the awful VM performance of Windows 3.1/9x. Wikipedia mentions them as interchangeable terms and other sources on the web seem to agree.

You might come back and say, one day I might need it. Well, one day you can create a file (dd if=/dev/zero of=/pagefile bs=1024 count=xxxx), initialize it as page (mkswap /pagefile), and add it as a low priority paging device (swapon -p0 /pagefile). Problem solved.

Just mentioning here that Swapspace (Debian package) takes care of that, with configurable thresholds.

You may say the performance will be horrible with paging on top of a file system - but if you're overflowing several GB to a page file on top of a file system, the performance impact won't be noticeable as you already have far, far greater performance problems. And if the page activity isn't noticeable, the fact its on a file system won't matter.

Quoting Andrew Morton:
"[On 2.6 kernels the difference is] None at all. The kernel generates a map of swap offset -> disk blocks at swapon time and from then on uses that map to perform swap I/O directly against the underlying disk queue, bypassing all caching, metadata and filesystem code."

Comment Re:Leaky Fawcet (Score 1) 129

1. Programs can't use the swapped memory directly. The kernel only swaps parts of memory that haven't been accessed in a while.

2. By swapping out unused (even because of leaks) memory, the kernel has more memory to use for disk caching.

All this has nothing to do with whether your system will grind to a halt today instead of one month later.

And to answer your question, the mod(s) apparently thought this was common knowledge and not worth responding to.

Comment Re:Admin or distro? (Score 1) 149

Your way is the proper one to go about it, provided you stay on top of security updates by yourself.

In the aforementioned developers' case, they just followed some shitty "How to install LAMP" "howto" and never bothered to check if their distro provided the relevant packages. On top of that, they had absolutely no clue on how to provide a secure or even performance-optimised configuration for the custom compiled packages. If all that wasn't enough, they also never applied security updates after the initial installation.

Slashdot Top Deals

"Take that, you hostile sons-of-bitches!" -- James Coburn, in the finale of _The_President's_Analyst_

Working...