LoginSignup
9
7

More than 5 years have passed since last update.

AWS HVMでディスク拡張するときの注意点

Last updated at Posted at 2015-02-23

HVMでEBSを利用する際のディスク拡張ですが、growpartが日本語localeを解釈しない問題を回避する必要があります。
最近のAMIだとすでにcloud-initで対応しているものが多くなっていますが、手動作業の際にはご注意下さい。

yum install cloud-utils-growpart -y
LC_ALL="en_US.UTF-8" growpart /dev/sda 1
reboot
resize2fs /dev/xvda1
9
7
3

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
9
7