Code: 0f 0b 68 6e ff 37 80 c2 ed 01 48 c7 c6 ff ff ff ff bf 20 00 RIP {page_remove_rmap+129} RSP Fixing recursive fault but reboot is needed! link : https://bugzilla.redhat.com/show_bug.cgi?id=185481
Category Archives: Uncategorized
call trace.. tools.ietf.org/html/rfc3164
error/log/trace Clipping [11.588285] [<ffffffff815d1e45] panic+0xad/0x27c mount_block_root prepare_namespace kernel_init kernel_thread ? retint_restore_args ? start_kernel ? gs_change Kernel Panic – not syncing VFS : unable to mount root fs on unknown_block(8,1) link : http://kerneltrap.org/node/2318
bzip2, bunzip2 – a block-sorting file compressor, v1.0.4
Connected From This A UNIX Command $wget http://www.kernel.org/pub/linux/kernel/v3.0/patch-3.0.4.bz2 –2011-09-03 19:22:43– http://www.kernel.org/pub/linux/kernel/v3.0/patch-3.0.4.bz2 Resolving www.kernel.org… 130.239.17.5, 149.20.4.69, 199.6.1.165, … Connecting to www.kernel.org|130.239.17.5|:80… connected. HTTP request sent, awaiting response… 200 OK Length: 96120 (94K) [application/x-bzip2] Saving to: `patch-3.0.4.bz2′ 100%[===================================================================================>] 96,120 85.3K/s in 1.1s 2011-09-03 19:22:45 (85.3 KB/s) – `patch-3.0.4.bz2′ saved [96120/96120] $bunzip2 patch-3.0.4.bz2 $ls patch-3.0.4 patch-3.0.4 $ UNIX …
Continue reading “bzip2, bunzip2 – a block-sorting file compressor, v1.0.4”
Linux 3.0.4 compile howto…
Procedure 1. Download the source code. kernel 3.0.4 2. Unompress and open the archive. bunzip2 linux-3.0.4.tar.bz2 tar -xvvf linux-3.0.4.tar 3. cd linux-3.0.4 4. Read the README File. 5. make allmodconfig To be continued….
scalar.pl —-x strings
A UNIX Command $perl scalar.pl The variable $fred contains Fred here. Sum is 66. $cat scalar.pl $fred = “Fred here”; $barney = 56; $sum = 10 + $barney; print ‘The variable $fred’ . ” contains $fred.\n”; print “Sum is $sum.\n”; $cat scalar.pl $fred = “Fred here”; $barney = 56; $sum = 10 + $barney; print …
HTTP – Hypertext Transfer Protocol
Connected From This HTTP The Hypertext Transfer Protocol (HTTP) is an application-level protocol for distributed, collaborative, hypermedia information systems. It is a generic, stateless, protocol which can be used for many tasks beyond its use for hypertext, such as name servers and distributed object management systems, through extension of its request methods, error codes and …
httperf – HTTP performance measurement tool
Connected From This A UNIX Command $httperf –hog –server www.youtube.com httperf –hog –client=0/1 –server=www.youtube.com –port=80 –uri=/ –send-buffer=4096 –recv-buffer=16384 –num-conns=1 –num-calls=1 Maximum connect burst length: 0 Total: connections 1 requests 1 replies 1 test-duration 0.787 s Connection rate: 1.3 conn/s (787.4 ms/conn, <=1 concurrent connections) Connection time [ms]: min 787.4 avg 787.4 max 787.4 median 787.5 …
Continue reading “httperf – HTTP performance measurement tool”
ASP.NET and Debian HOWTO
Installation 1. apt-get install apache2 2. apt-get install libapache2-mod-perl2 3. apt-get install libapache2-mod-mono configuration 1. /etc/apache2/sites-available/ 2. a2ensite default 3. mkdir -p /srv/www/default/public_html 4. mkdir /srv/www/default/logs 5. put a sample .aspx file in “/srv/www/default/public_html” 6. /etc/init.d/apache2 restart Testing 1. Browser URL — 127.0.0.1/<your .aspx file>
hello-again.pl —-x quotes…
A UNIX Command $perl hello-again.pl Greetings, small planet \nWhat’s cooking? $cat hello-again.pl print ‘Greetings, small planet \n’; print “What’s cooking?\n”; $ UNIX Explanation Shows how single quotes differ from double quotes in hello-again.pl source : http://sandbox.mc.edu/~bennet/perl/leccode/index.html
response.write –x asp .
A Windows Command source : http://www.w3schools.com/asp/default.asp