install kernel-debuginfo
</pre>
<p>To build and install the latest sources, follow the
- directions <a href="http://sources.redhat.com/cgi-bin/cvsweb.cgi/~checkout~//src/README?cvsroot=systemtap">here</a>.
- Our CVSROOT is <tt>:pserver:anoncvs@sources.redhat.com:/cvs/systemtap</tt>. Periodic source snapshots are available at <a href="ftp://sources.redhat.com/pub/systemtap/snapshots/"><tt>ftp://sources.redhat.com/pub/systemtap/snapshots/</tt></a>.
- Everyone can <a href="http://sources.redhat.com/cgi-bin/cvsweb.cgi/?cvsroot=systemtap">browse the CVS repository</a>.</p>
+ <a href="http://sources.redhat.com/cgi-bin/cvsweb.cgi/~checkout~//src/README?cvsroot=systemtap">these directions</a>. The essence:</p>
+ <ul><li>CVSROOT <tt>:pserver:anoncvs@sources.redhat.com:/cvs/systemtap</tt>, module <tt>src</tt>.</li>
+ <li>Source snapshots at <a href="ftp://sources.redhat.com/pub/systemtap/snapshots/"><tt>ftp://sources.redhat.com/pub/systemtap/snapshots/</tt></a>.</li>
+ <li>Browse the <a href="http://sources.redhat.com/cgi-bin/cvsweb.cgi/?cvsroot=systemtap">CVS repository</a>.</li>
+ </ul>
<p>Once installed, try these little scripts:</p>
<pre># stap -ve 'probe begin { log("hello world") exit () }'
# stap -c df -e 'probe syscall.* { if (target()==pid()) log(name." ".argstr) }