web-dev-qa-db-ja.com

ディスク容量を/ 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
user336424

パーティションを拡張するつもりのようですね。これをする:

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

(縮小ではなく)パーティションを拡張している限り、システムが稼働している状態でこれを行っても安全です。しかし、すべてをバックアップします。

5
Philip Couling

私は自分のパーティションを拡張する解決策を見つけました:

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.再起動

1
user336424