Information AboutBusybox |
| CATEGORIES ABOUT BUSYBOX | |
| free computer programming tools | |
| linux on pdas | |
BusyBox is a Software Application which provides many standard Unix Tool s, much like the larger (but more capable) GNU Core Utilities . BusyBox is designed to be a small executable for use with Linux , which makes it ideal for special purpose Linux Distribution s and Embedded Devices . It has been called "The Swiss Army Knife of Embedded Linux". Released under the . HISTORY Originally written by Bruce Perens in 1996, the intent of BusyBox was to put a complete Bootable system on a single Floppy that would be both a rescue disk and an Installer for the Debian distribution. It has since then become the de facto standard for embedded Linux devices and Linux distribution installers. Since each Linux executable requires several kilobytes of overhead, having the BusyBox program combine over two hundred programs together can save considerable space. BusyBox was maintained by Enrique Zanardi and focused on the needs of the Debian Boot-floppies installer system until early 1998, when it was taken over by Dave Cinege for The Linux Router Project (LRP). Cinege made several additions, created a modularized build environment, and shifted BusyBox's focus into general high level Embedded Systems . As LRP development slowed down in 1999, Erik Andersen, then of Lineo, Inc. , took over the project and was the official maintainer between December 1999 and March 2006. During this time the Linux embedded market place exploded in growth, and BusyBox matured greatly, expanding both its user base and functionality. Denis Vlasenko is the current maintainer of BusyBox. FEATURES BusyBox can be customized to provide a subset of over two hundred utilities. It can provide most of the utilities specified in the Single Unix Specification plus many others that a user would expect to see on a Linux system. A full list of the utilities implemented can be found on the BusyBox site.http://www.busybox.net/downloads/BusyBox.html Single binary Typical computer programs have a separate Binary ( Executable ) file for each application. BusyBox is a single binary, which is a conglomerate of many applications, each of which can be accessed by calling the single BusyBox binary with various names (supported by having a Symbolic Link for each different name {Link without Title} ) in a specific manner with appropriate arguments. BusyBox benefits from the single binary approach as it reduces the overheads introduced by the executable file format (typically ELF ), and it allows code to be shared between multiple applications without requiring a Library . Sharing of this common code, along with routines written with size-optimization in mind, enables a BusyBox system to be much smaller than a system built with the corresponding full versions of the utilities replaced by BusyBox. EXAMPLES Programs included in BusyBox can be run simply by adding their name as an argument to the BusyBox executable: : /bin/busybox lsMore commonly, the desired command names are linked (using Hard or Symbolic links) to the BusyBox executable; BusyBox notices the name it is called as, and runs the appropriate command, for example just : /bin/lsafter ''/bin/ls'' is linked to ''/bin/busybox''. APPLIANCES It is very common to find BusyBox used in Linux-based appliances, examples of which include:
Such devices can have embedded Linux transferred onto them, in which they use BusyBox, such as: A more complete list can be found on the official website. NOTES EXTERNAL LINKS |
|
|