Linux エンジニアはシステムから次の通知を受け取ります。 cp: 通常ファイル '/app/appdata.tar' を作成できません: 空き容量がありません デバイス エンジニアは次の出力を取得します。 この出力に基づいてファイルシステムの状態を説明するのは次のどれですか?
正解:B
The error "No space left on device" usually means either disk space or inodes are exhausted. Checking the disk space (df -h), we see only 6.1MB is used, meaning there is plenty of free space (1.9GB available). Checking inodes (df -i), we see all 2048 inodes are used (IUsed = 2048, IFree = 0), meaning no new files can be created even though space is available. Inodes are metadata structures used to track files. Small files or a large number of directories can exhaust inodes before disk space runs out.