/dev/sdaから/dev/sda1にディスク領域を移動するには?

/dev/sdaから/dev/sda1にディスク領域を移動するには?

Centos 7と200GBのディスクを使用する仮想マシンがあります。何らかの理由で私のレイアウトは次のとおりです

df -h
Filesystem               Size  Used Avail Use% Mounted on
/dev/sda1                100GB  95GB  5GB   

fdisk -lを実行します。

Disk /dev/sda: 204.8 GB, 204803670016 bytes,400007168 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: 0x0006c283

Device Boot      Start         End      Blocks   Id  System
/dev/sda1            2048   199997439    99997696     Linux

/dev/sda1パーティションのスペースを増やしたいです。

答え1

パーティションを拡張したいようです。これを行うには:

  1. 割り当てられたパーティションのサイズを変更します。例:cfdisk /dev/sdaパーティションのサイズを変更するオプションを選択します。
  2. オペレーティングシステムは自動的に更新されますが、電話できる場合に備えてpartprobe /dev/sda
  3. ファイルシステムのサイズを変更します。例: ext ファイルシステムの場合resize2fs /dev/sda1

パーティションを縮小せずに拡張する限り、システムの実行中にこれを実行するのは安全です。しかし、すべてを必ずバックアップしてください。

答え2

パーティション拡張ソリューションが見つかりました。

1. パーティションを削除し、その場所に新しいパーティションを作成します。

root@rescue ~ # fdisk /dev/sda

Command (m for help): d
Selected partition 1

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):
Using default value 1
First sector (2048-199999487, default 2048):
Using default value 2048
Last sector, +sectors or +size{K,M,G} (2048-199999487, default 199999487):
Using default value 199999487

Partition #1 contains a ext4 signature.
Do you want to remove the signature? [Y]es/[N]o: N

Command (m for help): p

Disk /dev/sda: 102.4 GB, 102399737856 bytes
255 heads, 63 sectors/track, 12449 cylinders, total 199999488 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 identifier: 0x00051eb3

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1            2048   199999487    99998720   83  Linux

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

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

2. ファイルシステムのサイズ変更

# resize2fs /dev/sda1
resize2fs 1.42.5 (29-Jul-2012)
Resizing the filesystem on /dev/sda1 to 24999680 (4k) blocks.
The filesystem on /dev/sda1 is now 24999680 blocks long.

3. 再起動

関連情報