blob: 5b9205b60ea25927d81e4bd810a2ee2d8e8cf833 [file] [log] [blame]
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001# vi: set sw=4 ts=4:
John Beppu08e7f752000-04-13 03:22:20 +00002
John Beppu3a1b6be2000-01-18 15:45:59 +00003=head1 NAME
4
Erik Andersencf8d38a2000-04-21 01:23:36 +00005BusyBox - The Swiss Army Knife of Embedded Linux
John Beppu3a1b6be2000-01-18 15:45:59 +00006
Erik Andersencf8d38a2000-04-21 01:23:36 +00007=head1 SYNTAX
John Beppu3a1b6be2000-01-18 15:45:59 +00008
Erik Andersencf8d38a2000-04-21 01:23:36 +00009 BusyBox <function> [arguments...] # or
John Beppu46a4e762000-01-18 22:33:11 +000010
11 <function> [arguments...] # if symlinked
John Beppu3a1b6be2000-01-18 15:45:59 +000012
13=head1 DESCRIPTION
14
Erik Andersencf8d38a2000-04-21 01:23:36 +000015BusyBox 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
Erik Andersene90f4042000-04-21 21:53:58 +000019or emdedded system. The utilities in BusyBox generally have fewer options then
20their full featured GNU cousins; however, the options that are included provide
21the expected functionality and behave very much like their GNU counterparts.
Erik Andersen62dc17a2000-04-13 01:18:23 +000022
Erik Andersencf8d38a2000-04-21 01:23:36 +000023BusyBox 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
Erik Andersen62dc17a2000-04-13 01:18:23 +000037 ./ls
38
39will cause BusyBox to behave as 'ls' (if the 'ls' command has been compiled
Erik Andersencf8d38a2000-04-21 01:23:36 +000040into BusyBox).
Erik Andersen62dc17a2000-04-13 01:18:23 +000041
Erik Andersencf8d38a2000-04-21 01:23:36 +000042You can also invoke BusyBox by issuing the command as an argument on the
43command line. For example, entering
44
45 ./BusyBox ls
Erik Andersen62dc17a2000-04-13 01:18:23 +000046
47will also cause BusyBox to behave as 'ls'.
John Beppu08fe43d2000-01-19 12:39:16 +000048
Erik Anderseneef65802000-04-19 05:12:02 +000049=head1 COMMON OPTIONS
50
51Most BusyBox commands support the B<--help> option to provide a
52terse runtime description of their behavior.
53
John Beppu46a4e762000-01-18 22:33:11 +000054=head1 COMMANDS
55
Erik Andersen62dc17a2000-04-13 01:18:23 +000056Currently defined functions include:
57
Eric Andersen86ab8a32000-06-02 03:21:42 +000058ar, basename, cat, chgrp, chmod, chown, chroot, clear, chvt, cp, cut, date, dd,
59df, dirname, dmesg, du, dutmp, echo, false, fbset, fdflush, find, free,
Erik Andersen5e1189e2000-04-15 16:34:54 +000060freeramdisk, deallocvt, fsck.minix, grep, gunzip, gzip, halt, head, hostid,
Erik Andersen73c8c9c2000-05-13 05:36:13 +000061hostname, id, init, kill, killall, length, ln, loadacm, loadfont, loadkmap,
62logger, logname, ls, lsmod, makedevs, math, mkdir, mkfifo, mkfs.minix, mknod,
63mkswap, mktemp, nc, more, mount, mt, mv, nslookup, ping, poweroff, printf, ps,
64pwd, reboot, rm, rmdir, rmmod, sed, setkeycodes, sh, sfdisk, sleep, sort, sync,
Erik Andersen4f3f7572000-04-28 00:18:56 +000065syslogd, swapon, swapoff, tail, tar, test, tee, touch, tr, true, tty, umount,
66uname, uniq, update, uptime, usleep, wc, whoami, yes, zcat, [
Erik Andersen62dc17a2000-04-13 01:18:23 +000067
Erik Andersena19bc642000-05-02 06:40:02 +000068-------------------------------
69
John Beppu46a4e762000-01-18 22:33:11 +000070=over 4
71
Eric Andersen86ab8a32000-06-02 03:21:42 +000072=item ar
73
74Usage: ar [optxvV] archive [filenames]
75
76Extract or list files from an ar archive.
77
78Options:
79
80 o preserve original dates
81 p extract to stdout
82 t list
83 x extract
84 v verbosely list files processed
85
86-------------------------------
87
Erik Andersen62dc17a2000-04-13 01:18:23 +000088=item basename
89
Erik Andersenac130e12000-05-10 05:00:31 +000090Usage: basename FILE [SUFFIX]
Erik Andersen62dc17a2000-04-13 01:18:23 +000091
Erik Andersenac130e12000-05-10 05:00:31 +000092Strips directory path and suffixes from FILE.
93If specified, also removes any trailing SUFFIX.
Erik Andersen62dc17a2000-04-13 01:18:23 +000094
95Example:
96
97 $ basename /usr/local/bin/foo
98 foo
99 $ basename /usr/local/bin/
100 bin
Erik Andersenac130e12000-05-10 05:00:31 +0000101 $ basename /foo/bar.txt .txt
102 bar
Erik Andersen62dc17a2000-04-13 01:18:23 +0000103
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000104-------------------------------
105
Erik Andersena6c75222000-04-18 00:00:52 +0000106=item cat
John Beppu46a4e762000-01-18 22:33:11 +0000107
Erik Andersencf8d38a2000-04-21 01:23:36 +0000108Usage: cat [FILE ...]
Erik Andersen62dc17a2000-04-13 01:18:23 +0000109
Erik Andersencf8d38a2000-04-21 01:23:36 +0000110Concatenates FILE(s) and prints them to the standard output.
Erik Andersen62dc17a2000-04-13 01:18:23 +0000111
112Example:
113
114 $ cat /proc/uptime
115 110716.72 17.67
John Beppu4581b4c2000-01-19 15:04:41 +0000116
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000117-------------------------------
118
Erik Andersen5e1189e2000-04-15 16:34:54 +0000119=item chgrp
120
121Usage: chgrp [OPTION]... GROUP FILE...
122
123Change the group membership of each FILE to GROUP.
Erik Andersen26702fe2000-04-17 16:44:46 +0000124
Erik Andersen5e1189e2000-04-15 16:34:54 +0000125Options:
126
127 -R change files and directories recursively
Erik Andersen26702fe2000-04-17 16:44:46 +0000128
Erik Andersen5e1189e2000-04-15 16:34:54 +0000129Example:
130
131 $ ls -l /tmp/foo
132 -r--r--r-- 1 andersen andersen 0 Apr 12 18:25 /tmp/foo
133 $ chgrp root /tmp/foo
134 $ ls -l /tmp/foo
135 -r--r--r-- 1 andersen root 0 Apr 12 18:25 /tmp/foo
136
137-------------------------------
138
John Beppu46a4e762000-01-18 22:33:11 +0000139=item chmod
140
John Beppuf17792c2000-04-13 03:16:01 +0000141Usage: chmod [B<-R>] MODE[,MODE]... FILE...
John Beppu4581b4c2000-01-19 15:04:41 +0000142
Erik Andersencf8d38a2000-04-21 01:23:36 +0000143Changes file access permissions for the specified FILE(s) (or directories).
Erik Andersen62dc17a2000-04-13 01:18:23 +0000144Each MODE is defined by combining the letters for WHO has access to the file,
145an OPERATOR for selecting how the permissions should be changed, and a
Erik Andersencf8d38a2000-04-21 01:23:36 +0000146PERISSION for FILE(s) (or directories).
Erik Andersen62dc17a2000-04-13 01:18:23 +0000147
Erik Andersencf8d38a2000-04-21 01:23:36 +0000148WHO may be chosen from
Erik Andersen62dc17a2000-04-13 01:18:23 +0000149
Erik Andersencf8d38a2000-04-21 01:23:36 +0000150 u User who owns the file
151 g Users in the file's Group
Erik Andersen62dc17a2000-04-13 01:18:23 +0000152 o Other users not in the file's group
153 a All users
154
Erik Andersencf8d38a2000-04-21 01:23:36 +0000155OPERATOR may be chosen from
Erik Andersen62dc17a2000-04-13 01:18:23 +0000156
Erik Andersencf8d38a2000-04-21 01:23:36 +0000157 + Add a permission
158 - Remove a permission
159 = Assign a permission
Erik Andersen62dc17a2000-04-13 01:18:23 +0000160
Erik Andersencf8d38a2000-04-21 01:23:36 +0000161PERMISSION may be chosen from
Erik Andersen62dc17a2000-04-13 01:18:23 +0000162
Erik Andersencf8d38a2000-04-21 01:23:36 +0000163 r Read
Erik Andersen62dc17a2000-04-13 01:18:23 +0000164 w Write
Erik Andersencf8d38a2000-04-21 01:23:36 +0000165 x Execute (or access for directories)
Erik Andersen62dc17a2000-04-13 01:18:23 +0000166 s Set user (or group) ID bit
Erik Andersencf8d38a2000-04-21 01:23:36 +0000167 t Stickey bit (for directories prevents removing files by non-owners)
Erik Andersen62dc17a2000-04-13 01:18:23 +0000168
Erik Andersencf8d38a2000-04-21 01:23:36 +0000169Alternately, permissions can be set numerically where the first three
170numbers are calculated by adding the octal values, such as
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000171
Erik Andersen62dc17a2000-04-13 01:18:23 +0000172 4 Read
173 2 Write
Erik Andersencf8d38a2000-04-21 01:23:36 +0000174 1 Execute
Erik Andersen62dc17a2000-04-13 01:18:23 +0000175
Erik Andersencf8d38a2000-04-21 01:23:36 +0000176An optional fourth digit can also be used to specify
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000177
Erik Andersen62dc17a2000-04-13 01:18:23 +0000178 4 Set user ID
179 2 Set group ID
Erik Andersencf8d38a2000-04-21 01:23:36 +0000180 1 Stickey bit
Erik Andersen62dc17a2000-04-13 01:18:23 +0000181
John Beppu4581b4c2000-01-19 15:04:41 +0000182Options:
183
Erik Andersencf8d38a2000-04-21 01:23:36 +0000184 -R Change files and directories recursively.
John Beppu4581b4c2000-01-19 15:04:41 +0000185
Erik Andersen62dc17a2000-04-13 01:18:23 +0000186Example:
187
188 $ ls -l /tmp/foo
189 -rw-rw-r-- 1 root root 0 Apr 12 18:25 /tmp/foo
190 $ chmod u+x /tmp/foo
191 $ ls -l /tmp/foo
192 -rwxrw-r-- 1 root root 0 Apr 12 18:25 /tmp/foo*
193 $ chmod 444 /tmp/foo
194 $ ls -l /tmp/foo
195 -r--r--r-- 1 root root 0 Apr 12 18:25 /tmp/foo
John Beppu4581b4c2000-01-19 15:04:41 +0000196
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000197-------------------------------
198
John Beppu46a4e762000-01-18 22:33:11 +0000199=item chown
200
Erik Andersencf8d38a2000-04-21 01:23:36 +0000201Usage: chown [OPTION]... OWNER[<.|:>[GROUP] FILE...
John Beppu4581b4c2000-01-19 15:04:41 +0000202
Erik Andersen62dc17a2000-04-13 01:18:23 +0000203Changes the owner and/or group of each FILE to OWNER and/or GROUP.
John Beppu5a50def2000-04-17 17:46:46 +0000204
John Beppu4581b4c2000-01-19 15:04:41 +0000205Options:
206
Erik Andersencf8d38a2000-04-21 01:23:36 +0000207 -R Changes files and directories recursively
Erik Andersen62dc17a2000-04-13 01:18:23 +0000208
209Example:
210
211 $ ls -l /tmp/foo
212 -r--r--r-- 1 andersen andersen 0 Apr 12 18:25 /tmp/foo
213 $ chown root /tmp/foo
214 $ ls -l /tmp/foo
215 -r--r--r-- 1 root andersen 0 Apr 12 18:25 /tmp/foo
216 $ chown root.root /tmp/foo
217 ls -l /tmp/foo
218 -r--r--r-- 1 root root 0 Apr 12 18:25 /tmp/foo
John Beppu4581b4c2000-01-19 15:04:41 +0000219
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000220-------------------------------
221
John Beppu46a4e762000-01-18 22:33:11 +0000222=item chroot
223
John Beppu4581b4c2000-01-19 15:04:41 +0000224Usage: chroot NEWROOT [COMMAND...]
225
226Run COMMAND with root directory set to NEWROOT.
227
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000228Example:
Erik Andersen62dc17a2000-04-13 01:18:23 +0000229
230 $ ls -l /bin/ls
Erik Andersencf8d38a2000-04-21 01:23:36 +0000231 lrwxrwxrwx 1 root root 12 Apr 13 00:46 /bin/ls -> /BusyBox
Erik Andersen62dc17a2000-04-13 01:18:23 +0000232 $ mount /dev/hdc1 /mnt -t minix
233 $ chroot /mnt
234 $ ls -l /bin/ls
235 -rwxr-xr-x 1 root root 40816 Feb 5 07:45 /bin/ls*
John Beppu4581b4c2000-01-19 15:04:41 +0000236
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000237-------------------------------
238
John Beppu46a4e762000-01-18 22:33:11 +0000239=item clear
240
Erik Andersen62dc17a2000-04-13 01:18:23 +0000241Clears the screen.
John Beppu4581b4c2000-01-19 15:04:41 +0000242
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000243-------------------------------
244
John Beppu46a4e762000-01-18 22:33:11 +0000245=item chvt
246
John Beppu4581b4c2000-01-19 15:04:41 +0000247Usage: chvt N
248
Erik Andersencf8d38a2000-04-21 01:23:36 +0000249Changes the foreground virtual terminal to /dev/ttyN
John Beppu50ed0672000-04-13 23:44:04 +0000250
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000251-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +0000252
John Beppu46a4e762000-01-18 22:33:11 +0000253=item cp
254
John Beppu4581b4c2000-01-19 15:04:41 +0000255Usage: cp [OPTION]... SOURCE DEST
256
Erik Andersen62dc17a2000-04-13 01:18:23 +0000257 or: cp [OPTION]... SOURCE... DIRECTORY
John Beppu4581b4c2000-01-19 15:04:41 +0000258
Erik Andersencf8d38a2000-04-21 01:23:36 +0000259Copies SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.
John Beppu4581b4c2000-01-19 15:04:41 +0000260
Erik Andersene31c0662000-05-02 05:32:07 +0000261Options:
262
Erik Andersencf8d38a2000-04-21 01:23:36 +0000263 -a Same as -dpR
264 -d Preserves links
265 -p Preserves file attributes if possable
266 -R Copies directories recursively
John Beppu4581b4c2000-01-19 15:04:41 +0000267
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000268-------------------------------
269
Erik Andersen73c8c9c2000-05-13 05:36:13 +0000270=item cut
271
272Usage: cut [OPTION]... [FILE]...
273
274Prints selected fields from each input FILE to standard output.
275
276Options:
277
278 -b LIST Output only bytes from LIST
279 -c LIST Output only characters from LIST
280 -d DELIM Use DELIM instead of tab as the field delimiter
281 -f N Print only these fields
282 -n Ignored
283
284Example:
285
286 $ echo "Hello world" | cut -f 1 -d ' '
287 Hello
288 $ echo "Hello world" | cut -f 2 -d ' '
289 world
290
291
292-------------------------------
293
John Beppu46a4e762000-01-18 22:33:11 +0000294=item date
295
Erik Andersen62dc17a2000-04-13 01:18:23 +0000296Usage: date [OPTION]... [+FORMAT]
John Beppu4581b4c2000-01-19 15:04:41 +0000297
Erik Andersen62dc17a2000-04-13 01:18:23 +0000298 or: date [OPTION] [MMDDhhmm[[CC]YY][.ss]]
299
Erik Andersencf8d38a2000-04-21 01:23:36 +0000300Displays the current time in the given FORMAT, or sets the system date.
Erik Andersen62dc17a2000-04-13 01:18:23 +0000301
302Options:
Erik Andersene31c0662000-05-02 05:32:07 +0000303
Erik Andersencf8d38a2000-04-21 01:23:36 +0000304 -R Outputs RFC-822 compliant date string
305 -s Sets time described by STRING
306 -u Prints or sets Coordinated Universal Time
Erik Andersen62dc17a2000-04-13 01:18:23 +0000307
308Example:
John Beppuf17792c2000-04-13 03:16:01 +0000309
Erik Andersen62dc17a2000-04-13 01:18:23 +0000310 $ date
311 Wed Apr 12 18:52:41 MDT 2000
John Beppu4581b4c2000-01-19 15:04:41 +0000312
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000313-------------------------------
314
John Beppu46a4e762000-01-18 22:33:11 +0000315=item dd
316
Erik Andersen62dc17a2000-04-13 01:18:23 +0000317Usage: dd [if=name] [of=name] [bs=n] [count=n] [skip=n] [seek=n]
John Beppu4581b4c2000-01-19 15:04:41 +0000318
319Copy a file, converting and formatting according to options
320
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000321 if=FILE read from FILE instead of stdin
322 of=FILE write to FILE instead of stdout
323 bs=n read and write n bytes at a time
324 count=n copy only n input blocks
325 skip=n skip n input blocks
326 seek=n skip n output blocks
Erik Andersen62dc17a2000-04-13 01:18:23 +0000327
328Numbers may be suffixed by w (x2), k (x1024), b (x512), or M (x1024^2)
John Beppu4581b4c2000-01-19 15:04:41 +0000329
Erik Andersen62dc17a2000-04-13 01:18:23 +0000330Example:
331
332 $ dd if=/dev/zero of=/dev/ram1 bs=1M count=4
333 4+0 records in
334 4+0 records out
335
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000336-------------------------------
337
John Beppu46a4e762000-01-18 22:33:11 +0000338=item df
339
Erik Andersen62dc17a2000-04-13 01:18:23 +0000340Usage: df [filesystem ...]
341
342Prints the filesystem space used and space available.
343
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000344Example:
Erik Andersen62dc17a2000-04-13 01:18:23 +0000345
346 $ df
347 Filesystem 1k-blocks Used Available Use% Mounted on
348 /dev/sda3 8690864 8553540 137324 98% /
349 /dev/sda1 64216 36364 27852 57% /boot
350 $ df /dev/sda3
351 Filesystem 1k-blocks Used Available Use% Mounted on
352 /dev/sda3 8690864 8553540 137324 98% /
John Beppu4581b4c2000-01-19 15:04:41 +0000353
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000354-------------------------------
355
356=item dirname
357
358Usage: dirname NAME
359
360Strip non-directory suffix from file name
361
362Example:
363
364 $ dirname /tmp/foo
365 /tmp
366 $ dirname /tmp/foo/
367 /tmp
368
369-------------------------------
370
John Beppu46a4e762000-01-18 22:33:11 +0000371=item dmesg
372
John Beppuf17792c2000-04-13 03:16:01 +0000373Usage: dmesg [B<-c>] [B<-n> level] [B<-s> bufsize]
John Beppu4581b4c2000-01-19 15:04:41 +0000374
Erik Andersen62dc17a2000-04-13 01:18:23 +0000375Print or controls the kernel ring buffer.
John Beppu4581b4c2000-01-19 15:04:41 +0000376
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000377-------------------------------
378
John Beppu46a4e762000-01-18 22:33:11 +0000379=item du
380
Erik Andersen62dc17a2000-04-13 01:18:23 +0000381Usage: du [OPTION]... [FILE]...
John Beppu4581b4c2000-01-19 15:04:41 +0000382
Erik Andersen62dc17a2000-04-13 01:18:23 +0000383Summarize disk space used for each FILE and/or directory.
384Disk space is printed in units of 1k (i.e. 1024 bytes).
385
386Options:
John Beppuf17792c2000-04-13 03:16:01 +0000387
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000388 -l count sizes many times if hard linked
389 -s display only a total for each argument
Erik Andersen62dc17a2000-04-13 01:18:23 +0000390
391Example:
392
Erik Andersencf8d38a2000-04-21 01:23:36 +0000393 $ ./BusyBox du
Erik Andersen62dc17a2000-04-13 01:18:23 +0000394 16 ./CVS
395 12 ./kernel-patches/CVS
396 80 ./kernel-patches
397 12 ./tests/CVS
398 36 ./tests
399 12 ./scripts/CVS
400 16 ./scripts
401 12 ./docs/CVS
402 104 ./docs
403 2417 .
404
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000405-------------------------------
406
407=item dutmp
408
409Usage: dutmp [FILE]
410
411Dump utmp file format (pipe delimited) from FILE
412or stdin to stdout.
413
414Example:
415
416 $ dutmp /var/run/utmp
417 8|7||si|||0|0|0|955637625|760097|0
418 2|0|~|~~|reboot||0|0|0|955637625|782235|0
419 1|20020|~|~~|runlevel||0|0|0|955637625|800089|0
420 8|125||l4|||0|0|0|955637629|998367|0
421 6|245|tty1|1|LOGIN||0|0|0|955637630|998974|0
422 6|246|tty2|2|LOGIN||0|0|0|955637630|999498|0
423 7|336|pts/0|vt00andersen|andersen|:0.0|0|0|0|955637763|0|0
424
425-------------------------------
426
427=item echo
428
429Usage: echo [-neE] [ARG ...]
430
431Prints the specified ARGs to stdout
432
433Options:
434
435 -n suppress trailing newline
436 -e interpret backslash-escaped characters (i.e. \t=tab etc)
437 -E disable interpretation of backslash-escaped characters
438
439Example:
440
441 $ echo "Erik is cool"
442 Erik is cool
443 $ echo -e "Erik\nis\ncool"
444 Erik
445 is
446 cool
447 $ echo "Erik\nis\ncool"
448 Erik\nis\ncool
449
450-------------------------------
451
452=item false
453
Erik Andersen5e1189e2000-04-15 16:34:54 +0000454Returns an exit code of FALSE (1)
455
456Example:
457
458 $ false
459 $ echo $?
460 1
461
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000462-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +0000463
John Beppu46a4e762000-01-18 22:33:11 +0000464=item fbset
465
John Beppu4581b4c2000-01-19 15:04:41 +0000466Usage: fbset [options] [mode]
467
Erik Andersen62dc17a2000-04-13 01:18:23 +0000468Show and modify frame buffer device settings
469
John Beppu4581b4c2000-01-19 15:04:41 +0000470Options:
471
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000472 -h
473 -fb
474 -db
475 -a
476 -i
477 -g
478 -t
479 -accel
480 -hsync
481 -vsync
482 -laced
483 -double
John Beppu4581b4c2000-01-19 15:04:41 +0000484
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000485Example:
486
487 $ fbset
488 mode "1024x768-76"
489 # D: 78.653 MHz, H: 59.949 kHz, V: 75.694 Hz
490 geometry 1024 768 1024 768 16
491 timings 12714 128 32 16 4 128 4
492 accel false
493 rgba 5/11,6/5,5/0,0/0
494 endmode
495
496-------------------------------
497
498=item fdflush
499
500Usage: fdflush device
501
502Force floppy disk drive to detect disk change
503
504-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +0000505
John Beppu46a4e762000-01-18 22:33:11 +0000506=item find
507
John Beppu4581b4c2000-01-19 15:04:41 +0000508Usage: find [PATH...] [EXPRESSION]
509
510Search for files in a directory hierarchy. The default PATH is
511the current directory; default EXPRESSION is '-print'
512
John Beppu4581b4c2000-01-19 15:04:41 +0000513
Erik Andersen62dc17a2000-04-13 01:18:23 +0000514EXPRESSION may consist of:
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000515
516 -follow Dereference symbolic links.
517 -name PATTERN File name (leading directories removed) matches PATTERN.
518 -print print the full file name followed by a newline to stdout.
Erik Andersen62dc17a2000-04-13 01:18:23 +0000519
520Example:
521
522 $ find / -name /etc/passwd
523 /etc/passwd
John Beppu4581b4c2000-01-19 15:04:41 +0000524
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000525-------------------------------
526
John Beppu46a4e762000-01-18 22:33:11 +0000527=item free
528
John Beppu4581b4c2000-01-19 15:04:41 +0000529Usage: free
530
Erik Andersen7ab9c7e2000-05-12 19:41:47 +0000531Displays the amount of free and used system memory.
Erik Andersen62dc17a2000-04-13 01:18:23 +0000532
533Example:
534
535 $ free
Erik Andersen5e1189e2000-04-15 16:34:54 +0000536 total used free shared buffers
Erik Andersen62dc17a2000-04-13 01:18:23 +0000537 Mem: 257628 248724 8904 59644 93124
538 Swap: 128516 8404 120112
539 Total: 386144 257128 129016
540
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000541-------------------------------
542
543=item freeramdisk
544
545Usage: freeramdisk DEVICE
546
Erik Andersen7ab9c7e2000-05-12 19:41:47 +0000547Frees all memory used by the specified ramdisk.
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000548
549Example:
550
551 $ freeramdisk /dev/ram2
552
553-------------------------------
Erik Andersen62dc17a2000-04-13 01:18:23 +0000554
John Beppu46a4e762000-01-18 22:33:11 +0000555=item deallocvt
556
John Beppu4581b4c2000-01-19 15:04:41 +0000557Usage: deallocvt N
558
Erik Andersen62dc17a2000-04-13 01:18:23 +0000559Deallocates unused virtual terminal /dev/ttyN
John Beppu50ed0672000-04-13 23:44:04 +0000560
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000561-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +0000562
John Beppu46a4e762000-01-18 22:33:11 +0000563=item fsck.minix
564
John Beppuf17792c2000-04-13 03:16:01 +0000565Usage: fsck.minix [B<-larvsmf>] /dev/name
John Beppu4581b4c2000-01-19 15:04:41 +0000566
567Performs a consistency check for MINIX filesystems.
568
Erik Andersen62dc17a2000-04-13 01:18:23 +0000569OPTIONS:
John Beppuf17792c2000-04-13 03:16:01 +0000570
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000571 -l Lists all filenames
572 -r Perform interactive repairs
573 -a Perform automatic repairs
574 -v verbose
575 -s Outputs super-block information
576 -m Activates MINIX-like "mode not cleared" warnings
577 -f Force file system check.
578
579-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +0000580
John Beppu46a4e762000-01-18 22:33:11 +0000581=item grep
582
Erik Andersen62dc17a2000-04-13 01:18:23 +0000583Usage: grep [OPTIONS]... PATTERN [FILE]...
John Beppu4581b4c2000-01-19 15:04:41 +0000584
Erik Andersen62dc17a2000-04-13 01:18:23 +0000585Search for PATTERN in each FILE or standard input.
586
587OPTIONS:
John Beppuf17792c2000-04-13 03:16:01 +0000588
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000589 -h suppress the prefixing filename on output
590 -i ignore case distinctions
591 -n print line number with output lines
592 -q be quiet. Returns 0 if result was found, 1 otherwise
Erik Andersena19bc642000-05-02 06:40:02 +0000593 -v select non-matching lines
Erik Andersen62dc17a2000-04-13 01:18:23 +0000594
595This version of grep matches full regular expresions.
596
Erik Andersen62dc17a2000-04-13 01:18:23 +0000597Example:
598
599 $ grep root /etc/passwd
600 root:x:0:0:root:/root:/bin/bash
601 $ grep ^[rR]oo. /etc/passwd
602 root:x:0:0:root:/root:/bin/bash
John Beppu4581b4c2000-01-19 15:04:41 +0000603
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000604-------------------------------
605
606=item gunzip
607
Erik Andersen5e1189e2000-04-15 16:34:54 +0000608Usage: gunzip [OPTION]... FILE
609
610Uncompress FILE (or standard input if FILE is '-').
611
612Options:
613
614 -c Write output to standard output
615 -t Test compressed file integrity
616
617Example:
618
Erik Andersencf8d38a2000-04-21 01:23:36 +0000619 $ ls -la /tmp/BusyBox*
620 -rw-rw-r-- 1 andersen andersen 557009 Apr 11 10:55 /tmp/BusyBox-0.43.tar.gz
621 $ gunzip /tmp/BusyBox-0.43.tar.gz
622 $ ls -la /tmp/BusyBox*
623 -rw-rw-r-- 1 andersen andersen 1761280 Apr 14 17:47 /tmp/BusyBox-0.43.tar
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000624
625-------------------------------
626
627=item gzip
628
Erik Andersen5e1189e2000-04-15 16:34:54 +0000629Usage: gzip [OPTION]... FILE
630
631Compress FILE with maximum compression.
John Beppu9057b6a2000-04-16 10:22:28 +0000632When FILE is '-', reads standard input. Implies B<-c>.
Erik Andersen5e1189e2000-04-15 16:34:54 +0000633
634Options:
635
636 -c Write output to standard output instead of FILE.gz
637
638Example:
639
Erik Andersencf8d38a2000-04-21 01:23:36 +0000640 $ ls -la /tmp/BusyBox*
641 -rw-rw-r-- 1 andersen andersen 1761280 Apr 14 17:47 /tmp/BusyBox-0.43.tar
642 $ gzip /tmp/BusyBox-0.43.tar
643 $ ls -la /tmp/BusyBox*
644 -rw-rw-r-- 1 andersen andersen 554058 Apr 14 17:49 /tmp/BusyBox-0.43.tar.gz
Erik Andersen5e1189e2000-04-15 16:34:54 +0000645
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000646
647-------------------------------
648
649=item halt
650
Erik Andersen5e1189e2000-04-15 16:34:54 +0000651Usage: halt
652
653This comand halts the system.
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000654
655-------------------------------
656
John Beppu46a4e762000-01-18 22:33:11 +0000657=item head
658
Erik Andersen62dc17a2000-04-13 01:18:23 +0000659Usage: head [OPTION] [FILE]...
John Beppu4581b4c2000-01-19 15:04:41 +0000660
661Print first 10 lines of each FILE to standard output.
662With more than one FILE, precede each with a header giving the
663file name. With no FILE, or when FILE is -, read standard input.
Erik Andersen62dc17a2000-04-13 01:18:23 +0000664
665Options:
John Beppuf17792c2000-04-13 03:16:01 +0000666
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000667 -n NUM Print first NUM lines instead of first 10
Erik Andersen62dc17a2000-04-13 01:18:23 +0000668
669Example:
670
671 $ head -n 2 /etc/passwd
672 root:x:0:0:root:/root:/bin/bash
673 daemon:x:1:1:daemon:/usr/sbin:/bin/sh
John Beppu4581b4c2000-01-19 15:04:41 +0000674
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000675-------------------------------
676
677=item hostid
678
Erik Andersen5e1189e2000-04-15 16:34:54 +0000679Usage: hostid
680
681Prints out a unique 32-bit identifier for the current
682machine. The 32-bit identifier is intended to be unique
683among all UNIX systems in existence.
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000684
685-------------------------------
686
John Beppu46a4e762000-01-18 22:33:11 +0000687=item hostname
688
John Beppuf17792c2000-04-13 03:16:01 +0000689Usage: hostname [OPTION] {hostname | B<-F> file}
John Beppu46a4e762000-01-18 22:33:11 +0000690
John Beppu4581b4c2000-01-19 15:04:41 +0000691Get or set the hostname or DNS domain name. If a hostname is given
John Beppuf17792c2000-04-13 03:16:01 +0000692(or a file with the B<-F> parameter), the host name will be set.
John Beppu4581b4c2000-01-19 15:04:41 +0000693
Erik Andersen62dc17a2000-04-13 01:18:23 +0000694Options:
John Beppuf17792c2000-04-13 03:16:01 +0000695
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000696 -s Short
697 -i Addresses for the hostname
698 -d DNS domain name
699 -F FILE Use the contents of FILE to specify the hostname
Erik Andersen62dc17a2000-04-13 01:18:23 +0000700
701Example:
702
703 $ hostname
704 slag
John Beppu46a4e762000-01-18 22:33:11 +0000705
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000706-------------------------------
707
Erik Andersen73c8c9c2000-05-13 05:36:13 +0000708=item id
709
710Print information for USERNAME or the current user
711
712Options:
713
714 -g prints only the group ID
715 -u prints only the user ID
716 -r prints the real user ID instead of the effective ID (with -ug)
717
718Example:
719
720 $ id
721 uid=1000(andersen) gid=1000(andersen)
722
723-------------------------------
724
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000725=item init
726
Erik Andersen5e1189e2000-04-15 16:34:54 +0000727Usage: init
728
729Init is the parent of all processes.
730
731This version of init is designed to be run only by the kernel.
732
733BusyBox init doesn't support multiple runlevels. The runlevels field of
734the /etc/inittab file is completely ignored by BusyBox init. If you want
735runlevels, use sysvinit.
736
737BusyBox init works just fine without an inittab. If no inittab is found,
738it has the following default behavior:
739
740 ::sysinit:/etc/init.d/rcS
741 ::askfirst:/bin/sh
742
743if it detects that /dev/console is _not_ a serial console, it will also run:
744
745 tty2::askfirst:/bin/sh
746
747If you choose to use an /etc/inittab file, the inittab entry format is as follows:
748
749 <id>:<runlevels>:<action>:<process>
750
751 <id>:
752
753 WARNING: This field has a non-traditional meaning for BusyBox init!
754 The id field is used by BusyBox init to specify the controlling tty for
755 the specified process to run on. The contents of this field are
756 appended to "/dev/" and used as-is. There is no need for this field to
757 be unique, although if it isn't you may have strange results. If this
758 field is left blank, it is completely ignored. Also note that if
759 BusyBox detects that a serial console is in use, then all entries
760 containing non-empty id fields will _not_ be run. BusyBox init does
761 nothing with utmp. We don't need no stinkin' utmp.
762
763 <runlevels>:
764
765 The runlevels field is completely ignored.
766
767 <action>:
768
769 Valid actions include: sysinit, respawn, askfirst, wait,
770 once, and ctrlaltdel.
771
772 askfirst acts just like respawn, but before running the specified
773 process it displays the line "Please press Enter to activate this
774 console." and then waits for the user to press enter before starting
775 the specified process.
776
777 Unrecognised actions (like initdefault) will cause init to emit
778 an error message, and then go along with its business.
779
780 <process>:
781
782 Specifies the process to be executed and it's command line.
783
784
785Example /etc/inittab file:
786
787 # This is run first except when booting in single-user mode.
788 #
789 ::sysinit:/etc/init.d/rcS
790
791 # /bin/sh invocations on selected ttys
792 #
793 # Start an "askfirst" shell on the console (whatever that may be)
794 ::askfirst:/bin/sh
795 # Start an "askfirst" shell on /dev/tty2
796 tty2::askfirst:/bin/sh
797
798 # /sbin/getty invocations for selected ttys
799 #
800 tty4::respawn:/sbin/getty 38400 tty4
801 tty5::respawn:/sbin/getty 38400 tty5
802
803
804 # Example of how to put a getty on a serial line (for a terminal)
805 #
806 #ttyS0::respawn:/sbin/getty -L ttyS0 9600 vt100
807 #ttyS1::respawn:/sbin/getty -L ttyS1 9600 vt100
808 #
809 # Example how to put a getty on a modem line.
810 #ttyS2::respawn:/sbin/getty -x0 -s 57600 ttyS2
811
812 # Stuff to do before rebooting
813 ::ctrlaltdel:/bin/umount -a -r > /dev/null 2>&1
814 ::ctrlaltdel:/sbin/swapoff -a > /dev/null 2>&1
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000815
816-------------------------------
817
John Beppu46a4e762000-01-18 22:33:11 +0000818=item kill
819
John Beppuf17792c2000-04-13 03:16:01 +0000820Usage: kill [B<-signal>] process-id [process-id ...]
John Beppu4581b4c2000-01-19 15:04:41 +0000821
Erik Andersen62dc17a2000-04-13 01:18:23 +0000822Send a signal (default is SIGTERM) to the specified process(es).
823
824Options:
John Beppuf17792c2000-04-13 03:16:01 +0000825
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000826 -l List all signal names and numbers.
Erik Andersen62dc17a2000-04-13 01:18:23 +0000827
828Example:
829
830 $ ps | grep apache
831 252 root root S [apache]
832 263 www-data www-data S [apache]
833 264 www-data www-data S [apache]
834 265 www-data www-data S [apache]
835 266 www-data www-data S [apache]
836 267 www-data www-data S [apache]
837 $ kill 252
John Beppu4581b4c2000-01-19 15:04:41 +0000838
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000839-------------------------------
840
841=item killall
842
John Beppu9057b6a2000-04-16 10:22:28 +0000843Usage: killall [B<-signal>] process-name [process-name ...]
Erik Andersen5e1189e2000-04-15 16:34:54 +0000844
845Send a signal (default is SIGTERM) to the specified process(es).
846
847Options:
John Beppu9057b6a2000-04-16 10:22:28 +0000848
Erik Andersen5e1189e2000-04-15 16:34:54 +0000849 -l List all signal names and numbers.
850
851Example:
852
853 $ killall apache
854
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000855-------------------------------
856
857=item length
858
Erik Andersen7ab9c7e2000-05-12 19:41:47 +0000859Usage: length STRING
Erik Andersen5e1189e2000-04-15 16:34:54 +0000860
Erik Andersen7ab9c7e2000-05-12 19:41:47 +0000861Prints out the length of the specified STRING.
Erik Andersen5e1189e2000-04-15 16:34:54 +0000862
863Example:
Erik Andersena19bc642000-05-02 06:40:02 +0000864
Erik Andersen5e1189e2000-04-15 16:34:54 +0000865 $ length "Hello"
866 5
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000867
868-------------------------------
869
John Beppu46a4e762000-01-18 22:33:11 +0000870=item ln
871
John Beppu4581b4c2000-01-19 15:04:41 +0000872Usage: ln [OPTION] TARGET... LINK_NAME|DIRECTORY
Erik Andersena19bc642000-05-02 06:40:02 +0000873
John Beppu4581b4c2000-01-19 15:04:41 +0000874Create a link named LINK_NAME or DIRECTORY to the specified TARGET
875
876Options:
877
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000878 -s make symbolic links instead of hard links
879 -f remove existing destination files
John Beppu4581b4c2000-01-19 15:04:41 +0000880
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000881Example:
882
Erik Andersencf8d38a2000-04-21 01:23:36 +0000883 $ ln -s BusyBox /tmp/ls
Erik Andersena19bc642000-05-02 06:40:02 +0000884 $ ls -l /tmp/ls
Erik Andersencf8d38a2000-04-21 01:23:36 +0000885 lrwxrwxrwx 1 root root 7 Apr 12 18:39 ls -> BusyBox*
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000886
887-------------------------------
888
889=item loadacm
890
Erik Andersen3fe7f9f2000-04-19 03:59:10 +0000891Usage: loadacm
892
893Loads an acm from standard input.
894
895Example:
896
897 $ loadacm < /etc/i18n/acmname
Erik Andersen5e1189e2000-04-15 16:34:54 +0000898
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000899-------------------------------
900
901=item loadfont
902
Erik Andersena6c75222000-04-18 00:00:52 +0000903Usage: loadfont
904
905Loads a console font from standard input.
906
Erik Andersen3fe7f9f2000-04-19 03:59:10 +0000907Example:
908
909 $ loadfont < /etc/i18n/fontname
Erik Andersen5e1189e2000-04-15 16:34:54 +0000910
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000911-------------------------------
912
913=item loadkmap
914
Erik Andersen3fe7f9f2000-04-19 03:59:10 +0000915Usage: loadkmap
916
917Loads a binary keyboard translation table from standard input.
918
919Example:
920
921 $ loadkmap < /etc/i18n/lang-keymap
Erik Andersen5e1189e2000-04-15 16:34:54 +0000922
923-------------------------------
924
925=item logger
926
927Usage: logger [OPTION]... [MESSAGE]
928
929Write MESSAGE to the system log. If MESSAGE is '-', log stdin.
930
931Options:
932
933 -s Log to stderr as well as the system log.
934 -t Log using the specified tag (defaults to user name).
935 -p Enter the message with the specified priority.
936 This may be numerical or a ``facility.level'' pair.
937
938Example:
939
940 $ logger "hello"
941
942-------------------------------
943
944=item logname
945
946Usage: logname
947
948Print the name of the current user.
949
950Example:
951
952 $ logname
953 root
954
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000955-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +0000956
John Beppu46a4e762000-01-18 22:33:11 +0000957=item ls
958
John Beppuf17792c2000-04-13 03:16:01 +0000959Usage: ls [B<-1acdelnpuxACF>] [filenames...]
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000960
961Options:
962
963 -a do not hide entries starting with .
964 -c with -l: show ctime (the time of last
965 modification of file status information)
966 -d list directory entries instead of contents
967 -e list both full date and full time
968 -l use a long listing format
969 -n list numeric UIDs and GIDs instead of names
970 -p append indicator (one of /=@|) to entries
971 -u with -l: show access time (the time of last
972 access of the file)
973 -x list entries by lines instead of by columns
974 -A do not list implied . and ..
975 -C list entries by columns
976 -F append indicator (one of */=@|) to entries
John Beppu50ed0672000-04-13 23:44:04 +0000977
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000978-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +0000979
John Beppu46a4e762000-01-18 22:33:11 +0000980=item lsmod
981
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000982Usage: lsmod
John Beppu4581b4c2000-01-19 15:04:41 +0000983
Erik Andersen5e1189e2000-04-15 16:34:54 +0000984Shows a list of all currently loaded kernel modules.
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000985
986-------------------------------
987
988=item makedevs
989
Erik Andersen5e1189e2000-04-15 16:34:54 +0000990Usage: makedevs NAME TYPE MAJOR MINOR FIRST LAST [s]
991
992Creates a range of block or character special files
993
994TYPEs include:
995
996 b: Make a block (buffered) device.
997 c or u: Make a character (un-buffered) device.
998 p: Make a named pipe. MAJOR and MINOR are ignored for named pipes.
999
1000FIRST specifies the number appended to NAME to create the first device.
1001LAST specifies the number of the last item that should be created.
1002If 's' is the last argument, the base device is created as well.
1003
1004Example:
1005
1006 $ makedevs /dev/ttyS c 4 66 2 63
1007 [creates ttyS2-ttyS63]
1008 $ makedevs /dev/hda b 3 0 0 8 s
1009 [creates hda,hda1-hda8]
1010
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001011-------------------------------
1012
1013=item math
1014
Erik Andersen5e1189e2000-04-15 16:34:54 +00001015Usage: math expression ...
1016
1017This is a Tiny RPN calculator that understands the
1018following operations: +, -, /, *, and, or, not, eor.
1019
1020Example:
1021
1022 $ math 2 2 add
1023 4
1024 $ math 8 8 \* 2 2 + /
1025 16
1026 $ math 0 1 and
1027 0
1028 $ math 0 1 or
1029 1
1030
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001031-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +00001032
John Beppu46a4e762000-01-18 22:33:11 +00001033=item mkdir
1034
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001035Usage: mkdir [OPTION] DIRECTORY...
1036
John Beppu4581b4c2000-01-19 15:04:41 +00001037Create the DIRECTORY(ies), if they do not already exist
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001038
John Beppu4581b4c2000-01-19 15:04:41 +00001039Options:
1040
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001041 -m set permission mode (as in chmod), not rwxrwxrwx - umask
1042 -p no error if dir exists, make parent directories as needed
1043
1044Example:
1045
1046 $ mkdir /tmp/foo
1047 $ mkdir /tmp/foo
1048 /tmp/foo: File exists
1049 $ mkdir /tmp/foo/bar/baz
1050 /tmp/foo/bar/baz: No such file or directory
1051 $ mkdir -p /tmp/foo/bar/baz
1052
1053-------------------------------
1054
1055=item mkfifo
1056
Erik Andersen5e1189e2000-04-15 16:34:54 +00001057Usage: mkfifo [OPTIONS] name
1058
1059Creates a named pipe (identical to 'mknod name p')
1060
1061Options:
John Beppu9057b6a2000-04-16 10:22:28 +00001062
Erik Andersen5e1189e2000-04-15 16:34:54 +00001063 -m create the pipe using the specified mode (default a=rw)
1064
1065-------------------------------
1066
1067=item mkfs.minix
1068
1069Usage: mkfs.minix [B<-c> | B<-l> filename] [B<-nXX>] [B<-iXX>] /dev/name [blocks]
1070
1071Make a MINIX filesystem.
1072
1073OPTIONS:
1074
1075 -c Check the device for bad blocks
1076 -n [14|30] Specify the maximum length of filenames
1077 -i Specify the number of inodes for the filesystem
1078 -l FILENAME Read the bad blocks list from FILENAME
1079 -v Make a Minix version 2 filesystem
1080
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001081-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +00001082
John Beppu46a4e762000-01-18 22:33:11 +00001083=item mknod
1084
Erik Andersen5e1189e2000-04-15 16:34:54 +00001085Usage: mknod [OPTIONS] NAME TYPE MAJOR MINOR
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001086
Erik Andersen5e1189e2000-04-15 16:34:54 +00001087Create a special file (block, character, or pipe).
1088
1089Options:
John Beppu9057b6a2000-04-16 10:22:28 +00001090
Erik Andersen5e1189e2000-04-15 16:34:54 +00001091 -m create the special file using the specified mode (default a=rw)
John Beppu4581b4c2000-01-19 15:04:41 +00001092
1093TYPEs include:
Erik Andersen5e1189e2000-04-15 16:34:54 +00001094 b: Make a block (buffered) device.
1095 c or u: Make a character (un-buffered) device.
1096 p: Make a named pipe. MAJOR and MINOR are ignored for named pipes.
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001097
1098Example:
1099
1100 $ mknod /dev/fd0 b 2 0
Erik Andersen5e1189e2000-04-15 16:34:54 +00001101 $ mknod -m 644 /tmp/pipe p
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001102
1103-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +00001104
John Beppu46a4e762000-01-18 22:33:11 +00001105=item mkswap
1106
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001107Usage: mkswap [B<-c>] [B<-v0>|B<-v1>] device [block-count]
1108
John Beppu4581b4c2000-01-19 15:04:41 +00001109Prepare a disk partition to be used as a swap partition.
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001110
John Beppu4581b4c2000-01-19 15:04:41 +00001111Options:
1112
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001113 -c Check for read-ability.
1114 -v0 Make version 0 swap [max 128 Megs].
1115 -v1 Make version 1 swap [big!] (default for kernels > 2.1.117).
1116 block-count Number of block to use (default is entire partition).
John Beppu50ed0672000-04-13 23:44:04 +00001117
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001118-------------------------------
1119
Erik Andersen227a59b2000-04-25 23:24:55 +00001120=item mktemp
1121
Erik Andersene31c0662000-05-02 05:32:07 +00001122Usage: mktemp [B<-q>] TEMPLATE
Erik Andersen227a59b2000-04-25 23:24:55 +00001123
1124Creates a temporary file with its name based on TEMPLATE.
1125TEMPLATE is any name with six `Xs' (i.e. /tmp/temp.XXXXXX).
1126
1127Example:
Erik Andersena19bc642000-05-02 06:40:02 +00001128
Erik Andersen227a59b2000-04-25 23:24:55 +00001129 $ mktemp /tmp/temp.XXXXXX
1130 /tmp/temp.mWiLjM
1131 $ ls -la /tmp/temp.mWiLjM
1132 -rw------- 1 andersen andersen 0 Apr 25 17:10 /tmp/temp.mWiLjM
1133
1134-------------------------------
1135
Erik Andersen73c8c9c2000-05-13 05:36:13 +00001136=item nc
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001137
Erik Andersen73c8c9c2000-05-13 05:36:13 +00001138Usage: nc [IP] [port]
Erik Andersen5e1189e2000-04-15 16:34:54 +00001139
Erik Andersen73c8c9c2000-05-13 05:36:13 +00001140Netcat opens a pipe to IP:port
Erik Andersen5e1189e2000-04-15 16:34:54 +00001141
1142Example:
1143
Erik Andersen73c8c9c2000-05-13 05:36:13 +00001144 $ nc foobar.somedomain.com 25
Erik Andersen5e1189e2000-04-15 16:34:54 +00001145 220 foobar ESMTP Exim 3.12 #1 Sat, 15 Apr 2000 00:03:02 -0600
1146 help
1147 214-Commands supported:
1148 214- HELO EHLO MAIL RCPT DATA AUTH
1149 214 NOOP QUIT RSET HELP
1150 quit
1151 221 foobar closing connection
1152
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001153-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +00001154
John Beppu46a4e762000-01-18 22:33:11 +00001155=item more
1156
John Beppu4581b4c2000-01-19 15:04:41 +00001157Usage: more [file ...]
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001158
1159More is a filter for paging through text one screenful at a time.
1160
1161Example:
1162
1163 $ dmesg | more
John Beppu50ed0672000-04-13 23:44:04 +00001164
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001165-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +00001166
John Beppu46a4e762000-01-18 22:33:11 +00001167=item mount
1168
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001169Usage: mount [flags]
1170 mount [flags] device directory [B<-o> options,more-options]
John Beppu4581b4c2000-01-19 15:04:41 +00001171
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001172Flags:
John Beppu4581b4c2000-01-19 15:04:41 +00001173
Erik Andersen6c5f2c62000-05-05 19:49:33 +00001174 -a: Mount all file systems in fstab.
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001175 -o option: One of many filesystem options, listed below.
Erik Andersen6c5f2c62000-05-05 19:49:33 +00001176 -r: Mount the filesystem read-only.
1177 -t fs-type: Specify the filesystem type.
1178 -w: Mount for reading and writing (default).
John Beppu4581b4c2000-01-19 15:04:41 +00001179
Erik Andersen7ab9c7e2000-05-12 19:41:47 +00001180Options for use with the "B<-o>" flag:
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001181
Erik Andersen6c5f2c62000-05-05 19:49:33 +00001182 async/sync: Writes are asynchronous / synchronous.
1183 atime/noatime: Enable / disable updates to inode access times.
1184 dev/nodev: Allow use of special device files / disallow them.
1185 exec/noexec: Allow use of executable files / disallow them.
1186 loop: Mounts a file via loop device.
1187 suid/nosuid: Allow set-user-id-root programs / disallow them.
1188 remount: Re-mount a currently-mounted filesystem, changing its flags.
1189 ro/rw: Mount for read-only / read-write.
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001190 There are EVEN MORE flags that are specific to each filesystem.
1191 You'll have to see the written documentation for those.
1192
1193Example:
1194
1195 $ mount
1196 /dev/hda3 on / type minix (rw)
1197 proc on /proc type proc (rw)
1198 devpts on /dev/pts type devpts (rw)
1199 $ mount /dev/fd0 /mnt -t msdos -o ro
1200 $ mount /tmp/diskimage /opt -t ext2 -o loop
John Beppu50ed0672000-04-13 23:44:04 +00001201
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001202-------------------------------
1203
1204=item mt
1205
John Beppu9057b6a2000-04-16 10:22:28 +00001206Usage: mt [B<-f> device] opcode value
Erik Andersen5e1189e2000-04-15 16:34:54 +00001207
1208Control magnetic tape drive operation
1209
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001210-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +00001211
John Beppu46a4e762000-01-18 22:33:11 +00001212=item mv
1213
John Beppu4581b4c2000-01-19 15:04:41 +00001214Usage: mv SOURCE DEST
1215
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001216 or: mv SOURCE... DIRECTORY
John Beppu4581b4c2000-01-19 15:04:41 +00001217
1218Rename SOURCE to DEST, or move SOURCE(s) to DIRECTORY.
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001219
1220Example:
1221
1222 $ mv /tmp/foo /bin/bar
John Beppu50ed0672000-04-13 23:44:04 +00001223
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001224-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +00001225
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001226=item nslookup
John Beppu46a4e762000-01-18 22:33:11 +00001227
Erik Andersen5e1189e2000-04-15 16:34:54 +00001228Usage: nslookup [HOST]
John Beppu4581b4c2000-01-19 15:04:41 +00001229
Erik Andersen5e1189e2000-04-15 16:34:54 +00001230Queries the nameserver for the IP address of the given HOST
1231
1232Example:
1233
1234 $ nslookup localhost
1235 Server: default
1236 Address: default
1237
1238 Name: debian
1239 Address: 127.0.0.1
John Beppu46a4e762000-01-18 22:33:11 +00001240
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001241-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +00001242
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001243=item ping
1244
1245Usage: ping [OPTION]... host
1246
1247Send ICMP ECHO_REQUEST packets to network hosts.
1248
1249Options:
1250
1251 -c COUNT Send only COUNT pings.
1252 -q Quiet mode, only displays output at start
1253 and when finished.
1254Example:
1255
1256 $ ping localhost
1257 PING slag (127.0.0.1): 56 data bytes
1258 64 bytes from 127.0.0.1: icmp_seq=0 ttl=255 time=20.1 ms
1259
1260 --- debian ping statistics ---
1261 1 packets transmitted, 1 packets received, 0% packet loss
1262 round-trip min/avg/max = 20.1/20.1/20.1 ms
1263
1264-------------------------------
1265
Erik Andersen5e1189e2000-04-15 16:34:54 +00001266=item poweroff
1267
1268Shuts down the system, and requests that the kernel turn off power upon halting.
1269
1270-------------------------------
1271
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001272=item printf
1273
Erik Andersen5e1189e2000-04-15 16:34:54 +00001274Usage: printf format [argument...]
1275
1276Formats and prints the given data in a manner similar to the C printf command.
1277
1278Example:
1279
1280 $ printf "Val=%d\n" 5
1281 Val=5
1282
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001283-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +00001284
John Beppu46a4e762000-01-18 22:33:11 +00001285=item ps
1286
Erik Andersen5e1189e2000-04-15 16:34:54 +00001287Usage: ps
1288
1289Report process status
1290
1291This version of ps accepts no options.
1292
1293Example:
1294
1295 $ ps
1296 PID Uid Gid State Command
1297 1 root root S init
1298 2 root root S [kflushd]
1299 3 root root S [kupdate]
1300 4 root root S [kpiod]
1301 5 root root S [kswapd]
1302 742 andersen andersen S [bash]
1303 743 andersen andersen S -bash
1304 745 root root S [getty]
1305 2990 andersen andersen R ps
1306
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001307-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +00001308
John Beppu46a4e762000-01-18 22:33:11 +00001309=item pwd
1310
Erik Andersen5e1189e2000-04-15 16:34:54 +00001311Prints the full filename of the current working directory.
1312
1313Example:
1314
1315 $ pwd
1316 /root
1317
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001318-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +00001319
John Beppu46a4e762000-01-18 22:33:11 +00001320=item reboot
1321
Erik Andersen5e1189e2000-04-15 16:34:54 +00001322Instructs the kernel to reboot the system.
1323
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001324-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +00001325
John Beppu46a4e762000-01-18 22:33:11 +00001326=item rm
1327
Erik Andersen5e1189e2000-04-15 16:34:54 +00001328Usage: rm [OPTION]... FILE...
1329
1330Remove (unlink) the FILE(s).
1331
1332Options:
1333
1334 -f remove existing destinations, never prompt
1335 -r or -R remove the contents of directories recursively
1336
1337Example:
1338
1339 $ rm -rf /tmp/foo
1340
1341-------------------------------
1342
1343=item rmdir
1344
1345Usage: rmdir [OPTION]... DIRECTORY...
1346
1347Remove the DIRECTORY(ies), if they are empty.
1348
1349Example:
1350
1351 # rmdir /tmp/foo
1352
1353-------------------------------
1354
1355=item rmmod
1356
1357Usage: rmmod [OPTION]... [MODULE]...
1358
1359Unloads the specified kernel modules from the kernel.
1360
1361Options:
1362
1363 -a Try to remove all unused kernel modules.
1364
1365Example:
1366
1367 $ rmmod tulip
1368
1369-------------------------------
1370
1371=item sed
1372
John Beppu9057b6a2000-04-16 10:22:28 +00001373Usage: sed [B<-n>] B<-e> script [file...]
Erik Andersen5e1189e2000-04-15 16:34:54 +00001374
1375Allowed sed scripts come in the following form:
1376
1377 'ADDR [!] COMMAND'
1378
1379 where address ADDR can be:
1380 NUMBER Match specified line number
1381 $ Match last line
1382 /REGEXP/ Match specified regexp
1383 (! inverts the meaning of the match)
1384
1385 and COMMAND can be:
1386 s/regexp/replacement/[igp]
1387 which attempt to match regexp against the pattern space
1388 and if successful replaces the matched portion with replacement.
1389
1390 aTEXT
1391 which appends TEXT after the pattern space
1392
1393Options:
1394
1395 -e add the script to the commands to be executed
1396 -n suppress automatic printing of pattern space
1397
1398This version of sed matches full regular expresions.
1399
1400Example:
1401
1402 $ echo "foo" | sed -e 's/f[a-zA-Z]o/bar/g'
1403 bar
1404
1405-------------------------------
1406
Erik Andersen4f3f7572000-04-28 00:18:56 +00001407=item setkeycodes
1408
1409Usage: setkeycodes SCANCODE KEYCODE ...
1410
1411Set entries into the kernel's scancode-to-keycode map,
1412allowing unusual keyboards to generate usable keycodes.
1413
1414SCANCODE may be either xx or e0xx (hexadecimal),
1415and KEYCODE is given in decimal
1416
1417Example:
1418
1419 # setkeycodes e030 127
1420
1421-------------------------------
1422
Erik Andersen5e1189e2000-04-15 16:34:54 +00001423=item sh
1424
Erik Andersene5b6c7d2000-04-17 16:16:10 +00001425Usage: sh
1426
1427lash -- the BusyBox LAme SHell (command interpreter)
1428
Erik Andersen3fe7f9f2000-04-19 03:59:10 +00001429This command does not yet have proper documentation.
1430
1431Use lash just as you would use any other shell. It properly handles pipes,
1432redirects, job control, can be used as the shell for scripts (#!/bin/sh), and
1433has a sufficient set of builtins to do what is needed. It does not (yet)
1434support Bourne Shell syntax. If you need things like "if-then-else", "while",
1435and such, use ash or bash. If you just need a very simple and extremely small
1436shell, this will do the job.
Erik Andersen5e1189e2000-04-15 16:34:54 +00001437
1438-------------------------------
1439
1440=item sfdisk
1441
1442Usage: sfdisk [options] device ...
1443
1444device: something like /dev/hda or /dev/sda
1445
1446useful options:
1447
1448 -s [or --show-size]: list size of a partition
1449 -c [or --id]: print or change partition Id
1450 -l [or --list]: list partitions of each device
1451 -d [or --dump]: idem, but in a format suitable for later input
1452 -i [or --increment]: number cylinders etc. from 1 instead of from 0
1453 -uS, -uB, -uC, -uM: accept/report in units of sectors/blocks/cylinders/MB
1454 -T [or --list-types]:list the known partition types
1455 -D [or --DOS]: for DOS-compatibility: waste a little space
1456 -R [or --re-read]: make kernel reread partition table
1457 -N# : change only the partition with number #
1458 -n : do not actually write to disk
1459 -O file : save the sectors that will be overwritten to file
1460 -I file : restore these sectors again
1461 -v [or --version]: print version
1462 -? [or --help]: print this message
1463
1464dangerous options:
1465
1466 -g [or --show-geometry]: print the kernel's idea of the geometry
1467 -x [or --show-extended]: also list extended partitions on output
1468
1469 or expect descriptors for them on input
1470 -L [or --Linux]: do not complain about things irrelevant for Linux
1471 -q [or --quiet]: suppress warning messages
1472 You can override the detected geometry using:
1473 -C# [or --cylinders #]:set the number of cylinders to use
1474 -H# [or --heads #]: set the number of heads to use
1475 -S# [or --sectors #]: set the number of sectors to use
1476
1477You can disable all consistency checking with:
1478
1479 -f [or --force]: do what I say, even if it is stupid
1480
1481-------------------------------
1482
1483=item sleep
1484
1485Usage: sleep N
1486
1487Pause for N seconds.
1488
1489Example:
1490
1491 $ sleep 2
1492 [2 second delay results]
1493
1494-------------------------------
1495
1496=item sort
1497
John Beppu9057b6a2000-04-16 10:22:28 +00001498Usage: sort [B<-n>] [B<-r>] [FILE]...
Erik Andersen5e1189e2000-04-15 16:34:54 +00001499
1500Sorts lines of text in the specified files
1501
1502Example:
1503
1504 $ echo -e "e\nf\nb\nd\nc\na" | sort
1505 a
1506 b
1507 c
1508 d
1509 e
1510 f
1511
1512-------------------------------
1513
1514=item sync
1515
1516Usage: sync
1517
1518Write all buffered filesystem blocks to disk.
1519
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001520-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +00001521
John Beppu46a4e762000-01-18 22:33:11 +00001522=item syslogd
1523
Erik Andersen5e1189e2000-04-15 16:34:54 +00001524Usage: syslogd [OPTION]...
John Beppu4581b4c2000-01-19 15:04:41 +00001525
Erik Andersen5e1189e2000-04-15 16:34:54 +00001526Linux system and kernel (provides klogd) logging utility.
1527Note that this version of syslogd/klogd ignores /etc/syslog.conf.
John Beppu4581b4c2000-01-19 15:04:41 +00001528
Erik Andersen5e1189e2000-04-15 16:34:54 +00001529Options:
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001530
Erik Andersen5e1189e2000-04-15 16:34:54 +00001531 -m Change the mark timestamp interval. default=20min. 0=off
1532 -n Do not fork into the background (for when run by init)
1533 -K Do not start up the klogd process (by default syslogd spawns klogd).
1534 -O Specify an alternate log file. default=/var/log/messages
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001535
1536-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +00001537
John Beppu46a4e762000-01-18 22:33:11 +00001538=item swapon
1539
Erik Andersen5e1189e2000-04-15 16:34:54 +00001540Usage: swapon [OPTION] [device]
1541
1542Start swapping virtual memory pages on the given device.
1543
1544Options:
1545
1546 -a Start swapping on all swap devices
1547
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001548-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +00001549
John Beppu46a4e762000-01-18 22:33:11 +00001550=item swapoff
1551
Erik Andersen5e1189e2000-04-15 16:34:54 +00001552Usage: swapoff [OPTION] [device]
1553
1554Stop swapping virtual memory pages on the given device.
1555
1556Options:
1557
1558 -a Stop swapping on all swap devices
1559
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001560-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +00001561
John Beppu46a4e762000-01-18 22:33:11 +00001562=item tail
1563
Erik Andersen5e1189e2000-04-15 16:34:54 +00001564Usage: tail [OPTION] [FILE]...
1565
1566Print last 10 lines of each FILE to standard output.
1567With more than one FILE, precede each with a header giving the
1568file name. With no FILE, or when FILE is -, read standard input.
1569
1570Options:
1571
1572 -n NUM Print last NUM lines instead of first 10
1573 -f Output data as the file grows. This version
1574 of 'tail -f' supports only one file at a time.
1575
1576Example:
1577
1578 $ tail -n 1 /etc/resolv.conf
1579 nameserver 10.0.0.1
1580
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001581-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +00001582
John Beppu46a4e762000-01-18 22:33:11 +00001583=item tar
1584
John Beppu9057b6a2000-04-16 10:22:28 +00001585Usage: tar -[cxtvO] [B<--exclude> File] [B<-f> tarFile] [FILE] ...
Erik Andersen5e1189e2000-04-15 16:34:54 +00001586
1587Create, extract, or list files from a tar file. Note that
1588this version of tar treats hard links as separate files.
1589
1590Main operation mode:
1591
1592 c create
1593 x extract
1594 t list
1595
1596File selection:
1597
1598 f name of tarfile or "-" for stdin
1599 O extract to stdout
1600 --exclude file to exclude
1601
1602Informative output:
1603
1604 v verbosely list files processed
1605
1606Example:
1607
1608 $ zcat /tmp/tarball.tar.gz | tar -xf -
1609 $ tar -cf /tmp/tarball.tar /usr/local
1610
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001611-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +00001612
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001613=item test, [
1614
Erik Andersen5e1189e2000-04-15 16:34:54 +00001615Usage: test EXPRESSION
1616or [ EXPRESSION ]
1617
1618Checks file types and compares values returning an exit
1619code determined by the value of EXPRESSION.
1620
1621Example:
1622
1623 $ test 1 -eq 2
1624 $ echo $?
1625 1
1626 $ test 1 -eq 1
1627 $ echo $?
1628 0
1629 $ [ -d /etc ]
1630 $ echo $?
1631 0
1632 $ [ -d /junk ]
1633 $ echo $?
1634 1
1635
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001636-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +00001637
John Beppu46a4e762000-01-18 22:33:11 +00001638=item tee
1639
Erik Andersen5e1189e2000-04-15 16:34:54 +00001640Usage: tee [OPTION]... [FILE]...
1641
1642Copy standard input to each FILE, and also to standard output.
1643
1644Options:
1645
1646 -a append to the given FILEs, do not overwrite
1647
1648Example:
1649
1650 $ echo "Hello" | tee /tmp/foo
1651 $ cat /tmp/foo
1652 Hello
1653
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001654-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +00001655
John Beppu46a4e762000-01-18 22:33:11 +00001656=item touch
1657
John Beppu9057b6a2000-04-16 10:22:28 +00001658Usage: touch [B<-c>] file [file ...]
Erik Andersen5e1189e2000-04-15 16:34:54 +00001659
1660Update the last-modified date on (or create) the selected file[s].
1661
1662Example:
1663
1664 $ ls -l /tmp/foo
1665 /bin/ls: /tmp/foo: No such file or directory
1666 $ touch /tmp/foo
1667 $ ls -l /tmp/foo
1668 -rw-rw-r-- 1 andersen andersen 0 Apr 15 01:11 /tmp/foo
1669
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001670-------------------------------
1671
1672=item tr
Erik Andersena19bc642000-05-02 06:40:02 +00001673
Erik Andersen3c1217c2000-05-01 22:34:24 +00001674Usage: tr [-cds] STRING1 [STRING2]
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001675
Erik Andersen3c1217c2000-05-01 22:34:24 +00001676Translate, squeeze, and/or delete characters from
1677standard input, writing to standard output.
Erik Andersen5e1189e2000-04-15 16:34:54 +00001678
Erik Andersen3c1217c2000-05-01 22:34:24 +00001679Options:
1680
1681 -c take complement of STRING1
1682 -d delete input characters coded STRING1
1683 -s squeeze multiple output characters of STRING2 into one character
Erik Andersen5e1189e2000-04-15 16:34:54 +00001684
1685Example:
1686
1687 $ echo "gdkkn vnqkc" | tr [a-y] [b-z]
1688 hello world
1689
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001690-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +00001691
John Beppu46a4e762000-01-18 22:33:11 +00001692=item true
1693
Erik Andersen5e1189e2000-04-15 16:34:54 +00001694Returns an exit code of TRUE (0)
1695
1696Example:
1697
1698 $ true
1699 $ echo $?
1700 0
1701
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001702-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +00001703
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001704=item tty
John Beppu4581b4c2000-01-19 15:04:41 +00001705
Erik Andersene5b6c7d2000-04-17 16:16:10 +00001706Usage: tty
1707
1708Print the file name of the terminal connected to standard input.
1709
1710Options:
1711
1712 -s print nothing, only return an exit status
1713
1714Example:
1715
1716 $ tty
1717 /dev/tty2
Erik Andersen5e1189e2000-04-15 16:34:54 +00001718
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001719-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +00001720
John Beppu46a4e762000-01-18 22:33:11 +00001721=item umount
1722
Erik Andersene5b6c7d2000-04-17 16:16:10 +00001723Usage: umount [flags] filesystem|directory
1724
1725Flags:
1726
Erik Andersen6c5f2c62000-05-05 19:49:33 +00001727 -a: Unmount all file systems
1728 -r: Try to remount devices as read-only if mount is busy
1729 -f: Force filesystem umount (i.e. unreachable NFS server)
1730 -l: Do not free loop device (if a loop device has been used)
Erik Andersene5b6c7d2000-04-17 16:16:10 +00001731
1732Example:
1733
1734 $ umount /dev/hdc1
Erik Andersen5e1189e2000-04-15 16:34:54 +00001735
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001736-------------------------------
John Beppuf17792c2000-04-13 03:16:01 +00001737
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001738=item uname
John Beppuf17792c2000-04-13 03:16:01 +00001739
Erik Andersene5b6c7d2000-04-17 16:16:10 +00001740Usage: uname [OPTION]...
1741
Erik Andersen26702fe2000-04-17 16:44:46 +00001742Print certain system information. With no OPTION, same as B<-s>.
Erik Andersene5b6c7d2000-04-17 16:16:10 +00001743
1744Options:
1745
1746 -a print all information
1747 -m the machine (hardware) type
1748 -n print the machine's network node hostname
1749 -r print the operating system release
1750 -s print the operating system name
1751 -p print the host processor type
1752 -v print the operating system version
1753
1754Example:
1755
1756 $ uname -a
1757 Linux debian 2.2.15pre13 #5 Tue Mar 14 16:03:50 MST 2000 i686 unknown
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001758
1759-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +00001760
John Beppu46a4e762000-01-18 22:33:11 +00001761=item uniq
1762
Erik Andersene5b6c7d2000-04-17 16:16:10 +00001763Usage: uniq [OPTION]... [INPUT [OUTPUT]]
1764
1765Discard all but one of successive identical lines from INPUT
1766(or standard input), writing to OUTPUT (or standard output).
1767
1768Example:
1769
1770 $ echo -e "a\na\nb\nc\nc\na" | sort | uniq
1771 a
1772 b
1773 c
Erik Andersen5e1189e2000-04-15 16:34:54 +00001774
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001775-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +00001776
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001777=item update
John Beppu4581b4c2000-01-19 15:04:41 +00001778
Erik Andersene5b6c7d2000-04-17 16:16:10 +00001779Usage: update [options]
1780
1781Periodically flushes filesystem buffers.
1782
1783Options:
1784
1785 -S force use of sync(2) instead of flushing
1786 -s SECS call sync this often (default 30)
1787 -f SECS flush some buffers this often (default 5)
Erik Andersen5e1189e2000-04-15 16:34:54 +00001788
1789-------------------------------
1790
1791=item uptime
1792
Erik Andersene5b6c7d2000-04-17 16:16:10 +00001793Usage: uptime
1794
1795Tells how long the system has been running since boot.
1796
1797Example:
1798
1799 $ uptime
1800 1:55pm up 2:30, load average: 0.09, 0.04, 0.00
Erik Andersen5e1189e2000-04-15 16:34:54 +00001801
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001802-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +00001803
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001804=item usleep
1805
Erik Andersene5b6c7d2000-04-17 16:16:10 +00001806Usage: usleep N
1807
1808Pauses for N microseconds.
1809
1810Example:
1811
1812 $ usleep 1000000
1813 [pauses for 1 second]
Erik Andersen5e1189e2000-04-15 16:34:54 +00001814
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001815-------------------------------
1816
1817=item wc
1818
Erik Andersene5b6c7d2000-04-17 16:16:10 +00001819Usage: wc [OPTION]... [FILE]...
1820
1821Print line, word, and byte counts for each FILE, and a total line if
1822more than one FILE is specified. With no FILE, read standard input.
1823
1824Options:
1825
1826 -c print the byte counts
1827 -l print the newline counts
1828 -L print the length of the longest line
1829 -w print the word counts
1830
1831Example:
1832
1833 $ wc /etc/passwd
1834 31 46 1365 /etc/passwd
Erik Andersen5e1189e2000-04-15 16:34:54 +00001835
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001836-------------------------------
1837
1838=item whoami
1839
Erik Andersene5b6c7d2000-04-17 16:16:10 +00001840Usage: whoami
1841
1842Prints the user name associated with the current effective user id.
1843
1844Example:
1845
1846 $ whoami
1847 andersen
Erik Andersen5e1189e2000-04-15 16:34:54 +00001848
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001849-------------------------------
1850
1851=item yes
1852
Erik Andersene5b6c7d2000-04-17 16:16:10 +00001853Usage: yes [OPTION]... [STRING]...
1854
1855Repeatedly outputs a line with all specified STRING(s), or `y'.
Erik Andersen5e1189e2000-04-15 16:34:54 +00001856
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001857-------------------------------
John Beppu46a4e762000-01-18 22:33:11 +00001858
1859=item zcat
1860
Erik Andersen26702fe2000-04-17 16:44:46 +00001861This is essentially an alias for invoking "gunzip B<-c>", where
Erik Andersene5b6c7d2000-04-17 16:16:10 +00001862it decompresses the file inquestion and send the output to stdout.
Erik Andersen5e1189e2000-04-15 16:34:54 +00001863
Erik Andersen9cf3bfa2000-04-13 18:49:43 +00001864-------------------------------
John Beppu4581b4c2000-01-19 15:04:41 +00001865
John Beppu46a4e762000-01-18 22:33:11 +00001866=back
John Beppu3a1b6be2000-01-18 15:45:59 +00001867
Erik Andersena19bc642000-05-02 06:40:02 +00001868=head1 LIBC NSS
1869
1870GNU Libc uses the Name Service Switch (NSS) to configure the behavior of the C
1871library for the local environment, and to configure how it reads system data,
1872such as passwords and group information. BusyBox has made it Policy that it
1873will never use NSS, and will never use and libc calls that make use of NSS.
1874This allows you to run an embedded system without the need for installing an
1875/etc/nsswitch.conf file and without and /lib/libnss_* libraries installed.
1876
1877If you are using a system that is using a remote LDAP server for authentication
1878via GNU libc NSS, and you want to use BusyBox, then you will need to adjust the
1879BusyBox source. Chances are though, that if you have enough space to install
1880of that stuff on your system, then you probably want the full GNU utilities.
1881
John Beppu3a1b6be2000-01-18 15:45:59 +00001882=head1 SEE ALSO
1883
1884textutils(1), shellutils(1), etc...
1885
1886=head1 MAINTAINER
1887
Erik Andersen1101d232000-04-19 05:15:12 +00001888Erik Andersen <andersee@debian.org> <andersen@lineo.com>
John Beppu3a1b6be2000-01-18 15:45:59 +00001889
1890=head1 AUTHORS
1891
John Beppu08fe43d2000-01-19 12:39:16 +00001892The following people have contributed code to BusyBox whether
1893they know it or not.
John Beppu3a1b6be2000-01-18 15:45:59 +00001894
Erik Andersen1101d232000-04-19 05:15:12 +00001895Erik Andersen <andersee@debian.org>
John Beppu3a1b6be2000-01-18 15:45:59 +00001896
John Beppu08fe43d2000-01-19 12:39:16 +00001897=for html <br>
John Beppu46a4e762000-01-18 22:33:11 +00001898
John Beppu08fe43d2000-01-19 12:39:16 +00001899John Beppu <beppu@lineo.com>
John Beppu3a1b6be2000-01-18 15:45:59 +00001900
John Beppu08fe43d2000-01-19 12:39:16 +00001901=for html <br>
John Beppu46a4e762000-01-18 22:33:11 +00001902
John Beppu08fe43d2000-01-19 12:39:16 +00001903Brian Candler <B.Candler@pobox.com>
John Beppu3a1b6be2000-01-18 15:45:59 +00001904
John Beppu08fe43d2000-01-19 12:39:16 +00001905=for html <br>
John Beppu46a4e762000-01-18 22:33:11 +00001906
John Beppu08fe43d2000-01-19 12:39:16 +00001907Randolph Chung <tausq@debian.org>
John Beppu3a1b6be2000-01-18 15:45:59 +00001908
John Beppu08fe43d2000-01-19 12:39:16 +00001909=for html <br>
John Beppu46a4e762000-01-18 22:33:11 +00001910
John Beppu08fe43d2000-01-19 12:39:16 +00001911Dave Cinege <dcinege@psychosis.com>
1912
1913=for html <br>
1914
John Beppu50ed0672000-04-13 23:44:04 +00001915Karl M. Hegbloom <karlheg@debian.org>
1916
1917=for html <br>
1918
John Beppu4fd10fc2000-04-17 05:13:59 +00001919John Lombardo <john@deltanet.com>
1920
1921=for html <br>
1922
Eric Andersen86ab8a32000-06-02 03:21:42 +00001923Glenn McGrath <bug1@netconnect.com.au>
1924
1925=for html <br>
1926
John Beppu08fe43d2000-01-19 12:39:16 +00001927Bruce Perens <bruce@perens.com>
1928
1929=for html <br>
1930
Eric Andersen08e92892000-06-02 03:21:36 +00001931Pavel Roskin <pavel_roskin@geocities.com>
1932
1933=for html <br>
1934
John Beppu08fe43d2000-01-19 12:39:16 +00001935Linus Torvalds <torvalds@transmeta.com>
1936
1937=for html <br>
1938
1939Charles P. Wright <cpwright@villagenet.com>
1940
1941=for html <br>
1942
1943Enrique Zanardi <ezanardi@ull.es>
1944
1945=for html <br>
John Beppu3a1b6be2000-01-18 15:45:59 +00001946
1947=cut
John Beppu08fe43d2000-01-19 12:39:16 +00001948
Eric Andersen86ab8a32000-06-02 03:21:42 +00001949# $Id: busybox.pod,v 1.33 2000/06/02 03:21:37 andersen Exp $