新しいボリュームを接続した後にルートボリュームを拡張する方法は?

新しいボリュームを接続した後にルートボリュームを拡張する方法は?

OpenStackプロジェクトで新しい仮想マシンを作成します。

その後、仮想マシンに空き容量のサイズを追加したいと思います。

新しいボリュームを追加し、仮想マシンに接続しました。

仮想マシンを起動した後、ハードディスクの状態を確認してみました。

fdisk -l

Disk /dev/vda: 5368 MB, 5368709120 bytes, 10485760 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x000ad846

   Device Boot      Start         End      Blocks   Id  System
/dev/vda1   *        2048    10485759     5241856   83  Linux

Disk /dev/vdb: 155.7 GB, 155692564480 bytes, 304087040 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes

lsblk-f

NAME   FSTYPE LABEL UUID                                 MOUNTPOINT
vda
└─vda1 xfs          b22f809d-38b7-43fd-8eda-22acb001877f /
vdb

df-h

Filesystem      Size  Used Avail Use% Mounted on
devtmpfs        7.7G     0  7.7G   0% /dev
tmpfs           7.8G     0  7.8G   0% /dev/shm
tmpfs           7.8G   17M  7.7G   1% /run
tmpfs           7.8G     0  7.8G   0% /sys/fs/cgroup
/dev/vda1       5.0G  2.4G  2.6G  48% /
tmpfs           1.6G     0  1.6G   0% /run/user/20226

新しい基本パーティションを作成しようとした後

fdisk /dev/vdb

Welcome to fdisk (util-linux 2.23.2).

Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.

Device does not contain a recognized partition table
Building a new DOS disklabel with disk identifier 0xa9dbcbca.

Command (m for help): p

Disk /dev/vdb: 155.7 GB, 155692564480 bytes, 304087040 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0xa9dbcbca

   Device Boot      Start         End      Blocks   Id  System

Command (m for help): n
Partition type:
   p   primary (0 primary, 0 extended, 4 free)
   e   extended
Select (default p): p
Partition number (1-4, default 1): 1
First sector (2048-304087039, default 2048):
Using default value 2048
Last sector, +sectors or +size{K,M,G} (2048-304087039, default 304087039):
Using default value 304087039
Partition 1 of type Linux and of size 145 GiB is set

Command (m for help): t
Selected partition 1
Hex code (type L to list all codes): 8e
Changed type of partition 'Linux' to 'Linux LVM'

Command (m for help): w
The partition table has been altered!

Calling ioctl() to re-read partition table.
Syncing disks.

fdisk -l

Disk /dev/vda: 5368 MB, 5368709120 bytes, 10485760 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x000ad846

   Device Boot      Start         End      Blocks   Id  System
/dev/vda1   *        2048    10485759     5241856   83  Linux

Disk /dev/vdb: 155.7 GB, 155692564480 bytes, 304087040 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0xa9dbcbca

   Device Boot      Start         End      Blocks   Id  System
/dev/vdb1            2048   304087039   152042496   8e  Linux LVM

根のボリュームを拡大する方法 /dev/vda1 5.0G 2.4G 2.6G 48% / 新しいボリューム /dev/vdb1

ベストアンサー1

あるハードドライブを別のハードドライブに拡張できないと思います。 vdaをvdbにコピーしてから、vdbを "/"ハードドライブとして使用できます。 ddまたは他のボリュームコピーツールを試してください。コピーが完了したら、パーティションを任意のサイズに拡張できます。

おすすめ記事