Mercurial > hg > Members > kono > nitros9-code
annotate docs/nitros9guide/free.refentry @ 1053:b5ff125a1d60
Since this book was only typeset in fixed width, single-font, they used
capitalization and quotes (") to show what was commands, files and just
text. With today's formatting, this is not necessary, so everywhere
capitalization was used to show a command the <command> element is now
used instead, and everywhere a file is mentioned the <filename> element is used.
author | roug |
---|---|
date | Thu, 20 Mar 2003 20:19:53 +0000 |
parents | c565a4700689 |
children | 4dae346c4969 |
rev | line source |
---|---|
138 | 1 <refentry id="free"> |
2 <refnamediv> | |
3 <refname>FREE</refname> | |
4 <refpurpose>Display free space remaining on mass-storage device</refpurpose> | |
5 </refnamediv> | |
6 | |
7 <refsynopsisdiv> | |
8 <cmdsynopsis> | |
9 <command>FREE</command> | |
10 <arg choice="plain"> | |
975
c565a4700689
The entitity replstart was replaced with <replaceable>
roug
parents:
138
diff
changeset
|
11 <replaceable>devname</replaceable> |
138 | 12 </arg> |
13 </cmdsynopsis> | |
14 </refsynopsisdiv> | |
15 | |
16 <refsect1><title>Description</title> | |
17 <para> | |
18 This command displays the number of unused 256-byte sectors on a | |
19 device which are available for new files or for expanding existing | |
20 files. The device name given must be that of a mass-storage | |
1053
b5ff125a1d60
Since this book was only typeset in fixed width, single-font, they used
roug
parents:
975
diff
changeset
|
21 multifile device. <command>Free</command> also displays the disk's name, creation |
138 | 22 date, and cluster size. |
23 </para> | |
24 <para> | |
25 Data sectors are allocated in groups called "clusters". The number | |
26 of sectors per cluster depends on the storage capacity and physical | |
27 characteristics of the specific device. This means that small | |
28 amounts of free space may not be divisible into as many files. For | |
29 example, if a given disk system uses 8 sectors per cluster, and a | |
1053
b5ff125a1d60
Since this book was only typeset in fixed width, single-font, they used
roug
parents:
975
diff
changeset
|
30 <command>free</command> command shows 32 sectors free, a maximum of four new files |
138 | 31 could be created even if each has only one cluster. |
32 </para> | |
33 <para> | |
34 For more information see: 3.10 | |
35 </para> | |
36 </refsect1> | |
37 <refsect1><title>Examples</title> | |
38 <screen> | |
39 OS9: free | |
40 BACKUP DATA DISK created on: 80/06/12 | |
41 Capacity: 1,232 sectors (1-sector clusters) | |
42 1,020 free sectors, largest block 935 sectors | |
43 | |
44 OS9: free /D1 | |
45 OS-9 Documentation Disk created on: 81/04/13 | |
46 Capacity: 1,232 sectors (1-sector clusters) | |
47 568 Free sectors, largest block 440 sectors | |
48 </screen> | |
49 </refsect1> | |
50 </refentry> | |
51 |