Skip to content

Instantly share code, notes, and snippets.

@falco694
Last active October 9, 2019 07:25
Show Gist options
  • Save falco694/972b7d37b8dea6e642061fa03bddbd5c to your computer and use it in GitHub Desktop.
Save falco694/972b7d37b8dea6e642061fa03bddbd5c to your computer and use it in GitHub Desktop.

AWS EC2 Debianにおいて、EBS拡張を実施

AWSコンソールからボリュームの拡張を実施

ssh接続し、以下を実行

# パーティション拡張するための[growpart]使用のため、[cloud-guest-utils]をインストール
sudo apt install cloud-guest-utils
# パーティションの一覧を表示
lsblk
# パーティションの拡張
sudo growpart /dev/xvda 1
# ファイルシステムの拡張
sudo resize2fs /dev/xvda1
# ファイルシステムの確認
df -h

参考

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment