kernel-small-debug-shell-file-statfs.md 2.4 KB
Newer Older
D
duangavin123 已提交
1
# statfs<a name="ZH-CN_TOPIC_0000001179965853"></a>
W
wenjun 已提交
2

N
NEEN 已提交
3 4 5 6 7 8
-   [命令功能](#section153921657152613)
-   [命令格式](#section135391102717)
-   [参数说明](#section074312314279)
-   [使用指南](#section133816772712)
-   [使用实例](#section526149182717)

W
wenjun 已提交
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
## 命令功能<a name="section153921657152613"></a>

statfs命令用来打印文件系统的信息,如该文件系统类型、总大小、可用大小等信息。

## 命令格式<a name="section135391102717"></a>

statfs \[_directory_\]

## 参数说明<a name="section074312314279"></a>

**表 1**  参数说明

<a name="table1597mcpsimp"></a>
<table><thead align="left"><tr id="row1603mcpsimp"><th class="cellrowborder" valign="top" width="33.33333333333333%" id="mcps1.2.4.1.1"><p id="p1605mcpsimp"><a name="p1605mcpsimp"></a><a name="p1605mcpsimp"></a>参数</p>
</th>
<th class="cellrowborder" valign="top" width="33.33333333333333%" id="mcps1.2.4.1.2"><p id="p1607mcpsimp"><a name="p1607mcpsimp"></a><a name="p1607mcpsimp"></a>参数说明</p>
</th>
<th class="cellrowborder" valign="top" width="33.33333333333333%" id="mcps1.2.4.1.3"><p id="p1609mcpsimp"><a name="p1609mcpsimp"></a><a name="p1609mcpsimp"></a>取值范围</p>
</th>
</tr>
</thead>
<tbody><tr id="row1610mcpsimp"><td class="cellrowborder" valign="top" width="33.33333333333333%" headers="mcps1.2.4.1.1 "><p id="p1612mcpsimp"><a name="p1612mcpsimp"></a><a name="p1612mcpsimp"></a>directory</p>
</td>
<td class="cellrowborder" valign="top" width="33.33333333333333%" headers="mcps1.2.4.1.2 "><p id="p1615mcpsimp"><a name="p1615mcpsimp"></a><a name="p1615mcpsimp"></a>文件系统的路径。</p>
</td>
<td class="cellrowborder" valign="top" width="33.33333333333333%" headers="mcps1.2.4.1.3 "><p id="p1617mcpsimp"><a name="p1617mcpsimp"></a><a name="p1617mcpsimp"></a>必须是存在的文件系统,并且其支持statfs命令,当前支持的文件系统有:JFFS2,FAT,NFS。</p>
</td>
</tr>
</tbody>
</table>

## 使用指南<a name="section133816772712"></a>

打印信息因文件系统而异。

## 使用实例<a name="section526149182717"></a>

以nfs文件系统为例:

48
输入statfs /nfs
W
wenjun 已提交
49

50
**示例**  但因nfs文件系统信息
Yansira's avatar
Yansira 已提交
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65

```shell
OHOS # statfs ./nfs
statfs got:
 f_type     = 26985
 cluster_size   = 512
 total_clusters = 1579575176
 free_clusters  = 499254808
 avail_clusters = 499254808
 f_namelen    = 255

./nfs
 total size: 808742490112 Bytes
 free  size: 255618461696 Bytes
```
W
wenjun 已提交
66