September 2007 Archives
My criticism of the existing video is that it's far too abstract for an audience that does not already know what DRM is, why it's bad, that it's a futile effort, and it needs to stop.
Way to go, Trent!
Chambers makes it quite clear that he understands that God is omnipresent (thus giving the Nebraska court proper jurisdiction), and omniscient (thus obviating the need for personal notice to be served). In a creative moment that surely took lots of energy to produce, he accuses God of causing "fearsome floods, egregious earthquakes, horrendous hurricanes, terrifying tornados [sic], pestilential plagues, ferocious famines, devastating drouths [sic]....". He goes on to note that "Defendant has directed said chroniclers to assemble and dissiminate [sic] in written form, said admissions, throughout the Earth in order to inspire fear, dread, anxiety, terror and uncertainty, in order to coerce obedience to Defendants will"
He then goes on to request the court to "grant Plaintiff summary judgement" or, "in the alternative. to set a date for a hearing as expeditiously as possible if the Court deems such a hearing not to be a futile act".
My head is spinning.
Labels: linux
Interestingly, there's also an option for a /sbin/ifup-pre-local. which gets called before ifup-$DEVICETYPE. Not sure what one would use this for in practice, any ideas?
Labels: linux, networking
If you echo various values to it, various kernel cache data structures are dropped. This is a non-destructive operation, so if you still see stuff hanging out after it, it's likely that it was dirty cache. Anyhow, on to the values:
1 - drop the pagecache
2 - drop the dentry and inode caches
3 - drop both the dentry and inode caches, as well as the pagecache.
Here's an example of the impact on the pagecache by doing this:
[root@rugrat ~]# free
total used free shared buffers cached
Mem: 2060656 1448748 611908 0 239620 649220
-/+ buffers/cache: 559908 1500748
Swap: 4194296 41056 4153240
[root@rugrat ~]# echo 3 > /proc/sys/vm/drop_caches
[root@rugrat ~]# free
total used free shared buffers cached
Mem: 2060656 615108 1445548 0 244 89128
-/+ buffers/cache: 525736 1534920
Swap: 4194296 41056 4153240
Note how the pagecache went from ~650MB to around ~89MB after dropping it. In practicality, you would likely never want to do this. However, if you are performing testing on the machine in question, you likely want to test the efficiency of the hardware ,and not the kernel's caching mechanisms.
Labels: linux, performance, tuning

