Very good ones. My taste.
25 September 2011
04 September 2011
04 June 2011
linux drop cache
Thing that is rarely used but very useful when needed. How do drop cache's in Linux:
free pagecache
echo 1 > /proc/sys/vm/drop_caches
free dentries and inodes
echo 2 > /proc/sys/vm/drop_caches
pagecache, dentries and inodes
echo 3 > /proc/sys/vm/drop_caches
free pagecache
echo 1 > /proc/sys/vm/drop_caches
free dentries and inodes
echo 2 > /proc/sys/vm/drop_caches
pagecache, dentries and inodes
echo 3 > /proc/sys/vm/drop_caches
26 May 2011
22 May 2011
How to unpack rpm
I rarely use this one but it's handy sometimes:
(taken from this blog)
edit:
sometimes it doesn't work because of this:
but it seems that cpio is broken and it can be fixed with:
(taken from another blog)
rpm2cpio rpmname.rpm | cpio -idv
(taken from this blog)
edit:
sometimes it doesn't work because of this:
cpio: Malformed number
but it seems that cpio is broken and it can be fixed with:
rpm2cpio rpmnamerpm | lzma -d | cpio -id
(taken from another blog)
28 January 2011
GPU-GEMS
GPU GEMS has arrived! It contains chapter of mine (as a co-author) about fact Smith-Waterman algorithm implementation on NVIDIA GPUs. I host code of it on http://code.google.com/p/sw-gpu/.
Subscribe to:
Posts (Atom)