1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
|
The following document includes a continuous description of the current
commands, functions and utilities included in the busybox.
John Cooper
johnc@lineo.com
_______________________________________________________________________________________________________
BusyBox 0.38, Functions and the Arguments they Support
New Apps that have been added to BusyBox since this document was written:
ping, hostname, mkfifo, free, tail, du, tee, head, sort, uniq, lsmod, rmmod, fbset, and loadacm.
______________________________________________________________________________________________________
cat [file]
Display file contents to standard output.
_______________________________________________________________________________________________________
chmod [-R] Mode,[Mode] file
Change file access permissions (mode) of one or more files.
-R Follows the directory tree from the current location thru all sub-directories,
applying changes.
Mode = u User
g Group
o Other
a All
Permission = r Read
w Write
s Set user (or group) ID
t Sticky bit file cannot be removed by other
than the owner.
________________________________________________________________________________________________________
chown [option] owner[group]file
Change owner and (or) group of file to owner and (or) group.
Only the current owner or a priveleged user may change an owner.
-R Follows the directory tree from the current location thru all sub-directories, applying
changes.
________________________________________________________________________________________________________
chgrp [option] newgroup file
Change group of file or files to new group name or ID number located in /etc/group.
Only the current owner or a priveleged user may change the group name or ID
-R Follows the directory tree from the current location thru all sub-directories,
applying changes.
________________________________________________________________________________________________________
chroot NEWROOT [Command...] (System Admin Command)
Run command with root directory set to NEWROOT. Only the current owner or a priveleged
user may use this command.
________________________________________________________________________________________________________
clear
Clear screen.
________________________________________________________________________________________________________
cp [option] fileA fileB
Copy fileA to fileB or fileA to directory maintaining fileA name.
-a archive Maintain file attributes whenever possible. Same as -dpR
-d no dereference Maintain hard link relationships between fileA and fileB.
No dereference of symbolic links.
-p maintain file Maintain all file attributes and information including owner
attributes group permissions and time information.
-R recursive Copies directories recursively
_________________________________________________________________________________________________________
date [option [+format] [date]
date [option] [MMDDhhmm[[CC]YY][.SS]]
Display the current system date and time.
-R RFC-822 string Output an RFC-822 compliant date string.
-s set DATE Set date where date is entered in MMDDhhmm etc. format.
-u universal Print or set Coordinated Universal Time.
_______________________________________________________________________________________________________
dd [if=name] [of=name] [bs=n] [count=n]
Copy a file, converting and formatting according to options. Most useful when copying from
physical input and output devices.
if=fileA (instead of standard input)
of=fileB (instead of standard output)
bs=n Read and write N Bytes at a time.
count=n Copy only n input blocks.
Bytes may be suffixed by k for x1024, b for x512 and w for x2.
________________________________________________________________________________________________________
df
Display filesystem, number of blocks used, number of blocks available, number of blocks in use,
and mount point.
________________________________________________________________________________________________________
dmesg [-c] [-n level] [-s bufsize] (System Admin Command)
Display system control messages. Stored in the kernel ring buffer are all messages since the
last system boot, or the most recent if the buffer had been full.
-c Clear buffer after printing messages.
-n level Set the level of system message to be displayed on the console.
-s bufsize Display the size of the kernel ring buffer.
________________________________________________________________________________________________________
find [PATH] [EXPRESSION]
Search for files in the current directory, and all subdirectories for patterns that match
expression. Expressions may consist of the following.
-follow Dereference symbolic links.
-name PATTERN Find files that match PATTERN. Metacharacters should be escaped or
quoted.
-print Print full file name, followed by a newline, to standard out.
________________________________________________________________________________________________________
chvt N
Change foreground virtual terminal to /dev/ttyN.
________________________________________________________________________________________________________
deallocvt N
Deallocate unused virtual terminal /dev/ttyN.
________________________________________________________________________________________________________
fsck.minix [-larvsmf] /dev/name
Perform a consistency check for minix filesystems.
-l List filenames.
-r Perform interactive repairs.
-a Perform automatic repairs
-v Verbose
-s Output superblock information
-m Activates minix-like "mode not cleared" warnings.
-f Force file system check.
________________________________________________________________________________________________________
mkfs.minix [-c | -l filename ] [-nXX] [-iXX] /dev/name [blocks]
Make a minix file system.
-c Check device for bad blocks.
-n [ 14|30 ] Specify max length of filenames.
-i Specify number of inodes for filesystem.
-l filename
Read the bad blocks list from filename.
-v Make a minix version 2 filesystem.
________________________________________________________________________________________________________
grep [OPTIONS] PATTERN [FILE]
Search for PATTERN in each FILE or from standard input.
-h Suppress prefixing filename on output.
-i Ignore case distinctions.
-n Print line number with output lines.
________________________________________________________________________________________________________
init
The parent of all processes. Only to be run by the kernel.
________________________________________________________________________________________________________
kill [ -s sigspec | -signum | -sigspec ] [pid | job ] or
kill -l [ exitstatus ]
Currently no information help page for this command
________________________________________________________________________________________________________
ln [option] TARGET... LINK_NAME|DIRECTORY
Create a link named LINK_NAME or DIRECTORY to TARGET.
-s Make symbolic links instead of hard links.
-f Remove existing destination files.
________________________________________________________________________________________________________
ls [ -1acdelnpuxACF ] [FILENAMES]
List contents of directories.
-1 Single entry per column of output.
-a All files including hidden files beginning with a ..
-c Files are listed by status change time.
-d List directories, not there contents.
-e List both full date and full time
-l List in long format including permissions, owner, size
modification time etc.
-n Similar to -l, except use group ID and user ID instead
of owner and group names.
-p Directories are marked with a /.
-u Display files sorted by file access time.
-x Display files across the screen in rows.
-A Display hidden and all other files except . and ...
-C (Default, display files in columns)
-F Tag files by type by appending:
/ to directories
* to executables
@ to symbolic links
| to fifo's
= to sockets
________________________________________________________________________________________________________
mkdir [OPTION] directory
Create directories if they do not already exist. You must have write permission to create
directories. Default mode can be modified by users umask.
-m Used to set permission mode. (See chmod description)
-p Make parent directories if they don't already exist. Return error code if
they already exist.
________________________________________________________________________________________________________
mknod NAME TYPE MAJOR MINOR
Make 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.
________________________________________________________________________________________________________
mkswap [-c] [ -v0|-v1 ] device [block-count]
Prepare a disk partition to be used as a swap partition.
-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 blocks to use. (Default is the entire
partition).
________________________________________________________________________________________________________
more [file]
Display file one screen page at a time.
________________________________________________________________________________________________________
mount [flags]
mount [flags] device directory [-o options, more options ]
Mount a filesystem for file access.
-a Mount all file systems in fstab.
-o option
async/sync: Writes are asynchronous/synchronous.
dev/nodev: Allow use of special device files
/disallow them.
exec/noexec: Allow use of executable files
/disallow them.
suid/nosuid: Allow set-user-id-root programs
/disallow them.
remount: Remount a currently-mounted filesystem
changing it's flags.
ro/rw: Mount for read-only/read-write.
(There are more flags specific to each filesystem.
See the written documentation for those.)
-r Mount the filesystem read only.
-t FILESYSTEM TYPE
Specify the filesystem type.
-w Mount for reading and writing default
________________________________________________________________________________________________________
mv fileA fileB or
mv fileA dirA
Move fileA to fileB. (Renames fileA to fileB)
Move fileA to dirA (Moves fileA into dirA)
________________________________________________________________________________________________________
ps
Report process status. No options are currently supported.
________________________________________________________________________________________________________
pwd
Print working directory
________________________________________________________________________________________________________
reboot
Reboot system. No options are currently supported.
________________________________________________________________________________________________________
rm [option] file
Remove or unlink the files.
-f Remove existing destinations. Never prompt.
-r or -R Remove contents of directories recursively.
________________________________________________________________________________________________________
rmdir [OPTION] ... directory
Remove directories if they are empty.
________________________________________________________________________________________________________
sed
Usage: sed [-n] -e script [file...]
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
This version of sed matches full regular expresions.
________________________________________________________________________________________________________
sleep N
Pause for N seconds.
________________________________________________________________________________________________________
tar -[cxtvOf] [tarFileName] [file]
Create, extract or list files from a tar file.
c=create
x=extract
t=list contents
v=verbose
O=extract to stdout
f=tarfile or "-" for standard input
________________________________________________________________________________________________________
swapon device
Start swapping virtual memory pages on the given device.
________________________________________________________________________________________________________
swapoff device
Stop swapping virtual memory pages on the given device.
________________________________________________________________________________________________________
sync
Write all buffered filesystem blocks to disk.
________________________________________________________________________________________________________
touch [-c] file [file...]
Update the last modified date on given file(s).
________________________________________________________________________________________________________
true
A null command that returns a successful 0 exit status code. (See false)
________________________________________________________________________________________________________
false
A null command that returns an unsuccessful or non-zero exit status.
________________________________________________________________________________________________________
uname [option]
Print certain system information. With no option, same as -s.
-a Display all information
-m Display machine hardware type.
-n Display machine network node hostname.
-r Display OS release
-s Display OS Name.
-p Display Host processor type.
-v Display OS Version.
________________________________________________________________________________________________________
umount [flags] filesystem | directory
Unmounts designated filesystem previously mounted on device.
-a Unmount all file systems.
________________________________________________________________________________________________________
update
cvs update [options] files
Incorporates recent changes from the repository into files in your working directory. No
options are currently supported.
________________________________________________________________________________________________________
zcat [options] files
Usage: zcat [OPTION]... FILE
Uncompress FILE (or standard input if FILE is '-').
(When invoked as zcat, defaults to having -c turned on)
Options:
-c Write output to standard output
-t Test compressed file integrity
________________________________________________________________________________________________________
gunzip (Same as zcat, but without the "-c" option.)
________________________________________________________________________________________________________
gzip [OPTION]... FILE
Compress FILE with maximum compression.
When FILE is -, reads standard input. Implies -c.
Options:
-c Write output to standard output instead of FILE.gz
________________________________________________________________________________________________________
loadfont
No information available with --help.
________________________________________________________________________________________________________
loadkmap
No information available with --help
________________________________________________________________________________________________________
linuxrc
No information available with --help
________________________________________________________________________________________________________
|