Created
February 15, 2014 23:00
-
-
Save seriwb/9026430 to your computer and use it in GitHub Desktop.
Linuxのディスク情報確認コマンド
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ブロック情報 | |
fdisk -l | |
#サイズ | |
df -h | |
#スワップ | |
swapon -s | |
#特定ディレクトリ配下のサイズ確認 | |
du -s /var/* | |
du -sS /var/* <-そのディレクトリのみ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment