System/fs/大容量のファイルを高速に作成する
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
]
開始行:
#topicpath
/////////////////////////////////////////////////////////...
* 目次 [#s9dddee8]
#contents();
/////////////////////////////////////////////////////////...
* 大容量のファイルを高速に作成する方法 [#hba29174]
- ここでは、作成されるファイルの中身は問題にせず、兎に角...
//=======================================================...
** fallocate [#fallocate]
- ストレージのファイルの配置場所へのデータ書き込みを伴わ...
- コマンド書式例
$ fallocate -l <length-of-file> -n <filename>
-- <length-of-file>: 作成するファイルサイズ。以下の補助単...
KiB (=1024), MiB (=1024*1024), and so on for GiB, TiB, ...
EiB, ZiB, and YiB (the "iB" is optional, e.g., "K" has ...
KB (=1000), MB (=1000*1000), and so on for GB, TB, PB,...
//=======================================================...
** dd [#dd]
- まず最初に考えつく案だが、dd は作成するファイルの配置場...
終了行:
#topicpath
/////////////////////////////////////////////////////////...
* 目次 [#s9dddee8]
#contents();
/////////////////////////////////////////////////////////...
* 大容量のファイルを高速に作成する方法 [#hba29174]
- ここでは、作成されるファイルの中身は問題にせず、兎に角...
//=======================================================...
** fallocate [#fallocate]
- ストレージのファイルの配置場所へのデータ書き込みを伴わ...
- コマンド書式例
$ fallocate -l <length-of-file> -n <filename>
-- <length-of-file>: 作成するファイルサイズ。以下の補助単...
KiB (=1024), MiB (=1024*1024), and so on for GiB, TiB, ...
EiB, ZiB, and YiB (the "iB" is optional, e.g., "K" has ...
KB (=1000), MB (=1000*1000), and so on for GB, TB, PB,...
//=======================================================...
** dd [#dd]
- まず最初に考えつく案だが、dd は作成するファイルの配置場...
ページ名: