0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Compute EngineのDiskを再起動なしで拡張する

Last updated at Posted at 2025-01-06

概要

  • Compute EngineのDiskを拡張したい
  • 再起動したくなかったので、できないかなと手順探してできたのでメモする

環境

  • Debian GNU/Linux 11 (bullseye)

手順

Google Cloudのコンソール上でDiskサイズを変更する

この手順通りに進めた

必要なライブラリをインストール

$ sudo apt install cloud-guest-utils fdisk

Diskが拡張されているか確認する

今回50GBから100GBへ拡張を試した。sdaでは拡張されているのでよし。次の手順からsda1のパーティションを拡張する

$ lsblk
NAME    MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT
sda       8:0    0  100G  0 disk 
├─sda1    8:1    0 49.9G  0 part /
├─sda14   8:14   0    3M  0 part 
└─sda15   8:15   0  124M  0 part /boot/efi

パーティションの拡張

growpartコマンドで拡張するが、PATHに手を入れないとsfdisk not foundみたいなエラーに苦しめられる(られた)

$ PATH=$PATH:/sbin sudo -E growpart /dev/sda 1

ファイルシステムの拡張

$ sudo resize2fs /dev/sda1

これでよし。df-lhで認識されていればおk

$ df -lh
Filesystem      Size  Used Avail Use% Mounted on
# ...
/dev/sda1        99G   11G   84G  12% /
# ...

おk

参考記事

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?