差分

移動先: 案内検索

ファイルシステム

25 バイト追加, 2015年9月8日 (火) 08:51
/* inode */
できません。ls -iを使えばinode番号が表示されます。
 
<pre class="bash">
$ ls -i *.txt
540463 memo.txt 540446 section-4.txt 540452 section-8.txt
540416 section-2.txt 540420 section-6.txt
540443 section-3.txt 540447 section-7.txt
</pre>
inode番号はディレクトリ中にあるファイル名とinode番号を管理するデータ構造
これはLinuxのような今日的なUnix系のオペレーティングシステムでは、
複数のファイルシステムの方式を同時に持っているからです。
 
 
=== VFS ===