neeraj9.blogspot.com
Easy Gnu Linux: unix commands
http://neeraj9.blogspot.com/2007/06/unix-commands.html
This is for all those who support the open source movement. Enter your search terms. Tuesday, June 05, 2007. Get the first three fields of the command which contains 'START' keyword. All scripts=`ls utc* egrep -v ' .log$ -csmtester$ .keep$ .keep .* .contrib$ .contrib. Processed$ .processed .*'`;. Grep "START" $all scripts cut -f1-3 -d' '. Proc(1) User Commands proc(1). Proc, pflags, pcred, pmap, pldd, psig, pstack, pfiles, pwdx, pstop,. Prun, pwait, ptree, ptime - proc tools. Drawing tree on console.
neeraj9.blogspot.com
Easy Gnu Linux: pDI-Tools: A Portable Dynamic Interposition Tool
http://neeraj9.blogspot.com/2007/06/pdi-tools-portable-dynamic.html
This is for all those who support the open source movement. Enter your search terms. Tuesday, June 05, 2007. PDI-Tools: A Portable Dynamic Interposition Tool. Code instrumentation is a technology that allows to analyze or change the behaviour of a program during its execution. With this analysis you can discover a lot of things about the target program, even of the running operating system. Reference: http:/ www.nongnu.org/pditools/index.html. Subscribe to: Post Comments (Atom).
neeraj9.blogspot.com
Easy Gnu Linux: Cairo (2D graphics library)
http://neeraj9.blogspot.com/2007/05/cairo-2d-graphics-library.html
This is for all those who support the open source movement. Enter your search terms. Thursday, May 31, 2007. Cairo (2D graphics library). Cairo is a 2D graphics library with support for multiple output devices. Currently supported output targets include the X Window System, Win32, image buffers, PostScript, PDF, and SVG file output. Experimental backends include OpenGL (through glitz), Quartz, and XCB. Ref: http:/ cairographics.org/. Subscribe to: Post Comments (Atom).
neeraj9.blogspot.com
Easy Gnu Linux: WireShark (Ethereal)
http://neeraj9.blogspot.com/2007/05/wireshark-ethereal.html
This is for all those who support the open source movement. Enter your search terms. Thursday, May 31, 2007. Same developers, same code, different name. The Ethereal network protocol analyzer has changed its name to Wireshark. Wireshark's powerful features make it the tool of choice for network troubleshooting, protocol development, and education worldwide. Ref: http:/ www.wireshark.org/. Subscribe to: Post Comments (Atom).
neeraj9.blogspot.com
Easy Gnu Linux: clearcase commands
http://neeraj9.blogspot.com/2007/06/clearcase-commands.html
This is for all those who support the open source movement. Enter your search terms. Tuesday, June 05, 2007. References: http:/ yolinux.com/TUTORIALS/ClearcaseCommands.html. Rename a label type from NEERAJ 1 to NEERAJ 2. Cleartool rename -nc lbtype:NEERAJ 1 lbtype:NEERAJ 2. Finding the version of a file (with branch) with a given label applied NEERAJ LABEL 1. Cleartool find /vobs/file/file1.c -ver 'lbtype(NEERAJ LABEL 1)' -print. Find difference between the present file to one in the given version.
neeraj9.blogspot.com
Easy Gnu Linux: Poster - resize a postscript image to print on larger media and/or multiple sheets
http://neeraj9.blogspot.com/2007/06/poster-resize-postscript-image-to-print.html
This is for all those who support the open source movement. Enter your search terms. Tuesday, June 05, 2007. Poster - resize a postscript image to print on larger media and/or multiple sheets. A perl script to resize postscript document or split into multiple sheets. Great tool. Reference: http:/ tug.ctan.org/tex-archive/support/poster/. Subscribe to: Post Comments (Atom).
neeraj9.blogspot.com
Easy Gnu Linux: ELFsh
http://neeraj9.blogspot.com/2007/06/elfsh.html
This is for all those who support the open source movement. Enter your search terms. Tuesday, June 05, 2007. Reference: http:/ elfsh.asgardlabs.org/. Reverse Engineering: http:/ eresi.asgardlabs.org/. Subscribe to: Post Comments (Atom).
neeraj9.blogspot.com
Easy Gnu Linux: Generate Diff Markup using LXR
http://neeraj9.blogspot.com/2007/04/generate-diff-markup-using-lxr.html
This is for all those who support the open source movement. Enter your search terms. Wednesday, April 25, 2007. Generate Diff Markup using LXR. Http:/ www.gelato.unsw.edu.au/lxr/diff/arch/ppc/kernel/head.S? A=ppc;diffval=2.6.16;diffvar=v. Http:/ lxr.linux.no/. Subscribe to: Post Comments (Atom).
codingc.blogspot.com
C coding
http://codingc.blogspot.com/2004_01_01_archive.html
All about c coding. Friday, January 30, 2004. How to create dynamic libraries:. Example: want to create a library containing code from sampl1.c and sampl2.c. And test.c is the program to use that library. Gcc -c sample1.c. Gcc -c sample2.c. Gcc -shared -o libsample.so sample1.o sample2.o. Gcc -c test.c. Gcc -o test test.o -L. -lsample. The dynamic linker cannot find your shared object. You either need to put the directory in /etc/ld.so.conf. Or modify you LD LIBRARY PATH environment variable.
codingc.blogspot.com
C coding
http://codingc.blogspot.com/2004_03_01_archive.html
All about c coding. Monday, March 01, 2004. MinGW constraints - Enumeration and defines. If you are working in MinGW then avoid using the following identifiers as enumeration values or defines. More to come later . Posted by neeraj : 9:25 PM.