2000-04-14 00:19:43 +05:30
|
|
|
# vi: set sw=4 ts=4:
|
2000-04-13 08:52:20 +05:30
|
|
|
|
2000-01-18 21:15:59 +05:30
|
|
|
=head1 NAME
|
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
BusyBox - The Swiss Army Knife of Embedded Linux
|
2000-01-18 21:15:59 +05:30
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
=head1 SYNTAX
|
2000-01-18 21:15:59 +05:30
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
BusyBox <function> [arguments...] # or
|
2000-01-19 04:03:11 +05:30
|
|
|
|
|
|
|
<function> [arguments...] # if symlinked
|
2000-01-18 21:15:59 +05:30
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
BusyBox combines tiny versions of many common UNIX utilities into a single
|
|
|
|
small executable. It provides minimalist replacements for most of the utilities
|
|
|
|
you usually find in fileutils, shellutils, findutils, textutils, grep, gzip,
|
|
|
|
tar, etc. BusyBox provides a fairly complete POSIX environment for any small
|
2000-06-17 01:26:44 +05:30
|
|
|
or embedded system. The utilities in BusyBox generally have fewer options than
|
2000-06-05 22:53:06 +05:30
|
|
|
their full-featured GNU cousins; however, the options that are included provide
|
2000-06-22 03:08:00 +05:30
|
|
|
the expected functionality and behave very much like their GNU counterparts.
|
2000-04-13 06:48:23 +05:30
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
BusyBox has been written with size-optimization and limited resources in mind.
|
|
|
|
It is also extremely modular so you can easily include or exclude commands (or
|
|
|
|
features) at compile time. This makes it easy to customize your embedded
|
|
|
|
systems. To create a working system, just add a kernel, a shell (such as ash),
|
|
|
|
and an editor (such as elvis-tiny or ae).
|
|
|
|
|
|
|
|
=head1 USAGE
|
|
|
|
|
|
|
|
When you create a link to BusyBox for the function you wish to use, when BusyBox
|
|
|
|
is called using that link it will behave as if the command itself has been invoked.
|
|
|
|
|
|
|
|
For example, entering
|
|
|
|
|
|
|
|
ln -s ./BusyBox ls
|
2000-04-13 06:48:23 +05:30
|
|
|
./ls
|
|
|
|
|
|
|
|
will cause BusyBox to behave as 'ls' (if the 'ls' command has been compiled
|
2000-06-22 03:08:00 +05:30
|
|
|
into BusyBox).
|
2000-04-13 06:48:23 +05:30
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
You can also invoke BusyBox by issuing the command as an argument on the
|
|
|
|
command line. For example, entering
|
2000-04-13 06:48:23 +05:30
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
./BusyBox ls
|
2000-01-19 18:09:16 +05:30
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
will also cause BusyBox to behave as 'ls'.
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-04-19 10:42:02 +05:30
|
|
|
=head1 COMMON OPTIONS
|
|
|
|
|
|
|
|
Most BusyBox commands support the B<--help> option to provide a
|
|
|
|
terse runtime description of their behavior.
|
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=head1 COMMANDS
|
|
|
|
|
2000-04-13 06:48:23 +05:30
|
|
|
Currently defined functions include:
|
|
|
|
|
2000-09-21 00:52:26 +05:30
|
|
|
ar, basename, cat, chgrp, chmod, chown, chroot, chvt, clear, cp, cut, date, dc,
|
2001-01-03 06:36:30 +05:30
|
|
|
dd, deallocvt, df, dirname, dmesg, dos2unix, dpkg-deb, du, dumpkmap, dutmp,
|
|
|
|
echo, false, fbset, fdflush, find, free, freeramdisk, fsck.minix, getopt, grep,
|
|
|
|
gunzip, gzip, halt, head, hostid, hostname, id, init, insmod, kill, killall,
|
|
|
|
length, ln, loadacm, loadfont, loadkmap, logger, logname, ls, lsmod, makedevs,
|
|
|
|
mkdir, mkfifo, mkfs.minix, mknod, mkswap, mktemp, more, mount, mt, mv, nc,
|
|
|
|
nslookup, ping, poweroff, printf, ps, pwd, rdate, reboot, renice, reset, rm,
|
2001-01-26 05:10:32 +05:30
|
|
|
rmdir, rmmod, sed, setkeycodes, sh, sleep, sort, swapoff, swapon, sync,
|
|
|
|
syslogd, tail, tar, tee, telnet, test, touch, tr, true, tty, umount, uname,
|
|
|
|
uniq, unix2dos, unrpm, update, uptime, usleep, uudecode, uuencode, watchdog,
|
|
|
|
wc, which, whoami, xargs, yes, zcat, [
|
2000-04-13 06:48:23 +05:30
|
|
|
|
2000-05-02 12:10:02 +05:30
|
|
|
-------------------------------
|
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=over 4
|
|
|
|
|
2000-06-02 08:51:42 +05:30
|
|
|
=item ar
|
|
|
|
|
|
|
|
Usage: ar [optxvV] archive [filenames]
|
|
|
|
|
|
|
|
Extract or list files from an ar archive.
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
o preserve original dates
|
|
|
|
p extract to stdout
|
|
|
|
t list
|
|
|
|
x extract
|
|
|
|
v verbosely list files processed
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-04-13 06:48:23 +05:30
|
|
|
=item basename
|
|
|
|
|
2000-05-10 10:30:31 +05:30
|
|
|
Usage: basename FILE [SUFFIX]
|
2000-04-13 06:48:23 +05:30
|
|
|
|
2000-05-10 10:30:31 +05:30
|
|
|
Strips directory path and suffixes from FILE.
|
|
|
|
If specified, also removes any trailing SUFFIX.
|
2000-04-13 06:48:23 +05:30
|
|
|
|
2000-06-22 03:08:00 +05:30
|
|
|
Example:
|
2000-04-13 06:48:23 +05:30
|
|
|
|
|
|
|
$ basename /usr/local/bin/foo
|
|
|
|
foo
|
|
|
|
$ basename /usr/local/bin/
|
|
|
|
bin
|
2000-05-10 10:30:31 +05:30
|
|
|
$ basename /foo/bar.txt .txt
|
|
|
|
bar
|
2000-04-13 06:48:23 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
|
|
|
|
2000-04-18 05:30:52 +05:30
|
|
|
=item cat
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
Usage: cat [FILE ...]
|
2000-04-13 06:48:23 +05:30
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
Concatenates FILE(s) and prints them to the standard output.
|
2000-04-13 06:48:23 +05:30
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ cat /proc/uptime
|
|
|
|
110716.72 17.67
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
=item chgrp
|
|
|
|
|
|
|
|
Usage: chgrp [OPTION]... GROUP FILE...
|
|
|
|
|
|
|
|
Change the group membership of each FILE to GROUP.
|
2000-04-17 22:14:46 +05:30
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
Options:
|
|
|
|
|
|
|
|
-R change files and directories recursively
|
2000-04-17 22:14:46 +05:30
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
Example:
|
|
|
|
|
|
|
|
$ ls -l /tmp/foo
|
|
|
|
-r--r--r-- 1 andersen andersen 0 Apr 12 18:25 /tmp/foo
|
|
|
|
$ chgrp root /tmp/foo
|
|
|
|
$ ls -l /tmp/foo
|
|
|
|
-r--r--r-- 1 andersen root 0 Apr 12 18:25 /tmp/foo
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item chmod
|
|
|
|
|
2000-04-13 08:46:01 +05:30
|
|
|
Usage: chmod [B<-R>] MODE[,MODE]... FILE...
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
Changes file access permissions for the specified FILE(s) (or directories).
|
2000-04-13 06:48:23 +05:30
|
|
|
Each MODE is defined by combining the letters for WHO has access to the file,
|
|
|
|
an OPERATOR for selecting how the permissions should be changed, and a
|
2000-06-17 01:26:44 +05:30
|
|
|
PERMISSION for FILE(s) (or directories).
|
2000-04-13 06:48:23 +05:30
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
WHO may be chosen from
|
2000-04-13 06:48:23 +05:30
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
u User who owns the file
|
|
|
|
g Users in the file's Group
|
2000-04-13 06:48:23 +05:30
|
|
|
o Other users not in the file's group
|
|
|
|
a All users
|
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
OPERATOR may be chosen from
|
2000-04-13 06:48:23 +05:30
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
+ Add a permission
|
|
|
|
- Remove a permission
|
|
|
|
= Assign a permission
|
2000-06-22 03:08:00 +05:30
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
PERMISSION may be chosen from
|
2000-04-13 06:48:23 +05:30
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
r Read
|
2000-04-13 06:48:23 +05:30
|
|
|
w Write
|
2000-04-21 06:53:36 +05:30
|
|
|
x Execute (or access for directories)
|
2000-04-13 06:48:23 +05:30
|
|
|
s Set user (or group) ID bit
|
2000-06-17 01:26:44 +05:30
|
|
|
t Sticky bit (for directories prevents removing files by non-owners)
|
2000-04-13 06:48:23 +05:30
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
Alternately, permissions can be set numerically where the first three
|
|
|
|
numbers are calculated by adding the octal values, such as
|
2000-04-14 00:19:43 +05:30
|
|
|
|
2000-04-13 06:48:23 +05:30
|
|
|
4 Read
|
|
|
|
2 Write
|
2000-04-21 06:53:36 +05:30
|
|
|
1 Execute
|
2000-04-13 06:48:23 +05:30
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
An optional fourth digit can also be used to specify
|
2000-04-14 00:19:43 +05:30
|
|
|
|
2000-04-13 06:48:23 +05:30
|
|
|
4 Set user ID
|
|
|
|
2 Set group ID
|
2000-06-17 01:26:44 +05:30
|
|
|
1 Sticky bit
|
2000-04-13 06:48:23 +05:30
|
|
|
|
2000-01-19 20:34:41 +05:30
|
|
|
Options:
|
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
-R Change files and directories recursively.
|
2000-06-22 03:08:00 +05:30
|
|
|
|
2000-04-13 06:48:23 +05:30
|
|
|
Example:
|
|
|
|
|
|
|
|
$ ls -l /tmp/foo
|
|
|
|
-rw-rw-r-- 1 root root 0 Apr 12 18:25 /tmp/foo
|
|
|
|
$ chmod u+x /tmp/foo
|
|
|
|
$ ls -l /tmp/foo
|
|
|
|
-rwxrw-r-- 1 root root 0 Apr 12 18:25 /tmp/foo*
|
|
|
|
$ chmod 444 /tmp/foo
|
|
|
|
$ ls -l /tmp/foo
|
|
|
|
-r--r--r-- 1 root root 0 Apr 12 18:25 /tmp/foo
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item chown
|
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
Usage: chown [OPTION]... OWNER[<.|:>[GROUP] FILE...
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-13 06:48:23 +05:30
|
|
|
Changes the owner and/or group of each FILE to OWNER and/or GROUP.
|
2000-04-17 23:16:46 +05:30
|
|
|
|
2000-01-19 20:34:41 +05:30
|
|
|
Options:
|
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
-R Changes files and directories recursively
|
2000-04-13 06:48:23 +05:30
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ ls -l /tmp/foo
|
|
|
|
-r--r--r-- 1 andersen andersen 0 Apr 12 18:25 /tmp/foo
|
|
|
|
$ chown root /tmp/foo
|
|
|
|
$ ls -l /tmp/foo
|
|
|
|
-r--r--r-- 1 root andersen 0 Apr 12 18:25 /tmp/foo
|
|
|
|
$ chown root.root /tmp/foo
|
|
|
|
ls -l /tmp/foo
|
|
|
|
-r--r--r-- 1 root root 0 Apr 12 18:25 /tmp/foo
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item chroot
|
|
|
|
|
2000-01-19 20:34:41 +05:30
|
|
|
Usage: chroot NEWROOT [COMMAND...]
|
|
|
|
|
|
|
|
Run COMMAND with root directory set to NEWROOT.
|
2000-06-22 03:08:00 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
Example:
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-13 06:48:23 +05:30
|
|
|
$ ls -l /bin/ls
|
2000-04-21 06:53:36 +05:30
|
|
|
lrwxrwxrwx 1 root root 12 Apr 13 00:46 /bin/ls -> /BusyBox
|
2000-04-13 06:48:23 +05:30
|
|
|
$ mount /dev/hdc1 /mnt -t minix
|
|
|
|
$ chroot /mnt
|
|
|
|
$ ls -l /bin/ls
|
|
|
|
-rwxr-xr-x 1 root root 40816 Feb 5 07:45 /bin/ls*
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item chvt
|
|
|
|
|
2000-01-19 20:34:41 +05:30
|
|
|
Usage: chvt N
|
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
Changes the foreground virtual terminal to /dev/ttyN
|
2000-04-14 05:14:04 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-07-05 01:37:13 +05:30
|
|
|
=item clear
|
|
|
|
|
|
|
|
Clears the screen.
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item cp
|
|
|
|
|
2000-01-19 20:34:41 +05:30
|
|
|
Usage: cp [OPTION]... SOURCE DEST
|
|
|
|
|
2000-04-13 06:48:23 +05:30
|
|
|
or: cp [OPTION]... SOURCE... DIRECTORY
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
Copies SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-05-02 11:02:07 +05:30
|
|
|
Options:
|
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
-a Same as -dpR
|
|
|
|
-d Preserves links
|
2000-06-17 01:26:44 +05:30
|
|
|
-p Preserves file attributes if possible
|
2000-04-21 06:53:36 +05:30
|
|
|
-R Copies directories recursively
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
|
|
|
|
2000-05-13 11:06:13 +05:30
|
|
|
=item cut
|
|
|
|
|
|
|
|
Usage: cut [OPTION]... [FILE]...
|
|
|
|
|
|
|
|
Prints selected fields from each input FILE to standard output.
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
2000-06-26 17:44:30 +05:30
|
|
|
-b LIST Output only bytes from LIST
|
|
|
|
-c LIST Output only characters from LIST
|
|
|
|
-d CHAR Use CHAR instead of tab as the field delimiter
|
2000-07-21 20:40:57 +05:30
|
|
|
-s Output only the lines containing delimiter
|
2000-06-26 17:44:30 +05:30
|
|
|
-f N Print only these fields
|
|
|
|
-n Ignored
|
2000-05-13 11:06:13 +05:30
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ echo "Hello world" | cut -f 1 -d ' '
|
|
|
|
Hello
|
|
|
|
$ echo "Hello world" | cut -f 2 -d ' '
|
|
|
|
world
|
|
|
|
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item date
|
|
|
|
|
2000-04-13 06:48:23 +05:30
|
|
|
Usage: date [OPTION]... [+FORMAT]
|
|
|
|
|
|
|
|
or: date [OPTION] [MMDDhhmm[[CC]YY][.ss]]
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
Displays the current time in the given FORMAT, or sets the system date.
|
2000-04-13 06:48:23 +05:30
|
|
|
|
|
|
|
Options:
|
2000-05-02 11:02:07 +05:30
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
-R Outputs RFC-822 compliant date string
|
|
|
|
-s Sets time described by STRING
|
|
|
|
-u Prints or sets Coordinated Universal Time
|
2000-04-13 06:48:23 +05:30
|
|
|
|
|
|
|
Example:
|
2000-04-13 08:46:01 +05:30
|
|
|
|
2000-04-13 06:48:23 +05:30
|
|
|
$ date
|
|
|
|
Wed Apr 12 18:52:41 MDT 2000
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
|
|
|
|
2000-06-22 00:36:16 +05:30
|
|
|
=item dc
|
|
|
|
|
|
|
|
Usage: dc expression ...
|
|
|
|
|
|
|
|
This is a Tiny RPN calculator that understands the
|
|
|
|
following operations: +, -, /, *, and, or, not, eor.
|
|
|
|
If no arguments are given, dc will process input from STDIN.
|
|
|
|
|
|
|
|
The behaviour of BusyBox/dc deviates (just a little ;-) from
|
|
|
|
GNU/dc, but this will be remedied in the future.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ dc 2 2 +
|
|
|
|
4
|
|
|
|
$ dc 8 8 \* 2 2 + /
|
|
|
|
16
|
|
|
|
$ dc 0 1 and
|
|
|
|
0
|
|
|
|
$ dc 0 1 or
|
|
|
|
1
|
|
|
|
$ echo 72 9 div 8 mul | dc
|
|
|
|
64
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item dd
|
|
|
|
|
2000-04-13 06:48:23 +05:30
|
|
|
Usage: dd [if=name] [of=name] [bs=n] [count=n] [skip=n] [seek=n]
|
2000-01-19 20:34:41 +05:30
|
|
|
|
|
|
|
Copy a file, converting and formatting according to options
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
if=FILE read from FILE instead of stdin
|
|
|
|
of=FILE write to FILE instead of stdout
|
|
|
|
bs=n read and write n bytes at a time
|
|
|
|
count=n copy only n input blocks
|
|
|
|
skip=n skip n input blocks
|
|
|
|
seek=n skip n output blocks
|
2000-04-13 06:48:23 +05:30
|
|
|
|
|
|
|
Numbers may be suffixed by w (x2), k (x1024), b (x512), or M (x1024^2)
|
2000-06-22 03:08:00 +05:30
|
|
|
|
2000-04-13 06:48:23 +05:30
|
|
|
Example:
|
|
|
|
|
|
|
|
$ dd if=/dev/zero of=/dev/ram1 bs=1M count=4
|
|
|
|
4+0 records in
|
|
|
|
4+0 records out
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
|
|
|
|
2000-07-05 01:37:13 +05:30
|
|
|
=item deallocvt
|
|
|
|
|
|
|
|
Usage: deallocvt N
|
|
|
|
|
|
|
|
Deallocates unused virtual terminal /dev/ttyN
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item df
|
|
|
|
|
2000-04-13 06:48:23 +05:30
|
|
|
Usage: df [filesystem ...]
|
|
|
|
|
|
|
|
Prints the filesystem space used and space available.
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
Example:
|
2000-04-13 06:48:23 +05:30
|
|
|
|
|
|
|
$ df
|
|
|
|
Filesystem 1k-blocks Used Available Use% Mounted on
|
|
|
|
/dev/sda3 8690864 8553540 137324 98% /
|
|
|
|
/dev/sda1 64216 36364 27852 57% /boot
|
|
|
|
$ df /dev/sda3
|
|
|
|
Filesystem 1k-blocks Used Available Use% Mounted on
|
|
|
|
/dev/sda3 8690864 8553540 137324 98% /
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
=item dirname
|
|
|
|
|
|
|
|
Usage: dirname NAME
|
|
|
|
|
|
|
|
Strip non-directory suffix from file name
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ dirname /tmp/foo
|
|
|
|
/tmp
|
|
|
|
$ dirname /tmp/foo/
|
|
|
|
/tmp
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item dmesg
|
|
|
|
|
2000-04-13 08:46:01 +05:30
|
|
|
Usage: dmesg [B<-c>] [B<-n> level] [B<-s> bufsize]
|
2000-06-22 03:08:00 +05:30
|
|
|
|
2000-04-13 06:48:23 +05:30
|
|
|
Print or controls the kernel ring buffer.
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
|
|
|
|
2000-09-21 00:52:26 +05:30
|
|
|
=item dos2unix
|
|
|
|
|
|
|
|
Usage: dos2unix < dosfile > unixfile
|
|
|
|
|
|
|
|
Converts a text file from dos format to unix format.
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2001-01-03 06:36:30 +05:30
|
|
|
=item dpkg-deb
|
|
|
|
|
|
|
|
Usage: dpkg-deb [-cexX] archive-file [directory]
|
|
|
|
|
|
|
|
Debian package archive (.deb) manipulation tool
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-c Lists the contents of the filesystem tree archive
|
|
|
|
portion of the package archive.
|
|
|
|
|
|
|
|
-e Extracts the control information files from a package
|
|
|
|
archive into the specified directory.
|
|
|
|
|
|
|
|
-x Silently extracts the filesystem tree from a package
|
|
|
|
archive into the specified directory.
|
|
|
|
|
|
|
|
-X Extracts the filesystem tree from a package archive
|
|
|
|
into the specified directory, list files as it goes.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
dpkg-deb -X ./busybox_0.48-1_i386.deb /tmp
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item du
|
|
|
|
|
2000-04-13 06:48:23 +05:30
|
|
|
Usage: du [OPTION]... [FILE]...
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-13 06:48:23 +05:30
|
|
|
Summarize disk space used for each FILE and/or directory.
|
|
|
|
Disk space is printed in units of 1k (i.e. 1024 bytes).
|
|
|
|
|
|
|
|
Options:
|
2000-04-13 08:46:01 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-l count sizes many times if hard linked
|
|
|
|
-s display only a total for each argument
|
2000-04-13 06:48:23 +05:30
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
$ ./BusyBox du
|
2000-04-13 06:48:23 +05:30
|
|
|
16 ./CVS
|
|
|
|
12 ./kernel-patches/CVS
|
|
|
|
80 ./kernel-patches
|
|
|
|
12 ./tests/CVS
|
|
|
|
36 ./tests
|
|
|
|
12 ./scripts/CVS
|
|
|
|
16 ./scripts
|
|
|
|
12 ./docs/CVS
|
|
|
|
104 ./docs
|
|
|
|
2417 .
|
2000-06-22 03:08:00 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
|
|
|
|
2000-07-11 22:59:36 +05:30
|
|
|
=item dumpkmap
|
|
|
|
|
|
|
|
Usage: dumpkmap
|
|
|
|
|
2000-11-17 22:53:16 +05:30
|
|
|
Prints out a binary keyboard translation table to standard output.
|
2000-07-11 22:59:36 +05:30
|
|
|
|
2000-09-01 21:42:57 +05:30
|
|
|
Example:
|
|
|
|
|
|
|
|
$ dumpkmap > keymap
|
|
|
|
|
2000-07-11 22:59:36 +05:30
|
|
|
-------------------------------
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
=item dutmp
|
|
|
|
|
|
|
|
Usage: dutmp [FILE]
|
|
|
|
|
|
|
|
Dump utmp file format (pipe delimited) from FILE
|
|
|
|
or stdin to stdout.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ dutmp /var/run/utmp
|
|
|
|
8|7||si|||0|0|0|955637625|760097|0
|
|
|
|
2|0|~|~~|reboot||0|0|0|955637625|782235|0
|
|
|
|
1|20020|~|~~|runlevel||0|0|0|955637625|800089|0
|
|
|
|
8|125||l4|||0|0|0|955637629|998367|0
|
|
|
|
6|245|tty1|1|LOGIN||0|0|0|955637630|998974|0
|
|
|
|
6|246|tty2|2|LOGIN||0|0|0|955637630|999498|0
|
|
|
|
7|336|pts/0|vt00andersen|andersen|:0.0|0|0|0|955637763|0|0
|
2000-06-22 03:08:00 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
=item echo
|
|
|
|
|
|
|
|
Usage: echo [-neE] [ARG ...]
|
|
|
|
|
|
|
|
Prints the specified ARGs to stdout
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-n suppress trailing newline
|
|
|
|
-e interpret backslash-escaped characters (i.e. \t=tab etc)
|
|
|
|
-E disable interpretation of backslash-escaped characters
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ echo "Erik is cool"
|
|
|
|
Erik is cool
|
|
|
|
$ echo -e "Erik\nis\ncool"
|
|
|
|
Erik
|
|
|
|
is
|
|
|
|
cool
|
|
|
|
$ echo "Erik\nis\ncool"
|
|
|
|
Erik\nis\ncool
|
2000-06-22 03:08:00 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
|
|
|
|
2000-11-15 02:58:09 +05:30
|
|
|
=item expr
|
2000-09-05 23:07:48 +05:30
|
|
|
|
|
|
|
|
|
|
|
Usage: expr EXPRESSION
|
|
|
|
|
|
|
|
Prints the value of EXPRESSION to standard output.
|
|
|
|
|
|
|
|
EXPRESSION may be:
|
|
|
|
|
|
|
|
ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2
|
|
|
|
ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0
|
|
|
|
ARG1 < ARG2 ARG1 is less than ARG2
|
|
|
|
ARG1 <= ARG2 ARG1 is less than or equal to ARG2
|
|
|
|
ARG1 = ARG2 ARG1 is equal to ARG2
|
|
|
|
ARG1 != ARG2 ARG1 is unequal to ARG2
|
|
|
|
ARG1 >= ARG2 ARG1 is greater than or equal to ARG2
|
|
|
|
ARG1 > ARG2 ARG1 is greater than ARG2
|
|
|
|
ARG1 + ARG2 arithmetic sum of ARG1 and ARG2
|
|
|
|
ARG1 - ARG2 arithmetic difference of ARG1 and ARG2
|
|
|
|
ARG1 * ARG2 arithmetic product of ARG1 and ARG2
|
|
|
|
ARG1 / ARG2 arithmetic quotient of ARG1 divided by ARG2
|
|
|
|
ARG1 % ARG2 arithmetic remainder of ARG1 divided by ARG2
|
|
|
|
STRING : REGEXP anchored pattern match of REGEXP in STRING
|
|
|
|
match STRING REGEXP same as STRING : REGEXP
|
|
|
|
substr STRING POS LENGTH substring of STRING, POS counted from 1
|
|
|
|
index STRING CHARS index in STRING where any CHARS is found, or 0
|
|
|
|
length STRING length of STRING
|
|
|
|
quote TOKEN interpret TOKEN as a string, even if it is a
|
|
|
|
keyword like `match' or an operator like `/'
|
|
|
|
( EXPRESSION ) value of EXPRESSION
|
|
|
|
|
|
|
|
Beware that many operators need to be escaped or quoted for shells.
|
|
|
|
Comparisons are arithmetic if both ARGs are numbers, else
|
|
|
|
lexicographical. Pattern matches return the string matched between
|
|
|
|
\( and \) or null; if \( and \) are not used, they return the number
|
|
|
|
of characters matched or 0.
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
=item false
|
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
Returns an exit code of FALSE (1)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ false
|
|
|
|
$ echo $?
|
|
|
|
1
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item fbset
|
|
|
|
|
2000-01-19 20:34:41 +05:30
|
|
|
Usage: fbset [options] [mode]
|
|
|
|
|
2000-04-13 06:48:23 +05:30
|
|
|
Show and modify frame buffer device settings
|
|
|
|
|
2000-01-19 20:34:41 +05:30
|
|
|
Options:
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-h
|
|
|
|
-fb
|
|
|
|
-db
|
|
|
|
-a
|
|
|
|
-i
|
|
|
|
-g
|
|
|
|
-t
|
|
|
|
-accel
|
|
|
|
-hsync
|
|
|
|
-vsync
|
|
|
|
-laced
|
|
|
|
-double
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ fbset
|
|
|
|
mode "1024x768-76"
|
|
|
|
# D: 78.653 MHz, H: 59.949 kHz, V: 75.694 Hz
|
|
|
|
geometry 1024 768 1024 768 16
|
|
|
|
timings 12714 128 32 16 4 128 4
|
|
|
|
accel false
|
|
|
|
rgba 5/11,6/5,5/0,0/0
|
|
|
|
endmode
|
|
|
|
|
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
=item fdflush
|
|
|
|
|
|
|
|
Usage: fdflush device
|
|
|
|
|
|
|
|
Force floppy disk drive to detect disk change
|
|
|
|
|
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item find
|
|
|
|
|
2000-01-19 20:34:41 +05:30
|
|
|
Usage: find [PATH...] [EXPRESSION]
|
|
|
|
|
|
|
|
Search for files in a directory hierarchy. The default PATH is
|
|
|
|
the current directory; default EXPRESSION is '-print'
|
|
|
|
|
2000-04-13 06:48:23 +05:30
|
|
|
|
2000-01-19 20:34:41 +05:30
|
|
|
EXPRESSION may consist of:
|
2000-04-14 00:19:43 +05:30
|
|
|
|
|
|
|
-follow Dereference symbolic links.
|
|
|
|
-name PATTERN File name (leading directories removed) matches PATTERN.
|
|
|
|
-print print the full file name followed by a newline to stdout.
|
2000-04-13 06:48:23 +05:30
|
|
|
|
|
|
|
Example:
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-13 06:48:23 +05:30
|
|
|
$ find / -name /etc/passwd
|
|
|
|
/etc/passwd
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item free
|
|
|
|
|
2000-01-19 20:34:41 +05:30
|
|
|
Usage: free
|
|
|
|
|
2000-05-13 01:11:47 +05:30
|
|
|
Displays the amount of free and used system memory.
|
2000-04-13 06:48:23 +05:30
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ free
|
2000-04-15 22:04:54 +05:30
|
|
|
total used free shared buffers
|
2000-04-13 06:48:23 +05:30
|
|
|
Mem: 257628 248724 8904 59644 93124
|
|
|
|
Swap: 128516 8404 120112
|
|
|
|
Total: 386144 257128 129016
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
=item freeramdisk
|
|
|
|
|
|
|
|
Usage: freeramdisk DEVICE
|
|
|
|
|
2000-05-13 01:11:47 +05:30
|
|
|
Frees all memory used by the specified ramdisk.
|
2000-04-14 00:19:43 +05:30
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ freeramdisk /dev/ram2
|
|
|
|
|
|
|
|
-------------------------------
|
2000-04-13 06:48:23 +05:30
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item fsck.minix
|
|
|
|
|
2000-04-13 08:46:01 +05:30
|
|
|
Usage: fsck.minix [B<-larvsmf>] /dev/name
|
2000-01-19 20:34:41 +05:30
|
|
|
|
|
|
|
Performs a consistency check for MINIX filesystems.
|
|
|
|
|
2000-07-05 03:47:01 +05:30
|
|
|
Options:
|
2000-04-13 08:46:01 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-l Lists all filenames
|
|
|
|
-r Perform interactive repairs
|
|
|
|
-a Perform automatic repairs
|
|
|
|
-v verbose
|
|
|
|
-s Outputs super-block information
|
|
|
|
-m Activates MINIX-like "mode not cleared" warnings
|
|
|
|
-f Force file system check.
|
|
|
|
|
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-08-22 03:32:34 +05:30
|
|
|
=item getopt
|
|
|
|
|
|
|
|
Usage: getopt [OPTIONS]...
|
|
|
|
|
|
|
|
Parse command options
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-a, --alternative Allow long options starting with single -\n"
|
|
|
|
-l, --longoptions=longopts Long options to be recognized\n"
|
|
|
|
-n, --name=progname The name under which errors are reported\n"
|
|
|
|
-o, --options=optstring Short options to be recognized\n"
|
|
|
|
-q, --quiet Disable error reporting by getopt(3)\n"
|
|
|
|
-Q, --quiet-output No normal output\n"
|
|
|
|
-s, --shell=shell Set shell quoting conventions\n"
|
|
|
|
-T, --test Test for getopt(1) version\n"
|
|
|
|
-u, --unqote Do not quote the output\n"
|
|
|
|
|
|
|
|
Example:
|
2000-08-22 04:59:45 +05:30
|
|
|
|
2000-08-22 03:32:34 +05:30
|
|
|
$ cat getopt.test
|
|
|
|
#!/bin/sh
|
|
|
|
GETOPT=`getopt -o ab:c:: --long a-long,b-long:,c-long:: \
|
|
|
|
-n 'example.busybox' -- "$@"`
|
|
|
|
if [ $? != 0 ] ; then exit 1 ; fi
|
|
|
|
eval set -- "$GETOPT"
|
|
|
|
while true ; do
|
|
|
|
case $1 in
|
|
|
|
-a|--a-long) echo "Option a" ; shift ;;
|
|
|
|
-b|--b-long) echo "Option b, argument \`$2'" ; shift 2 ;;
|
|
|
|
-c|--c-long)
|
|
|
|
case "$2" in
|
|
|
|
"") echo "Option c, no argument"; shift 2 ;;
|
|
|
|
*) echo "Option c, argument \`$2'" ; shift 2 ;;
|
|
|
|
esac ;;
|
|
|
|
--) shift ; break ;;
|
|
|
|
*) echo "Internal error!" ; exit 1 ;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item grep
|
|
|
|
|
2000-04-13 06:48:23 +05:30
|
|
|
Usage: grep [OPTIONS]... PATTERN [FILE]...
|
|
|
|
|
|
|
|
Search for PATTERN in each FILE or standard input.
|
|
|
|
|
2000-07-05 03:47:01 +05:30
|
|
|
Options:
|
2000-04-13 08:46:01 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-h suppress the prefixing filename on output
|
|
|
|
-i ignore case distinctions
|
|
|
|
-n print line number with output lines
|
|
|
|
-q be quiet. Returns 0 if result was found, 1 otherwise
|
2000-05-02 12:10:02 +05:30
|
|
|
-v select non-matching lines
|
2000-04-13 06:48:23 +05:30
|
|
|
|
2000-06-17 01:26:44 +05:30
|
|
|
This version of grep matches full regular expressions.
|
2000-04-13 06:48:23 +05:30
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ grep root /etc/passwd
|
|
|
|
root:x:0:0:root:/root:/bin/bash
|
|
|
|
$ grep ^[rR]oo. /etc/passwd
|
|
|
|
root:x:0:0:root:/root:/bin/bash
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
=item gunzip
|
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
Usage: gunzip [OPTION]... FILE
|
|
|
|
|
|
|
|
Uncompress FILE (or standard input if FILE is '-').
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-c Write output to standard output
|
|
|
|
-t Test compressed file integrity
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
$ ls -la /tmp/BusyBox*
|
|
|
|
-rw-rw-r-- 1 andersen andersen 557009 Apr 11 10:55 /tmp/BusyBox-0.43.tar.gz
|
|
|
|
$ gunzip /tmp/BusyBox-0.43.tar.gz
|
|
|
|
$ ls -la /tmp/BusyBox*
|
|
|
|
-rw-rw-r-- 1 andersen andersen 1761280 Apr 14 17:47 /tmp/BusyBox-0.43.tar
|
2000-04-14 00:19:43 +05:30
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
=item gzip
|
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
Usage: gzip [OPTION]... FILE
|
|
|
|
|
|
|
|
Compress FILE with maximum compression.
|
2000-04-16 15:52:28 +05:30
|
|
|
When FILE is '-', reads standard input. Implies B<-c>.
|
2000-04-15 22:04:54 +05:30
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-c Write output to standard output instead of FILE.gz
|
2000-12-13 23:29:37 +05:30
|
|
|
-d decompress
|
2000-04-15 22:04:54 +05:30
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
$ ls -la /tmp/BusyBox*
|
|
|
|
-rw-rw-r-- 1 andersen andersen 1761280 Apr 14 17:47 /tmp/BusyBox-0.43.tar
|
|
|
|
$ gzip /tmp/BusyBox-0.43.tar
|
|
|
|
$ ls -la /tmp/BusyBox*
|
|
|
|
-rw-rw-r-- 1 andersen andersen 554058 Apr 14 17:49 /tmp/BusyBox-0.43.tar.gz
|
2000-04-15 22:04:54 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
=item halt
|
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
Usage: halt
|
|
|
|
|
2000-06-17 01:26:44 +05:30
|
|
|
This command halts the system.
|
2000-04-14 00:19:43 +05:30
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item head
|
|
|
|
|
2000-04-13 06:48:23 +05:30
|
|
|
Usage: head [OPTION] [FILE]...
|
2000-01-19 20:34:41 +05:30
|
|
|
|
|
|
|
Print first 10 lines of each FILE to standard output.
|
|
|
|
With more than one FILE, precede each with a header giving the
|
|
|
|
file name. With no FILE, or when FILE is -, read standard input.
|
2000-04-13 06:48:23 +05:30
|
|
|
|
|
|
|
Options:
|
2000-04-13 08:46:01 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-n NUM Print first NUM lines instead of first 10
|
2000-04-13 06:48:23 +05:30
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ head -n 2 /etc/passwd
|
|
|
|
root:x:0:0:root:/root:/bin/bash
|
|
|
|
daemon:x:1:1:daemon:/usr/sbin:/bin/sh
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
=item hostid
|
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
Usage: hostid
|
|
|
|
|
|
|
|
Prints out a unique 32-bit identifier for the current
|
|
|
|
machine. The 32-bit identifier is intended to be unique
|
|
|
|
among all UNIX systems in existence.
|
2000-04-14 00:19:43 +05:30
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item hostname
|
|
|
|
|
2000-04-13 08:46:01 +05:30
|
|
|
Usage: hostname [OPTION] {hostname | B<-F> file}
|
2000-01-19 20:34:41 +05:30
|
|
|
|
|
|
|
Get or set the hostname or DNS domain name. If a hostname is given
|
2000-04-13 08:46:01 +05:30
|
|
|
(or a file with the B<-F> parameter), the host name will be set.
|
2000-04-13 06:48:23 +05:30
|
|
|
|
2000-01-19 20:34:41 +05:30
|
|
|
Options:
|
2000-04-13 08:46:01 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-s Short
|
|
|
|
-i Addresses for the hostname
|
|
|
|
-d DNS domain name
|
2000-10-13 04:00:31 +05:30
|
|
|
-F, --file FILE Use the contents of FILE to specify the hostname
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-04-13 06:48:23 +05:30
|
|
|
Example:
|
|
|
|
|
|
|
|
$ hostname
|
|
|
|
slag
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
|
|
|
|
2000-05-13 11:06:13 +05:30
|
|
|
=item id
|
|
|
|
|
|
|
|
Print information for USERNAME or the current user
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-g prints only the group ID
|
|
|
|
-u prints only the user ID
|
2001-01-25 10:42:02 +05:30
|
|
|
-n print a name instead of a number (with for -ug)
|
2000-05-13 11:06:13 +05:30
|
|
|
-r prints the real user ID instead of the effective ID (with -ug)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ id
|
|
|
|
uid=1000(andersen) gid=1000(andersen)
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
=item init
|
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
Usage: init
|
|
|
|
|
|
|
|
Init is the parent of all processes.
|
|
|
|
|
|
|
|
This version of init is designed to be run only by the kernel.
|
|
|
|
|
|
|
|
BusyBox init doesn't support multiple runlevels. The runlevels field of
|
|
|
|
the /etc/inittab file is completely ignored by BusyBox init. If you want
|
|
|
|
runlevels, use sysvinit.
|
|
|
|
|
|
|
|
BusyBox init works just fine without an inittab. If no inittab is found,
|
|
|
|
it has the following default behavior:
|
|
|
|
|
|
|
|
::sysinit:/etc/init.d/rcS
|
|
|
|
::askfirst:/bin/sh
|
|
|
|
|
|
|
|
if it detects that /dev/console is _not_ a serial console, it will also run:
|
|
|
|
|
|
|
|
tty2::askfirst:/bin/sh
|
|
|
|
|
|
|
|
If you choose to use an /etc/inittab file, the inittab entry format is as follows:
|
|
|
|
|
|
|
|
<id>:<runlevels>:<action>:<process>
|
|
|
|
|
|
|
|
<id>:
|
|
|
|
|
|
|
|
WARNING: This field has a non-traditional meaning for BusyBox init!
|
|
|
|
The id field is used by BusyBox init to specify the controlling tty for
|
|
|
|
the specified process to run on. The contents of this field are
|
|
|
|
appended to "/dev/" and used as-is. There is no need for this field to
|
|
|
|
be unique, although if it isn't you may have strange results. If this
|
2000-12-19 02:06:02 +05:30
|
|
|
field is left blank, the controlling tty is set to the console. Also
|
|
|
|
note that if BusyBox detects that a serial console is in use, then only
|
|
|
|
entries whose controlling tty is either the serial console or /dev/null
|
|
|
|
will be run. BusyBox init does nothing with utmp. We don't need no
|
|
|
|
stinkin' utmp.
|
2000-04-15 22:04:54 +05:30
|
|
|
|
|
|
|
<runlevels>:
|
|
|
|
|
|
|
|
The runlevels field is completely ignored.
|
|
|
|
|
|
|
|
<action>:
|
|
|
|
|
|
|
|
Valid actions include: sysinit, respawn, askfirst, wait,
|
|
|
|
once, and ctrlaltdel.
|
|
|
|
|
|
|
|
|
2000-12-09 02:08:00 +05:30
|
|
|
The available actions can be classified into two groups: actions
|
|
|
|
that are run only once, and actions that are re-run when the specified
|
|
|
|
process exits.
|
|
|
|
|
|
|
|
Run only-once actions:
|
|
|
|
|
|
|
|
'sysinit' is the first item run on boot. init waits until all
|
|
|
|
sysinit actions are completed before continuing. Following the
|
|
|
|
completion of all sysinit actions, all 'wait' actions are run.
|
|
|
|
'wait' actions, like 'sysinit' actions, cause init to wait until
|
|
|
|
the specified task completes. 'once' actions are asyncronous,
|
|
|
|
therefore, init does not wait for them to complete. 'ctrlaltdel'
|
|
|
|
actions are run immediately before init causes the system to reboot
|
|
|
|
(unmounting filesystems with a 'ctrlaltdel' action is a very good
|
|
|
|
idea).
|
|
|
|
|
|
|
|
Run repeatedly actions:
|
|
|
|
|
|
|
|
'respawn' actions are run after the 'once' actions. When a process
|
|
|
|
started with a 'respawn' action exits, init automatically restarts
|
|
|
|
it. Unlike sysvinit, BusyBox init does not stop processes from
|
|
|
|
respawning out of control. The 'askfirst' actions acts just like
|
|
|
|
respawn, except that before running the specified process it
|
|
|
|
displays the line "Please press Enter to activate this console."
|
|
|
|
and then waits for the user to press enter before starting the
|
|
|
|
specified process.
|
|
|
|
|
|
|
|
Unrecognized actions (like initdefault) will cause init to emit an
|
|
|
|
error message, and then go along with its business. All actions are
|
|
|
|
run in the reverse order from how they appear in /etc/inittab.
|
2000-04-15 22:04:54 +05:30
|
|
|
|
|
|
|
<process>:
|
|
|
|
|
|
|
|
Specifies the process to be executed and it's command line.
|
|
|
|
|
|
|
|
|
|
|
|
Example /etc/inittab file:
|
|
|
|
|
|
|
|
# This is run first except when booting in single-user mode.
|
|
|
|
#
|
|
|
|
::sysinit:/etc/init.d/rcS
|
|
|
|
|
|
|
|
# /bin/sh invocations on selected ttys
|
|
|
|
#
|
|
|
|
# Start an "askfirst" shell on the console (whatever that may be)
|
2000-09-15 22:54:13 +05:30
|
|
|
::askfirst:-/bin/sh
|
|
|
|
# Start an "askfirst" shell on /dev/tty2-4
|
|
|
|
tty2::askfirst:-/bin/sh
|
|
|
|
tty3::askfirst:-/bin/sh
|
|
|
|
tty4::askfirst:-/bin/sh
|
2000-04-15 22:04:54 +05:30
|
|
|
|
|
|
|
# /sbin/getty invocations for selected ttys
|
|
|
|
#
|
2000-09-15 22:54:13 +05:30
|
|
|
tty4::respawn:/sbin/getty 38400 tty5
|
|
|
|
tty5::respawn:/sbin/getty 38400 tty6
|
2000-04-15 22:04:54 +05:30
|
|
|
|
|
|
|
|
|
|
|
# Example of how to put a getty on a serial line (for a terminal)
|
|
|
|
#
|
2000-09-27 03:50:06 +05:30
|
|
|
#::respawn:/sbin/getty -L ttyS0 9600 vt100
|
|
|
|
#::respawn:/sbin/getty -L ttyS1 9600 vt100
|
2000-04-15 22:04:54 +05:30
|
|
|
#
|
|
|
|
# Example how to put a getty on a modem line.
|
2000-09-27 03:50:06 +05:30
|
|
|
#::respawn:/sbin/getty 57600 ttyS2
|
2000-04-15 22:04:54 +05:30
|
|
|
|
|
|
|
# Stuff to do before rebooting
|
2000-09-15 22:54:13 +05:30
|
|
|
::ctrlaltdel:/bin/umount -a -r
|
|
|
|
::ctrlaltdel:/sbin/swapoff -a
|
2000-04-14 00:19:43 +05:30
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-06-22 02:33:13 +05:30
|
|
|
=item insmod
|
|
|
|
|
|
|
|
Usage: insmod [OPTION]... MODULE [symbol=value]...
|
|
|
|
|
|
|
|
Loads the specified kernel modules into the kernel.
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-f Force module to load into the wrong kernel version.
|
|
|
|
-k Make module autoclean-able.
|
|
|
|
-v verbose output
|
|
|
|
-x do not export externs
|
2001-01-25 00:45:07 +05:30
|
|
|
-L Prevent simultaneous loads of the same module
|
2000-06-22 02:33:13 +05:30
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item kill
|
|
|
|
|
2000-04-13 08:46:01 +05:30
|
|
|
Usage: kill [B<-signal>] process-id [process-id ...]
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-13 06:48:23 +05:30
|
|
|
Send a signal (default is SIGTERM) to the specified process(es).
|
|
|
|
|
|
|
|
Options:
|
2000-04-13 08:46:01 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-l List all signal names and numbers.
|
2000-04-13 06:48:23 +05:30
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ ps | grep apache
|
|
|
|
252 root root S [apache]
|
|
|
|
263 www-data www-data S [apache]
|
|
|
|
264 www-data www-data S [apache]
|
|
|
|
265 www-data www-data S [apache]
|
|
|
|
266 www-data www-data S [apache]
|
|
|
|
267 www-data www-data S [apache]
|
|
|
|
$ kill 252
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
=item killall
|
|
|
|
|
2000-04-16 15:52:28 +05:30
|
|
|
Usage: killall [B<-signal>] process-name [process-name ...]
|
2000-04-15 22:04:54 +05:30
|
|
|
|
|
|
|
Send a signal (default is SIGTERM) to the specified process(es).
|
|
|
|
|
|
|
|
Options:
|
2000-04-16 15:52:28 +05:30
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
-l List all signal names and numbers.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ killall apache
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
=item length
|
|
|
|
|
2000-05-13 01:11:47 +05:30
|
|
|
Usage: length STRING
|
2000-04-15 22:04:54 +05:30
|
|
|
|
2000-05-13 01:11:47 +05:30
|
|
|
Prints out the length of the specified STRING.
|
2000-04-15 22:04:54 +05:30
|
|
|
|
|
|
|
Example:
|
2000-05-02 12:10:02 +05:30
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
$ length "Hello"
|
|
|
|
5
|
2000-04-14 00:19:43 +05:30
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item ln
|
|
|
|
|
2000-01-19 20:34:41 +05:30
|
|
|
Usage: ln [OPTION] TARGET... LINK_NAME|DIRECTORY
|
2000-05-02 12:10:02 +05:30
|
|
|
|
2000-01-19 20:34:41 +05:30
|
|
|
Create a link named LINK_NAME or DIRECTORY to the specified TARGET
|
2000-06-22 04:23:24 +05:30
|
|
|
You may use '--' to indicate that all following arguments are non-options.
|
2000-06-22 03:08:00 +05:30
|
|
|
|
2000-01-19 20:34:41 +05:30
|
|
|
Options:
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-s make symbolic links instead of hard links
|
|
|
|
-f remove existing destination files
|
2000-06-22 03:08:00 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
Example:
|
|
|
|
|
2000-04-21 06:53:36 +05:30
|
|
|
$ ln -s BusyBox /tmp/ls
|
2000-05-02 12:10:02 +05:30
|
|
|
$ ls -l /tmp/ls
|
2000-04-21 06:53:36 +05:30
|
|
|
lrwxrwxrwx 1 root root 7 Apr 12 18:39 ls -> BusyBox*
|
2000-04-14 00:19:43 +05:30
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
=item loadacm
|
|
|
|
|
2000-04-19 09:29:10 +05:30
|
|
|
Usage: loadacm
|
|
|
|
|
|
|
|
Loads an acm from standard input.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ loadacm < /etc/i18n/acmname
|
2000-04-15 22:04:54 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
=item loadfont
|
|
|
|
|
2000-04-18 05:30:52 +05:30
|
|
|
Usage: loadfont
|
|
|
|
|
|
|
|
Loads a console font from standard input.
|
|
|
|
|
2000-04-19 09:29:10 +05:30
|
|
|
Example:
|
|
|
|
|
|
|
|
$ loadfont < /etc/i18n/fontname
|
2000-04-15 22:04:54 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
=item loadkmap
|
|
|
|
|
2000-04-19 09:29:10 +05:30
|
|
|
Usage: loadkmap
|
|
|
|
|
|
|
|
Loads a binary keyboard translation table from standard input.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ loadkmap < /etc/i18n/lang-keymap
|
2000-04-15 22:04:54 +05:30
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
=item logger
|
|
|
|
|
|
|
|
Usage: logger [OPTION]... [MESSAGE]
|
|
|
|
|
2001-01-03 04:24:12 +05:30
|
|
|
Write MESSAGE to the system log. If MESSAGE is omitted, log stdin.
|
2000-04-15 22:04:54 +05:30
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-s Log to stderr as well as the system log.
|
|
|
|
-t Log using the specified tag (defaults to user name).
|
|
|
|
-p Enter the message with the specified priority.
|
|
|
|
This may be numerical or a ``facility.level'' pair.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ logger "hello"
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
=item logname
|
|
|
|
|
|
|
|
Usage: logname
|
|
|
|
|
|
|
|
Print the name of the current user.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ logname
|
|
|
|
root
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item ls
|
|
|
|
|
2000-09-23 01:52:28 +05:30
|
|
|
Usage: ls [B<-1acdelnpuxACFLR>] [filenames...]
|
2000-04-14 00:19:43 +05:30
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-a do not hide entries starting with .
|
|
|
|
-c with -l: show ctime (the time of last
|
|
|
|
modification of file status information)
|
|
|
|
-d list directory entries instead of contents
|
|
|
|
-e list both full date and full time
|
|
|
|
-l use a long listing format
|
|
|
|
-n list numeric UIDs and GIDs instead of names
|
|
|
|
-p append indicator (one of /=@|) to entries
|
|
|
|
-u with -l: show access time (the time of last
|
|
|
|
access of the file)
|
|
|
|
-x list entries by lines instead of by columns
|
|
|
|
-A do not list implied . and ..
|
|
|
|
-C list entries by columns
|
|
|
|
-F append indicator (one of */=@|) to entries
|
2000-06-07 22:58:53 +05:30
|
|
|
-R list subdirectories recursively
|
2000-09-23 01:52:28 +05:30
|
|
|
-L list entries pointed to by symbolic links
|
2000-04-14 05:14:04 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item lsmod
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
Usage: lsmod
|
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
Shows a list of all currently loaded kernel modules.
|
2000-04-14 00:19:43 +05:30
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
=item makedevs
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
Usage: makedevs NAME TYPE MAJOR MINOR FIRST LAST [s]
|
|
|
|
|
|
|
|
Creates a range of block or character special files
|
|
|
|
|
|
|
|
TYPEs include:
|
|
|
|
|
|
|
|
b: Make a block (buffered) device.
|
|
|
|
c or u: Make a character (un-buffered) device.
|
|
|
|
p: Make a named pipe. MAJOR and MINOR are ignored for named pipes.
|
|
|
|
|
|
|
|
FIRST specifies the number appended to NAME to create the first device.
|
|
|
|
LAST specifies the number of the last item that should be created.
|
|
|
|
If 's' is the last argument, the base device is created as well.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ makedevs /dev/ttyS c 4 66 2 63
|
|
|
|
[creates ttyS2-ttyS63]
|
|
|
|
$ makedevs /dev/hda b 3 0 0 8 s
|
|
|
|
[creates hda,hda1-hda8]
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
|
|
|
|
2000-06-13 12:24:53 +05:30
|
|
|
=item md5sum
|
|
|
|
|
|
|
|
Usage: md5sum [OPTION] [file ...]
|
|
|
|
|
|
|
|
Print or check MD5 checksums.
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-b read files in binary mode
|
|
|
|
-c check MD5 sums against given list
|
|
|
|
-t read files in text mode (default)
|
|
|
|
-g read a string
|
|
|
|
|
|
|
|
The following two options are useful only when verifying checksums:
|
|
|
|
|
|
|
|
-s don't output anything, status code shows success
|
|
|
|
-w warn about improperly formated MD5 checksum lines
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ md5sum busybox
|
|
|
|
6fd11e98b98a58f64ff3398d7b324003 busybox
|
|
|
|
$ md5sum -c -
|
|
|
|
6fd11e98b98a58f64ff3398d7b324003 busybox
|
|
|
|
busybox: OK
|
|
|
|
^D
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item mkdir
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
Usage: mkdir [OPTION] DIRECTORY...
|
|
|
|
|
2000-01-19 20:34:41 +05:30
|
|
|
Create the DIRECTORY(ies), if they do not already exist
|
2000-04-14 00:19:43 +05:30
|
|
|
|
2000-01-19 20:34:41 +05:30
|
|
|
Options:
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-m set permission mode (as in chmod), not rwxrwxrwx - umask
|
2000-06-17 01:26:44 +05:30
|
|
|
-p no error if directory exists, make parent directories as needed
|
2000-04-14 00:19:43 +05:30
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ mkdir /tmp/foo
|
|
|
|
$ mkdir /tmp/foo
|
|
|
|
/tmp/foo: File exists
|
|
|
|
$ mkdir /tmp/foo/bar/baz
|
|
|
|
/tmp/foo/bar/baz: No such file or directory
|
|
|
|
$ mkdir -p /tmp/foo/bar/baz
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
=item mkfifo
|
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
Usage: mkfifo [OPTIONS] name
|
|
|
|
|
|
|
|
Creates a named pipe (identical to 'mknod name p')
|
|
|
|
|
|
|
|
Options:
|
2000-04-16 15:52:28 +05:30
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
-m create the pipe using the specified mode (default a=rw)
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
=item mkfs.minix
|
|
|
|
|
|
|
|
Usage: mkfs.minix [B<-c> | B<-l> filename] [B<-nXX>] [B<-iXX>] /dev/name [blocks]
|
|
|
|
|
|
|
|
Make a MINIX filesystem.
|
|
|
|
|
2000-07-05 03:47:01 +05:30
|
|
|
Options:
|
2000-04-15 22:04:54 +05:30
|
|
|
|
|
|
|
-c Check the device for bad blocks
|
|
|
|
-n [14|30] Specify the maximum length of filenames
|
|
|
|
-i Specify the number of inodes for the filesystem
|
|
|
|
-l FILENAME Read the bad blocks list from FILENAME
|
|
|
|
-v Make a Minix version 2 filesystem
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item mknod
|
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
Usage: mknod [OPTIONS] NAME TYPE MAJOR MINOR
|
2000-04-14 00:19:43 +05:30
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
Create a special file (block, character, or pipe).
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
Options:
|
2000-04-16 15:52:28 +05:30
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
-m create the special file using the specified mode (default a=rw)
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
TYPEs include:
|
|
|
|
b: Make a block (buffered) device.
|
|
|
|
c or u: Make a character (un-buffered) device.
|
|
|
|
p: Make a named pipe. MAJOR and MINOR are ignored for named pipes.
|
2000-04-14 00:19:43 +05:30
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ mknod /dev/fd0 b 2 0
|
2000-04-15 22:04:54 +05:30
|
|
|
$ mknod -m 644 /tmp/pipe p
|
2000-04-14 00:19:43 +05:30
|
|
|
|
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item mkswap
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
Usage: mkswap [B<-c>] [B<-v0>|B<-v1>] device [block-count]
|
|
|
|
|
2000-01-19 20:34:41 +05:30
|
|
|
Prepare a disk partition to be used as a swap partition.
|
2000-04-14 00:19:43 +05:30
|
|
|
|
2000-01-19 20:34:41 +05:30
|
|
|
Options:
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-c Check for read-ability.
|
|
|
|
-v0 Make version 0 swap [max 128 Megs].
|
|
|
|
-v1 Make version 1 swap [big!] (default for kernels > 2.1.117).
|
|
|
|
block-count Number of block to use (default is entire partition).
|
2000-04-14 05:14:04 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
|
|
|
|
2000-04-26 04:54:55 +05:30
|
|
|
=item mktemp
|
|
|
|
|
2000-05-02 11:02:07 +05:30
|
|
|
Usage: mktemp [B<-q>] TEMPLATE
|
2000-04-26 04:54:55 +05:30
|
|
|
|
|
|
|
Creates a temporary file with its name based on TEMPLATE.
|
|
|
|
TEMPLATE is any name with six `Xs' (i.e. /tmp/temp.XXXXXX).
|
|
|
|
|
|
|
|
Example:
|
2000-05-02 12:10:02 +05:30
|
|
|
|
2000-04-26 04:54:55 +05:30
|
|
|
$ mktemp /tmp/temp.XXXXXX
|
|
|
|
/tmp/temp.mWiLjM
|
|
|
|
$ ls -la /tmp/temp.mWiLjM
|
|
|
|
-rw------- 1 andersen andersen 0 Apr 25 17:10 /tmp/temp.mWiLjM
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item more
|
|
|
|
|
2000-01-19 20:34:41 +05:30
|
|
|
Usage: more [file ...]
|
2000-04-14 00:19:43 +05:30
|
|
|
|
|
|
|
More is a filter for paging through text one screenful at a time.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ dmesg | more
|
2000-04-14 05:14:04 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item mount
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
Usage: mount [flags]
|
|
|
|
mount [flags] device directory [B<-o> options,more-options]
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
Flags:
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-05-06 01:19:33 +05:30
|
|
|
-a: Mount all file systems in fstab.
|
2000-04-14 00:19:43 +05:30
|
|
|
-o option: One of many filesystem options, listed below.
|
2000-05-06 01:19:33 +05:30
|
|
|
-r: Mount the filesystem read-only.
|
|
|
|
-t fs-type: Specify the filesystem type.
|
|
|
|
-w: Mount for reading and writing (default).
|
|
|
|
|
2000-05-13 01:11:47 +05:30
|
|
|
Options for use with the "B<-o>" flag:
|
2000-05-06 01:19:33 +05:30
|
|
|
|
|
|
|
async/sync: Writes are asynchronous / synchronous.
|
|
|
|
atime/noatime: Enable / disable updates to inode access times.
|
|
|
|
dev/nodev: Allow use of special device files / disallow them.
|
|
|
|
exec/noexec: Allow use of executable files / disallow them.
|
|
|
|
loop: Mounts a file via loop device.
|
|
|
|
suid/nosuid: Allow set-user-id-root programs / disallow them.
|
|
|
|
remount: Re-mount a currently-mounted filesystem, changing its flags.
|
|
|
|
ro/rw: Mount for read-only / read-write.
|
2000-04-14 00:19:43 +05:30
|
|
|
There are EVEN MORE flags that are specific to each filesystem.
|
|
|
|
You'll have to see the written documentation for those.
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
Example:
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
$ mount
|
|
|
|
/dev/hda3 on / type minix (rw)
|
|
|
|
proc on /proc type proc (rw)
|
|
|
|
devpts on /dev/pts type devpts (rw)
|
|
|
|
$ mount /dev/fd0 /mnt -t msdos -o ro
|
|
|
|
$ mount /tmp/diskimage /opt -t ext2 -o loop
|
2000-04-14 05:14:04 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
=item mt
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-16 15:52:28 +05:30
|
|
|
Usage: mt [B<-f> device] opcode value
|
2000-04-15 22:04:54 +05:30
|
|
|
|
|
|
|
Control magnetic tape drive operation
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
=item mv
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
Usage: mv SOURCE DEST
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
or: mv SOURCE... DIRECTORY
|
|
|
|
|
|
|
|
Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
Example:
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
$ mv /tmp/foo /bin/bar
|
2000-04-14 05:14:04 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-07-05 01:37:13 +05:30
|
|
|
=item nc
|
|
|
|
|
|
|
|
Usage: nc [IP] [port]
|
|
|
|
|
|
|
|
Netcat opens a pipe to IP:port
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ nc foobar.somedomain.com 25
|
|
|
|
220 foobar ESMTP Exim 3.12 #1 Sat, 15 Apr 2000 00:03:02 -0600
|
|
|
|
help
|
|
|
|
214-Commands supported:
|
|
|
|
214- HELO EHLO MAIL RCPT DATA AUTH
|
|
|
|
214 NOOP QUIT RSET HELP
|
|
|
|
quit
|
|
|
|
221 foobar closing connection
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
=item nslookup
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
Usage: nslookup [HOST]
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
Queries the nameserver for the IP address of the given HOST
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ nslookup localhost
|
|
|
|
Server: default
|
|
|
|
Address: default
|
|
|
|
|
|
|
|
Name: debian
|
|
|
|
Address: 127.0.0.1
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
=item ping
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
Usage: ping [OPTION]... host
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
Send ICMP ECHO_REQUEST packets to network hosts.
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-01-19 20:34:41 +05:30
|
|
|
Options:
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-c COUNT Send only COUNT pings.
|
2000-06-08 02:08:15 +05:30
|
|
|
-s SIZE Send SIZE data bytes in packets (default=56).
|
2000-04-14 00:19:43 +05:30
|
|
|
-q Quiet mode, only displays output at start
|
|
|
|
and when finished.
|
|
|
|
Example:
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
$ ping localhost
|
|
|
|
PING slag (127.0.0.1): 56 data bytes
|
|
|
|
64 bytes from 127.0.0.1: icmp_seq=0 ttl=255 time=20.1 ms
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
--- debian ping statistics ---
|
|
|
|
1 packets transmitted, 1 packets received, 0% packet loss
|
|
|
|
round-trip min/avg/max = 20.1/20.1/20.1 ms
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
=item poweroff
|
|
|
|
|
|
|
|
Shuts down the system, and requests that the kernel turn off power upon halting.
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
=item printf
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
Usage: printf format [argument...]
|
|
|
|
|
|
|
|
Formats and prints the given data in a manner similar to the C printf command.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ printf "Val=%d\n" 5
|
|
|
|
Val=5
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
=item ps
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
Usage: ps
|
|
|
|
|
|
|
|
Report process status
|
|
|
|
|
|
|
|
This version of ps accepts no options.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ ps
|
|
|
|
PID Uid Gid State Command
|
|
|
|
1 root root S init
|
|
|
|
2 root root S [kflushd]
|
|
|
|
3 root root S [kupdate]
|
|
|
|
4 root root S [kpiod]
|
|
|
|
5 root root S [kswapd]
|
|
|
|
742 andersen andersen S [bash]
|
|
|
|
743 andersen andersen S -bash
|
|
|
|
745 root root S [getty]
|
|
|
|
2990 andersen andersen R ps
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
=item pwd
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
Prints the full filename of the current working directory.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ pwd
|
|
|
|
/root
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-08-22 04:16:33 +05:30
|
|
|
=item rdate
|
|
|
|
|
|
|
|
Usage: rdate [OPTION] HOST
|
|
|
|
|
|
|
|
Get and possibly set the system date and time from a remote HOST.
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-s Set the system date and time (default).
|
|
|
|
-p Print the date and time.
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
=item reboot
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
Instructs the kernel to reboot the system.
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-07-22 03:02:12 +05:30
|
|
|
=item renice
|
|
|
|
|
|
|
|
Usage: renice priority pid [pid ...]
|
|
|
|
|
|
|
|
Changes priority of running processes. Allowed priorities range
|
|
|
|
from 20 (the process runs only when nothing else is running) to 0
|
|
|
|
(default priority) to -20 (almost nothing else ever gets to run).
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-08-22 02:48:52 +05:30
|
|
|
=item reset
|
|
|
|
|
|
|
|
Usage: reset
|
|
|
|
|
|
|
|
Resets the screen.
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
=item rm
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
Usage: rm [OPTION]... FILE...
|
|
|
|
|
2000-06-06 21:45:23 +05:30
|
|
|
Remove (unlink) the FILE(s). You may use '--' to
|
|
|
|
indicate that all following arguments are non-options.
|
2000-04-15 22:04:54 +05:30
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-f remove existing destinations, never prompt
|
|
|
|
-r or -R remove the contents of directories recursively
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ rm -rf /tmp/foo
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
=item rmdir
|
|
|
|
|
|
|
|
Usage: rmdir [OPTION]... DIRECTORY...
|
|
|
|
|
|
|
|
Remove the DIRECTORY(ies), if they are empty.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
# rmdir /tmp/foo
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
=item rmmod
|
|
|
|
|
|
|
|
Usage: rmmod [OPTION]... [MODULE]...
|
|
|
|
|
|
|
|
Unloads the specified kernel modules from the kernel.
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-a Try to remove all unused kernel modules.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ rmmod tulip
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
=item sed
|
|
|
|
|
2000-04-16 15:52:28 +05:30
|
|
|
Usage: sed [B<-n>] B<-e> script [file...]
|
2000-04-15 22:04:54 +05:30
|
|
|
|
|
|
|
Allowed sed scripts come in the following form:
|
|
|
|
|
|
|
|
'ADDR [!] COMMAND'
|
|
|
|
|
|
|
|
where address ADDR can be:
|
|
|
|
NUMBER Match specified line number
|
|
|
|
$ Match last line
|
|
|
|
/REGEXP/ Match specified regexp
|
|
|
|
(! inverts the meaning of the match)
|
|
|
|
|
|
|
|
and COMMAND can be:
|
|
|
|
s/regexp/replacement/[igp]
|
|
|
|
which attempt to match regexp against the pattern space
|
|
|
|
and if successful replaces the matched portion with replacement.
|
|
|
|
|
|
|
|
aTEXT
|
|
|
|
which appends TEXT after the pattern space
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-e add the script to the commands to be executed
|
|
|
|
-n suppress automatic printing of pattern space
|
|
|
|
|
2000-06-17 01:26:44 +05:30
|
|
|
This version of sed matches full regular expressions.
|
2000-04-15 22:04:54 +05:30
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ echo "foo" | sed -e 's/f[a-zA-Z]o/bar/g'
|
|
|
|
bar
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-04-28 05:48:56 +05:30
|
|
|
=item setkeycodes
|
|
|
|
|
|
|
|
Usage: setkeycodes SCANCODE KEYCODE ...
|
|
|
|
|
|
|
|
Set entries into the kernel's scancode-to-keycode map,
|
|
|
|
allowing unusual keyboards to generate usable keycodes.
|
|
|
|
|
|
|
|
SCANCODE may be either xx or e0xx (hexadecimal),
|
|
|
|
and KEYCODE is given in decimal
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
# setkeycodes e030 127
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-07-05 01:37:13 +05:30
|
|
|
=item sh
|
|
|
|
|
|
|
|
Usage: sh
|
|
|
|
|
|
|
|
lash -- the BusyBox LAme SHell (command interpreter)
|
|
|
|
|
|
|
|
This command does not yet have proper documentation.
|
|
|
|
|
|
|
|
Use lash just as you would use any other shell. It properly handles pipes,
|
|
|
|
redirects, job control, can be used as the shell for scripts (#!/bin/sh), and
|
|
|
|
has a sufficient set of builtins to do what is needed. It does not (yet)
|
|
|
|
support Bourne Shell syntax. If you need things like "if-then-else", "while",
|
|
|
|
and such, use ash or bash. If you just need a very simple and extremely small
|
|
|
|
shell, this will do the job.
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
=item sleep
|
|
|
|
|
|
|
|
Usage: sleep N
|
|
|
|
|
|
|
|
Pause for N seconds.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ sleep 2
|
|
|
|
[2 second delay results]
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
=item sort
|
|
|
|
|
2000-04-16 15:52:28 +05:30
|
|
|
Usage: sort [B<-n>] [B<-r>] [FILE]...
|
2000-04-15 22:04:54 +05:30
|
|
|
|
|
|
|
Sorts lines of text in the specified files
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ echo -e "e\nf\nb\nd\nc\na" | sort
|
|
|
|
a
|
|
|
|
b
|
|
|
|
c
|
|
|
|
d
|
|
|
|
e
|
|
|
|
f
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-07-05 01:37:13 +05:30
|
|
|
=item swapoff
|
2000-04-15 22:04:54 +05:30
|
|
|
|
2000-07-05 01:37:13 +05:30
|
|
|
Usage: swapoff [OPTION] [device]
|
2000-04-15 22:04:54 +05:30
|
|
|
|
2000-07-05 01:37:13 +05:30
|
|
|
Stop swapping virtual memory pages on the given device.
|
2000-04-15 22:04:54 +05:30
|
|
|
|
|
|
|
Options:
|
2000-06-08 02:49:49 +05:30
|
|
|
|
2000-07-05 01:37:13 +05:30
|
|
|
-a Stop swapping on all swap devices
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item swapon
|
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
Usage: swapon [OPTION] [device]
|
|
|
|
|
|
|
|
Start swapping virtual memory pages on the given device.
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-a Start swapping on all swap devices
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-07-05 01:37:13 +05:30
|
|
|
=item sync
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-07-05 01:37:13 +05:30
|
|
|
Usage: sync
|
2000-04-15 22:04:54 +05:30
|
|
|
|
2000-07-05 01:37:13 +05:30
|
|
|
Write all buffered filesystem blocks to disk.
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
=item syslogd
|
|
|
|
|
|
|
|
Usage: syslogd [OPTION]...
|
|
|
|
|
|
|
|
Linux system and kernel (provides klogd) logging utility.
|
|
|
|
Note that this version of syslogd/klogd ignores /etc/syslog.conf.
|
2000-04-15 22:04:54 +05:30
|
|
|
|
|
|
|
Options:
|
|
|
|
|
2000-12-09 01:22:01 +05:30
|
|
|
-m NUM Interval between MARK lines (default=20min, 0=off)
|
2000-07-05 01:37:13 +05:30
|
|
|
-n Run as a foreground process
|
|
|
|
-K Do not start up the klogd process
|
2000-12-09 01:22:01 +05:30
|
|
|
-O FILE Use an alternate log file (default=/var/log/messages)
|
2000-12-11 21:54:16 +05:30
|
|
|
-R HOST[:PORT] Log remotely to IP or hostname on PORT (default PORT=514/UDP)
|
2000-12-12 01:09:25 +05:30
|
|
|
-L Log locally as well as network logging (default is network only)
|
2000-07-21 05:11:24 +05:30
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ syslogd -R masterlog:514
|
|
|
|
$ syslogd -R 192.168.1.1:601
|
2000-04-15 22:04:54 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item tail
|
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
Usage: tail [OPTION] [FILE]...
|
|
|
|
|
|
|
|
Print last 10 lines of each FILE to standard output.
|
|
|
|
With more than one FILE, precede each with a header giving the
|
|
|
|
file name. With no FILE, or when FILE is -, read standard input.
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-n NUM Print last NUM lines instead of first 10
|
|
|
|
-f Output data as the file grows. This version
|
|
|
|
of 'tail -f' supports only one file at a time.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ tail -n 1 /etc/resolv.conf
|
|
|
|
nameserver 10.0.0.1
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item tar
|
|
|
|
|
2000-04-16 15:52:28 +05:30
|
|
|
Usage: tar -[cxtvO] [B<--exclude> File] [B<-f> tarFile] [FILE] ...
|
2000-04-15 22:04:54 +05:30
|
|
|
|
|
|
|
Create, extract, or list files from a tar file. Note that
|
|
|
|
this version of tar treats hard links as separate files.
|
|
|
|
|
|
|
|
Main operation mode:
|
|
|
|
|
|
|
|
c create
|
|
|
|
x extract
|
|
|
|
t list
|
|
|
|
|
|
|
|
File selection:
|
|
|
|
|
|
|
|
f name of tarfile or "-" for stdin
|
|
|
|
O extract to stdout
|
2000-08-03 00:18:26 +05:30
|
|
|
exclude file to exclude
|
2000-04-15 22:04:54 +05:30
|
|
|
|
|
|
|
Informative output:
|
|
|
|
|
|
|
|
v verbosely list files processed
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ zcat /tmp/tarball.tar.gz | tar -xf -
|
|
|
|
$ tar -cf /tmp/tarball.tar /usr/local
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-07-05 01:37:13 +05:30
|
|
|
=item tee
|
2000-04-14 00:19:43 +05:30
|
|
|
|
2000-07-05 01:37:13 +05:30
|
|
|
Usage: tee [OPTION]... [FILE]...
|
2000-04-15 22:04:54 +05:30
|
|
|
|
2000-07-05 01:37:13 +05:30
|
|
|
Copy standard input to each FILE, and also to standard output.
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-a append to the given FILEs, do not overwrite
|
2000-04-15 22:04:54 +05:30
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2000-07-05 01:37:13 +05:30
|
|
|
$ echo "Hello" | tee /tmp/foo
|
|
|
|
$ cat /tmp/foo
|
|
|
|
Hello
|
2000-04-15 22:04:54 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-06-22 02:34:01 +05:30
|
|
|
=item telnet
|
|
|
|
|
|
|
|
Usage: telnet host [port]
|
|
|
|
|
|
|
|
Telnet is used to establish interactive communication with another
|
|
|
|
computer over a network using the TELNET protocol.
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-07-05 01:37:13 +05:30
|
|
|
=item test, [
|
2000-04-15 22:04:54 +05:30
|
|
|
|
2000-07-05 01:37:13 +05:30
|
|
|
Usage: test EXPRESSION
|
|
|
|
or [ EXPRESSION ]
|
2000-04-15 22:04:54 +05:30
|
|
|
|
2000-07-05 01:37:13 +05:30
|
|
|
Checks file types and compares values returning an exit
|
|
|
|
code determined by the value of EXPRESSION.
|
2000-04-15 22:04:54 +05:30
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2000-07-05 01:37:13 +05:30
|
|
|
$ test 1 -eq 2
|
|
|
|
$ echo $?
|
|
|
|
1
|
|
|
|
$ test 1 -eq 1
|
|
|
|
$ echo $?
|
|
|
|
0
|
|
|
|
$ [ -d /etc ]
|
|
|
|
$ echo $?
|
|
|
|
0
|
|
|
|
$ [ -d /junk ]
|
|
|
|
$ echo $?
|
|
|
|
1
|
2000-04-15 22:04:54 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item touch
|
|
|
|
|
2000-04-16 15:52:28 +05:30
|
|
|
Usage: touch [B<-c>] file [file ...]
|
2000-04-15 22:04:54 +05:30
|
|
|
|
|
|
|
Update the last-modified date on (or create) the selected file[s].
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ ls -l /tmp/foo
|
|
|
|
/bin/ls: /tmp/foo: No such file or directory
|
|
|
|
$ touch /tmp/foo
|
|
|
|
$ ls -l /tmp/foo
|
|
|
|
-rw-rw-r-- 1 andersen andersen 0 Apr 15 01:11 /tmp/foo
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
=item tr
|
2000-05-02 12:10:02 +05:30
|
|
|
|
2000-05-02 04:04:24 +05:30
|
|
|
Usage: tr [-cds] STRING1 [STRING2]
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-05-02 04:04:24 +05:30
|
|
|
Translate, squeeze, and/or delete characters from
|
|
|
|
standard input, writing to standard output.
|
2000-04-15 22:04:54 +05:30
|
|
|
|
2000-05-02 04:04:24 +05:30
|
|
|
Options:
|
|
|
|
|
|
|
|
-c take complement of STRING1
|
|
|
|
-d delete input characters coded STRING1
|
|
|
|
-s squeeze multiple output characters of STRING2 into one character
|
2000-04-15 22:04:54 +05:30
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ echo "gdkkn vnqkc" | tr [a-y] [b-z]
|
|
|
|
hello world
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
=item true
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-04-15 22:04:54 +05:30
|
|
|
Returns an exit code of TRUE (0)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ true
|
|
|
|
$ echo $?
|
|
|
|
0
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
=item tty
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-17 21:46:10 +05:30
|
|
|
Usage: tty
|
|
|
|
|
|
|
|
Print the file name of the terminal connected to standard input.
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-s print nothing, only return an exit status
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ tty
|
|
|
|
/dev/tty2
|
2000-04-15 22:04:54 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
=item umount
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-17 21:46:10 +05:30
|
|
|
Usage: umount [flags] filesystem|directory
|
|
|
|
|
|
|
|
Flags:
|
|
|
|
|
2000-05-06 01:19:33 +05:30
|
|
|
-a: Unmount all file systems
|
|
|
|
-r: Try to remount devices as read-only if mount is busy
|
|
|
|
-f: Force filesystem umount (i.e. unreachable NFS server)
|
|
|
|
-l: Do not free loop device (if a loop device has been used)
|
2000-04-17 21:46:10 +05:30
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ umount /dev/hdc1
|
2000-04-15 22:04:54 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
=item uname
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-04-17 21:46:10 +05:30
|
|
|
Usage: uname [OPTION]...
|
|
|
|
|
2000-04-17 22:14:46 +05:30
|
|
|
Print certain system information. With no OPTION, same as B<-s>.
|
2000-04-17 21:46:10 +05:30
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-a print all information
|
|
|
|
-m the machine (hardware) type
|
|
|
|
-n print the machine's network node hostname
|
|
|
|
-r print the operating system release
|
|
|
|
-s print the operating system name
|
|
|
|
-p print the host processor type
|
|
|
|
-v print the operating system version
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ uname -a
|
|
|
|
Linux debian 2.2.15pre13 #5 Tue Mar 14 16:03:50 MST 2000 i686 unknown
|
2000-04-13 08:46:01 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=item uniq
|
|
|
|
|
2000-04-17 21:46:10 +05:30
|
|
|
Usage: uniq [OPTION]... [INPUT [OUTPUT]]
|
|
|
|
|
|
|
|
Discard all but one of successive identical lines from INPUT
|
|
|
|
(or standard input), writing to OUTPUT (or standard output).
|
2000-12-09 22:07:53 +05:30
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-c prefix lines by the number of occurrences
|
|
|
|
-d only print duplicate lines
|
|
|
|
-u only print unique lines
|
2000-04-17 21:46:10 +05:30
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ echo -e "a\na\nb\nc\nc\na" | sort | uniq
|
|
|
|
a
|
|
|
|
b
|
|
|
|
c
|
2000-04-15 22:04:54 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-09-21 00:52:26 +05:30
|
|
|
=item unix2dos
|
|
|
|
|
|
|
|
Usage: unix2dos < unixfile > dosfile
|
|
|
|
|
|
|
|
Converts a text file from unix format to dos format.
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
=item unrpm
|
|
|
|
|
2000-09-21 07:36:35 +05:30
|
|
|
Usage: unrpm < package.rpm | gzip B<-d> | cpio -idmuv
|
2000-09-21 00:52:26 +05:30
|
|
|
|
|
|
|
Extracts an rpm archive.
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
=item update
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-17 21:46:10 +05:30
|
|
|
Usage: update [options]
|
|
|
|
|
|
|
|
Periodically flushes filesystem buffers.
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-S force use of sync(2) instead of flushing
|
|
|
|
-s SECS call sync this often (default 30)
|
|
|
|
-f SECS flush some buffers this often (default 5)
|
2000-04-15 22:04:54 +05:30
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
=item uptime
|
|
|
|
|
2000-04-17 21:46:10 +05:30
|
|
|
Usage: uptime
|
|
|
|
|
|
|
|
Tells how long the system has been running since boot.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ uptime
|
|
|
|
1:55pm up 2:30, load average: 0.09, 0.04, 0.00
|
2000-04-15 22:04:54 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
=item usleep
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-04-17 21:46:10 +05:30
|
|
|
Usage: usleep N
|
|
|
|
|
|
|
|
Pauses for N microseconds.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ usleep 1000000
|
|
|
|
[pauses for 1 second]
|
2000-04-15 22:04:54 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-07-05 01:37:13 +05:30
|
|
|
=item uuencode
|
|
|
|
|
|
|
|
Usage: uuencode [OPTION] [INFILE] REMOTEFILE
|
|
|
|
|
|
|
|
Uuencode a file.
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-m use base64 encoding as of RFC1521
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ uuencode busybox busybox
|
|
|
|
begin 755 busybox
|
|
|
|
M?T5,1@$!`0````````````(``P`!````L+@$"#0```!0N@,``````#0`(``&
|
|
|
|
.....
|
|
|
|
$ uudecode busybox busybox > busybox.uu
|
|
|
|
$
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
|
|
|
=item uudecode
|
|
|
|
|
|
|
|
Usage: uudecode [OPTION] [FILE]
|
|
|
|
|
|
|
|
Uudecode a uuencoded file
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-o FILE direct output to FILE
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ uudecode -o busybox busybox.uu
|
|
|
|
$ ls -l busybox
|
|
|
|
-rwxr-xr-x 1 ams ams 245264 Jun 7 21:35 busybox
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2001-01-26 05:10:32 +05:30
|
|
|
=item watchdog
|
|
|
|
|
|
|
|
Usage: watchdog device
|
|
|
|
|
|
|
|
Periodically writes to watchdog device B<device>.
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
=item wc
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-17 21:46:10 +05:30
|
|
|
Usage: wc [OPTION]... [FILE]...
|
|
|
|
|
|
|
|
Print line, word, and byte counts for each FILE, and a total line if
|
|
|
|
more than one FILE is specified. With no FILE, read standard input.
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-c print the byte counts
|
|
|
|
-l print the newline counts
|
|
|
|
-L print the length of the longest line
|
|
|
|
-w print the word counts
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ wc /etc/passwd
|
|
|
|
31 46 1365 /etc/passwd
|
2000-04-15 22:04:54 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-06-22 03:13:24 +05:30
|
|
|
=item which
|
|
|
|
|
|
|
|
Usage: which [COMMAND ...]
|
|
|
|
|
|
|
|
Locates a COMMAND.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ which login
|
|
|
|
/bin/login
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
=item whoami
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-17 21:46:10 +05:30
|
|
|
Usage: whoami
|
|
|
|
|
|
|
|
Prints the user name associated with the current effective user id.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ whoami
|
|
|
|
andersen
|
2000-04-15 22:04:54 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-09-23 01:52:28 +05:30
|
|
|
=item xargs
|
|
|
|
|
|
|
|
Usage: xargs [OPTIONS] [COMMAND] [ARGS...]
|
|
|
|
|
|
|
|
Executes COMMAND on every item given by standard input.
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
-t Print the command just before it is run
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$ ls | xargs gzip
|
|
|
|
$ find . -name '*.c' -print | xargs rm
|
|
|
|
|
|
|
|
-------------------------------
|
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
=item yes
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-17 21:46:10 +05:30
|
|
|
Usage: yes [OPTION]... [STRING]...
|
|
|
|
|
|
|
|
Repeatedly outputs a line with all specified STRING(s), or `y'.
|
2000-04-15 22:04:54 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
=item zcat
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-04-17 22:14:46 +05:30
|
|
|
This is essentially an alias for invoking "gunzip B<-c>", where
|
2000-06-17 01:26:44 +05:30
|
|
|
it decompresses the file in question and send the output to stdout.
|
2000-04-15 22:04:54 +05:30
|
|
|
|
2000-04-14 00:19:43 +05:30
|
|
|
-------------------------------
|
2000-01-19 20:34:41 +05:30
|
|
|
|
2000-01-19 04:03:11 +05:30
|
|
|
=back
|
2000-01-18 21:15:59 +05:30
|
|
|
|
2000-05-02 12:10:02 +05:30
|
|
|
=head1 LIBC NSS
|
|
|
|
|
|
|
|
GNU Libc uses the Name Service Switch (NSS) to configure the behavior of the C
|
|
|
|
library for the local environment, and to configure how it reads system data,
|
|
|
|
such as passwords and group information. BusyBox has made it Policy that it
|
|
|
|
will never use NSS, and will never use and libc calls that make use of NSS.
|
|
|
|
This allows you to run an embedded system without the need for installing an
|
|
|
|
/etc/nsswitch.conf file and without and /lib/libnss_* libraries installed.
|
|
|
|
|
|
|
|
If you are using a system that is using a remote LDAP server for authentication
|
|
|
|
via GNU libc NSS, and you want to use BusyBox, then you will need to adjust the
|
|
|
|
BusyBox source. Chances are though, that if you have enough space to install
|
|
|
|
of that stuff on your system, then you probably want the full GNU utilities.
|
|
|
|
|
2000-01-18 21:15:59 +05:30
|
|
|
=head1 SEE ALSO
|
|
|
|
|
|
|
|
textutils(1), shellutils(1), etc...
|
|
|
|
|
|
|
|
=head1 MAINTAINER
|
|
|
|
|
2000-04-19 10:45:12 +05:30
|
|
|
Erik Andersen <andersee@debian.org> <andersen@lineo.com>
|
2000-01-18 21:15:59 +05:30
|
|
|
|
|
|
|
=head1 AUTHORS
|
|
|
|
|
2000-01-19 18:09:16 +05:30
|
|
|
The following people have contributed code to BusyBox whether
|
|
|
|
they know it or not.
|
2000-01-18 21:15:59 +05:30
|
|
|
|
|
|
|
|
2000-09-24 08:11:44 +05:30
|
|
|
=for html <br>
|
|
|
|
|
|
|
|
Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
|
|
|
|
|
|
|
|
Tons of new stuff, major rewrite of most of the
|
|
|
|
core apps, tons of new apps as noted in header files.
|
|
|
|
|
|
|
|
=for html <br>
|
|
|
|
|
|
|
|
Edward Betts <edward@debian.org>
|
|
|
|
|
|
|
|
expr, hostid, logname, tty, wc, whoami, yes
|
|
|
|
|
2000-01-19 18:09:16 +05:30
|
|
|
=for html <br>
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-01-19 18:09:16 +05:30
|
|
|
John Beppu <beppu@lineo.com>
|
2000-01-18 21:15:59 +05:30
|
|
|
|
2000-09-24 08:11:44 +05:30
|
|
|
du, head, nslookup, sort, tee, uniq
|
|
|
|
|
2000-01-19 18:09:16 +05:30
|
|
|
=for html <br>
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-01-19 18:09:16 +05:30
|
|
|
Brian Candler <B.Candler@pobox.com>
|
2000-01-18 21:15:59 +05:30
|
|
|
|
2000-09-24 08:11:44 +05:30
|
|
|
tiny-ls(ls)
|
|
|
|
|
2000-01-19 18:09:16 +05:30
|
|
|
=for html <br>
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-01-19 18:09:16 +05:30
|
|
|
Randolph Chung <tausq@debian.org>
|
2000-01-18 21:15:59 +05:30
|
|
|
|
2000-09-24 08:11:44 +05:30
|
|
|
fbset, ping, hostname, and mkfifo
|
|
|
|
|
2000-01-19 18:09:16 +05:30
|
|
|
=for html <br>
|
2000-01-19 04:03:11 +05:30
|
|
|
|
2000-01-19 18:09:16 +05:30
|
|
|
Dave Cinege <dcinege@psychosis.com>
|
|
|
|
|
2000-09-24 08:11:44 +05:30
|
|
|
more(v2), makedevs, dutmp, modularization, auto links file,
|
|
|
|
various fixes, Linux Router Project maintenance
|
|
|
|
|
2000-01-19 18:09:16 +05:30
|
|
|
=for html <br>
|
|
|
|
|
2000-04-14 05:14:04 +05:30
|
|
|
Karl M. Hegbloom <karlheg@debian.org>
|
|
|
|
|
2000-09-24 08:11:44 +05:30
|
|
|
cp_mv.c, the test suite, various fixes to utility.c, &c.
|
|
|
|
|
|
|
|
=for html <br>
|
|
|
|
|
|
|
|
Daniel Jacobowitz <dan@debian.org>
|
|
|
|
|
|
|
|
mktemp.c
|
|
|
|
|
|
|
|
=for html <br>
|
|
|
|
|
|
|
|
Matt Kraai <kraai@alumni.carnegiemellon.edu>
|
|
|
|
|
|
|
|
documentation, bugfixes
|
|
|
|
|
2000-04-14 05:14:04 +05:30
|
|
|
=for html <br>
|
|
|
|
|
2000-04-17 10:43:59 +05:30
|
|
|
John Lombardo <john@deltanet.com>
|
|
|
|
|
2000-09-24 08:11:44 +05:30
|
|
|
dirname, tr
|
|
|
|
|
2000-04-17 10:43:59 +05:30
|
|
|
=for html <br>
|
|
|
|
|
2000-06-02 08:51:42 +05:30
|
|
|
Glenn McGrath <bug1@netconnect.com.au>
|
|
|
|
|
2000-09-24 08:11:44 +05:30
|
|
|
ar.c
|
|
|
|
|
2000-06-02 08:51:42 +05:30
|
|
|
=for html <br>
|
|
|
|
|
2000-09-24 08:11:44 +05:30
|
|
|
Bruce Perens <bruce@pixar.com>
|
|
|
|
|
|
|
|
Original author of BusyBox. His code is still in many apps.
|
|
|
|
|
|
|
|
=for html <br>
|
|
|
|
|
|
|
|
Chip Rosenthal <chip@unicom.com>, <crosenth@covad.com>
|
|
|
|
|
|
|
|
wget - Contributed by permission of Covad Communications
|
2000-01-19 18:09:16 +05:30
|
|
|
|
|
|
|
=for html <br>
|
|
|
|
|
2000-06-20 05:41:07 +05:30
|
|
|
Pavel Roskin <proski@gnu.org>
|
2000-06-02 08:51:36 +05:30
|
|
|
|
2000-09-24 08:11:44 +05:30
|
|
|
Lots of bugs fixes and patches.
|
|
|
|
|
|
|
|
=for html <br>
|
|
|
|
|
|
|
|
Gyepi Sam <gyepi@praxis-sw.com>
|
|
|
|
|
|
|
|
Remote logging feature for syslogd
|
|
|
|
|
2000-06-02 08:51:36 +05:30
|
|
|
=for html <br>
|
|
|
|
|
2000-01-19 18:09:16 +05:30
|
|
|
Linus Torvalds <torvalds@transmeta.com>
|
|
|
|
|
2000-09-24 08:11:44 +05:30
|
|
|
mkswap, fsck.minix, mkfs.minix
|
|
|
|
|
2000-01-19 18:09:16 +05:30
|
|
|
=for html <br>
|
|
|
|
|
2000-09-15 13:34:42 +05:30
|
|
|
Mark Whitley <markw@lineo.com>
|
|
|
|
|
2000-09-24 08:11:44 +05:30
|
|
|
sed remix, bug fixes, style-guide, etc.
|
|
|
|
|
2000-09-15 13:34:42 +05:30
|
|
|
=for html <br>
|
|
|
|
|
2000-01-19 18:09:16 +05:30
|
|
|
Charles P. Wright <cpwright@villagenet.com>
|
|
|
|
|
2000-09-24 08:11:44 +05:30
|
|
|
gzip, mini-netcat(nc)
|
|
|
|
|
2000-01-19 18:09:16 +05:30
|
|
|
=for html <br>
|
|
|
|
|
|
|
|
Enrique Zanardi <ezanardi@ull.es>
|
|
|
|
|
2000-09-24 08:11:44 +05:30
|
|
|
tarcat (since removed), loadkmap, various fixes, Debian maintenance
|
2000-01-18 21:15:59 +05:30
|
|
|
|
|
|
|
=cut
|
2000-01-19 18:09:16 +05:30
|
|
|
|
2001-01-26 05:10:32 +05:30
|
|
|
# $Id: busybox.pod,v 1.89 2001/01/25 23:40:32 andersen Exp $
|