Centos 6.4で20GBのディスク容量を持つ新しいインスタンスを作成しましたが、VPSにログインしてdf -hを実行すると、次のように容量が表示されます。
Filesystem Size Used Avail Use% Mounted on
/dev/vda1 984M 706M 229M 76% /
none 1012M 0 1012M 0% /dev/shm
fdisk -lの出力
Disk /dev/vda: 21.5 GB, 21474836480 bytes
4 heads, 32 sectors/track, 327680 cylinders
Units = cylinders of 128 * 512 = 65536 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x000a5c87
Device Boot Start End Blocks Id System
/dev/vda1 17 16401 1048640 83 Linux
vda のすべてのスペースを占有する vda1 が必要です。どうすればこれを実行できますか?
答え1
パーティションのサイズを変更し、ファイルシステムを拡張する必要があります。
- バックアップを取る
fdisk /dev/vda -> d -> 1 -> n -> p -> 1 -> 17 -> [Enter]
-> プ
パーティションが起動可能であることを確認するには、アスタリスク (*) でマークされている必要があります。マークされていない場合は、次の手順を実行します。
1 -> 1
完了したら -> w
resize2fs /dev/vda1
(オンラインプロセス、お待ちください!)
- リブート
注: スワップ パーティションが不足しています。[Enter] を押す代わりに +xxxxM を使用して、スワップ パーティション用のスペースを残すことができます。