blob: 132aa3b6531eb1f7d4420e447f460cee7e4eca0b [file] [log] [blame]
John Beppu5bca0af2001-04-05 19:41:23 +00001# vi: set sw=4 ts=4:
2
3=head1 NAME
4
5BusyBox - The Swiss Army Knife of Embedded Linux
6
7=head1 SYNTAX
8
9 BusyBox <function> [arguments...] # or
10
11 <function> [arguments...] # if symlinked
12
13=head1 DESCRIPTION
14
15BusyBox combines tiny versions of many common UNIX utilities into a single
16small executable. It provides minimalist replacements for most of the utilities
17you usually find in fileutils, shellutils, findutils, textutils, grep, gzip,
18tar, etc. BusyBox provides a fairly complete POSIX environment for any small
19or embedded system. The utilities in BusyBox generally have fewer options than
20their full-featured GNU cousins; however, the options that are included provide
Eric Andersenc7bda1c2004-03-15 08:29:22 +000021the expected functionality and behave very much like their GNU counterparts.
John Beppu5bca0af2001-04-05 19:41:23 +000022
23BusyBox has been written with size-optimization and limited resources in mind.
24It is also extremely modular so you can easily include or exclude commands (or
25features) at compile time. This makes it easy to customize your embedded
26systems. To create a working system, just add a kernel, a shell (such as ash),
27and an editor (such as elvis-tiny or ae).
28
29=head1 USAGE
30
31When you create a link to BusyBox for the function you wish to use, when BusyBox
32is called using that link it will behave as if the command itself has been invoked.
33
34For example, entering
35
36 ln -s ./BusyBox ls
37 ./ls
38
39will cause BusyBox to behave as 'ls' (if the 'ls' command has been compiled
Eric Andersenc7bda1c2004-03-15 08:29:22 +000040into BusyBox).
John Beppu5bca0af2001-04-05 19:41:23 +000041
42You can also invoke BusyBox by issuing the command as an argument on the
43command line. For example, entering
44
45 ./BusyBox ls
46
Eric Andersenc7bda1c2004-03-15 08:29:22 +000047will also cause BusyBox to behave as 'ls'.
John Beppu5bca0af2001-04-05 19:41:23 +000048
49=head1 COMMON OPTIONS
50
John Beppu2771d1a2001-04-17 23:57:23 +000051Most BusyBox commands support the B<-h> option to provide a
Eric Andersenc7bda1c2004-03-15 08:29:22 +000052terse runtime description of their behavior.
John Beppu5bca0af2001-04-05 19:41:23 +000053
54=head1 COMMANDS
55
56Currently defined functions include:
57
Eric Andersenb868f552003-12-20 07:16:22 +000058 addgroup, adduser, adjtimex, ar, arping, ash, awk, basename, bunzip2,
59 busybox, bzcat, cal, cat, chgrp, chmod, chown, chroot, chvt, clear,
60 cmp, cp, cpio, crond, crontab, cut, date, dc, dd, deallocvt, delgroup,
61 deluser, df, dirname, dmesg, dos2unix, dpkg, dpkg-deb, du, dumpkmap,
62 dumpleases, dutmp, echo, egrep, env, expr, false, fbset, fdflush,
63 fdformat, fgrep, find, fold, free, freeramdisk, fsck.minix, ftpget,
64 ftpput, getopt, getty, grep, gunzip, gzip, halt, hdparm, head, hexdump,
65 hostid, hostname, httpd, hush, hwclock, id, ifconfig, ifdown, ifup,
66 inetd, init, insmod, ip, ipcalc, iplink, iproute, iptunnel, kill,
67 killall, klogd, lash, length, linuxrc, ln, loadfont, loadkmap, logger,
68 login, logname, logread, losetup, ls, lsmod, makedevs, md5sum, mesg,
69 minit, mkdir, mkfifo, mkfs.minix, mknod, mkswap, mktemp, modprobe,
70 more, mount, msh, msvc, mt, mv, nameif, nc, netstat, nslookup, od,
71 openvt, passwd, patch, pidfilehack, pidof, ping, ping6, pivot_root,
72 poweroff, printf, ps, pwd, rdate, readlink, realpath, reboot, renice,
73 reset, rm, rmdir, rmmod, route, rpm, rpm2cpio, run-parts, sed,
74 setkeycodes, sha1sum, sleep, sort, start-stop-daemon, strings, stty,
75 su, sulogin, swapoff, swapon, sync, syslogd, tail, tar, tee, telnet,
76 telnetd, test, tftp, time, top, touch, tr, traceroute, true, tty,
77 udhcpc, udhcpd, umount, uname, uncompress, uniq, unix2dos, unzip,
78 uptime, usleep, uudecode, uuencode, vconfig, vi, vlock, watch,
79 watchdog, wc, wget, which, who, whoami, xargs, yes, zcat, [
John Beppu5bca0af2001-04-05 19:41:23 +000080
81=over 4
82
Matt Kraai91631012001-08-27 18:55:10 +000083