Linux 2.6 Kernel Guides:
Linux 2.4 Kernel Guides:
Tools for Creating Documents, Graphs, and Figures
To see some example Latex documents that produce slides and papers,
import postscript figures, use bibtex, and that use Latex's math mode,
look in my public directory (start with the README file):
/home/newhall/public/latex_examples/
Latex Tutorial
xwd > outfile.xwd # then click on window to capture in outfile.xwd
You can then use xv to edit outfile.xwd and save it in one of several
figure formats. See the man page for xwd for more details.
Programming Language-Specific Help
C
C++
Java
Python
Collaboration Tools
Shell Programming
Tools for Running Large Experiements and for Performance Measurement
profiling tools, measuring performance:
% time ./myprog
real 0m10.083s
user 0m0.000s
sys 0m0.004s
# here is time for a cpu-bound program. you can see almost all of its
# 7.931 seconds of execution time were due to user-level cpu time
%time ./a.out
real 0m7.931s
user 0m7.928s
sys 0m0.000s
% gcc -g -p -o myprog foo.c
when you run your program, a file named gmon.out is created that contains
profiling information of the run of your program. You can view this
file by running gprof (see the man page for gprof for more information):
% ./myprog
% gprof myprog gmon.out
Linux
Addision-Wesly, 2002. ISBN: 0-201-71975-4.
(we have two copies of this in the CS Lab)
O'Reilly, 2002. ISBN: 0-596-00213-0
Network & Parallel Programming