LoginSignup
3
4

More than 5 years have passed since last update.

ディスク関係でよくやらされること

Last updated at Posted at 2016-02-22

搭載ディスク全ての容量

frdisk -l

何のパーティションがあるか調べる

cat /proc/partitions

全体の容量を確認する

df -h

現在のディレクトリの容量を見る

du -kh .

現在のディレクトリ以下の容量を個別に見る

du -sh *

カレントディレクトリに1.1Gのダミーファイルを作る

dd if=/dev/zero of=dummy_file_1GB bs=1M count=1024

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4