blob: 024bab4d8abb2bdcf723de2e4700f6686f8405f3 (
plain) (
blame) 
 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111  | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>SystemTap</title> <link rel="stylesheet" href="systemtap.css" type="text/css"> <meta http-equiv="Content-Type" content= "text/html; charset=utf-8"> <meta http-equiv="Content-Style-Type" content="text/css"> </head> <body> <table cellspacing="2" cellpadding="2" border="0" width="100%"> <tr> <td valign="bottom" height="80"><img src="systemtaplogo.png" alt="SystemTap logo" width="165" height="25"></td> <td valign="bottom" class="topnavright" align="right"> <a href="index.html">Overview</a> |  Get Involved |  <a href="http://sourceware.org/systemtap/wiki">Wiki</a> |  <a href="documentation.html">Documentation</a> |  <a href="links.html">Links</a></td> </tr> </table> <div class="mainbackground"> <div class="maintextregion"> <img src="systemtapcorner.gif"> <table cellspacing="2" cellpadding="4" border="0" width="99%" style="margin-top:17;"> <tr> <td width="200"> </td> <td valign="top"> <h1>Get Involved</h1> <h2>Communicate</h2> <p>Sign up for the <a href="mailto:systemtap@sourceware.org"><tt>systemtap@sourceware.org</tt></a> mailing list here.</p> <ul> <li>mailing list: <a href="https://sourceware.org/mailman/listinfo/systemtap">web archive</a> or <a href="news://news.gmane.org/gmane.linux.systemtap">gmane newsgroup</a> or <a href="http://rss.gmane.org/messages/complete/gmane.linux.systemtap">RSS</a></li> <li>code changes: <a href="http://sourceware.org/git/gitweb.cgi?p=systemtap.git;a=summary">gitweb</a> or <a href="http://sourceware.org/git/gitweb.cgi?p=systemtap.git;a=rss">RSS</a> </li> </ul> <p>Join the Systemtap discussion at <a href="irc://irc.oftc.net/systemtap">#systemtap</a> on irc.oftc.net</p> <p>Please report suspected security vulnerabilities confidentially via email to <a href="mailto:secalert@redhat.com">secalert@redhat.com</a>; they can relay to the team.</p> <br><hr> <h2>Try It Out</h2> <p>If you are running recent Fedora, you can install systemtap and its dependencies with </p> <pre>yum install systemtap kernel-devel yum-utils debuginfo-install kernel </pre> <p>To build and install the latest sources, follow the <a href="http://sourceware.org/git/?p=systemtap.git;a=blob_plain;f=README;hb=HEAD">these directions</a>. Your choice of sources:</p> <ul> <li>Recent releases <a href="/ftp/systemtap/releases">here</a>.</li> <li><tt>git clone git://sourceware.org/git/systemtap.git</tt> (or <tt>https://sourceware.org/git/systemtap.git</tt>) (or as last resort <tt>https://gitlab.com/fche/systemtap.git</tt> which may not be up to date)</li> <li>Browse the <a href="http://sourceware.org/git/gitweb.cgi?p=systemtap.git;a=summary">gitweb viewer</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) }' </pre> <br> <hr> <h2>Contribute</h2> <p>We welcome people to use, critique, test, document, and develop systemtap. We try to make it easy with minimal legal bureaucracy or process constriction; one should read the <a href="http://sourceware.org/git/?p=systemtap.git;a=blob_plain;f=HACKING;hb=HEAD">HACKING</a> file for details on contributing to systemtap. Regular contributors may earn <a href="http://sourceware.org/cgi-bin/pdw/ps_form.cgi">GIT write accounts</a> to directly commit their code. Here is our list of <a href= "http://sourceware.org/bugzilla/buglist.cgi?query_format=&short_desc_type=allwordssubstr&short_desc=&product=systemtap&long_desc_type=substring&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&gcchost_type=allwordssubstr&gcchost=&gcctarget_type=allwordssubstr&gcctarget=&gccbuild_type=allwordssubstr&gccbuild=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=SUSPENDED&bug_status=WAITING&bug_status=REOPENED&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&cmdtype=doit&order=Bug+Number&field0-0-0=noop&type0-0-0=noop&value0-0-0="> current bugs/pending features</a>. You may need to create a <a href= "http://sourceware.org/bugzilla/createaccount.cgi">new bugzilla account</a> to fully participate.</p> <!-- disabled on 2008-04; ohloh has been failing with pulling data updates  <SCRIPT type='text/javascript' language='JavaScript' src='http://www.ohloh.net/projects/4248;badge_js'></SCRIPT> --> </td> </tr> </table> </div> </div> <table cellspacing="2" cellpadding="2" border="0" width="100%"> <tr> <td align="center" class="footer"><a href= "http://sourceware.org/systemtap">SystemTap</a></td> </tr> </table> </body> </html> 
 |