tinyutils.html 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <!--#include file="header.html" -->
  2. <h3>External Tiny Utilities</h3>
  3. This is a list of tiny utilities whose functionality is not provided by
  4. busybox. If you have additional suggestions, please send an e-mail to our
  5. dev mailing list.
  6. <br><br>
  7. <table border=1>
  8. <tr>
  9. <th>Feature</th>
  10. <th>Utilities</th>
  11. </tr>
  12. <tr>
  13. <td>SSH</td>
  14. <td><a href="http://matt.ucc.asn.au/dropbear/">Dropbear</a> has both an ssh server and an ssh client that together come in around 100k. It has no external
  15. dependencies (I.E. it does not depend on OpenSSL, using a built-in copy of
  16. LibTomCrypt instead). It's actively maintained, with a quiet but responsive
  17. mailing list.</td>
  18. </tr>
  19. <tr>
  20. <td>SMTP</td>
  21. <td><a href="ftp://ftp.debian.org/debian/pool/main/s/ssmtp/">ssmtp</a> is an extremely simple Mail Transfer Agent.</td>
  22. </tr>
  23. <tr>
  24. <td>ntp</td>
  25. <td><a href="http://doolittle.icarus.com/ntpclient/">ntpclient</a> is a
  26. tiny ntp client. BusyBox has rdate to set the date from a remote server, but
  27. if you want a daemon to repeatedly adjust the clock over time, try that.</td>
  28. </table>
  29. <p>In a gui environment, you'll probably want a web browser.
  30. <a href="http://www.konqueror.org/embedded/">Konqueror Embedded</a> requires QT
  31. (or QT Embedded), but not KDE. The <a href="http://www.dillo.org/">Dillo</a>
  32. requires GTK+, but not Gnome. Or you can try the <a href="http://links.twibright.com/">graphical
  33. version of links</a>.</p>
  34. <h3>SCRIPTING LANGUAGES</h3>
  35. <p>Although busybox has built-in support for shell scripts, plenty of other
  36. small scripting languages are available on the net. A few examples:</p>
  37. <table border=1>
  38. <tr>
  39. <th><language></th>
  40. <th><description></th>
  41. </tr>
  42. <tr>
  43. <td> <a href=http://www.foo.be/docs/tpj/issues/vol5_3/tpj0503-0003.html>microperl</a> </td>
  44. <td> A small standalone perl interpreter that can be built from the perl source
  45. s via "make -f Makefile.micro". If you really feel the need for perl on an embe
  46. dded system, this is where to start.
  47. </tr>
  48. <tr>
  49. <td><a href=http://www.lua.org/pil/>Lua</a></td>
  50. <td>If you just want a small embedded scripting language to write <em>new</en>
  51. code in, this Brazilian import is lightweight, fairly popular, and has
  52. a complete book about it online.</td>
  53. </tr>
  54. <tr>
  55. <td><a href= http://www.star.le.ac.uk/%7Etjg/rc/>rc</a></td>
  56. <td>The PLAN9 shell. Not compatible with conventional bourne shell syntax,
  57. but fairly lightweight and small.</td>
  58. </tr>
  59. </tr>
  60. <tr>
  61. <td><a href=http://www.forth.org>forth</a></td>
  62. <td>A well known language for fast and small programs, decades old but still
  63. in use for everything from OpenBIOS to computer controlled engine timing.</td>
  64. </tr>
  65. </table>
  66. <p>For more information, you probably want to look at
  67. <a href=http://buildroot.uclibc.org>buildroot</a> and
  68. <a href=http://gentoo-wiki.com/TinyGentoo>TinyGentoo</a>, which
  69. build and use tiny utilities for all sorts of things.</p>
  70. <!--#include file="footer.html" -->