web-dev-qa-db-ja.com

partedを使用してパーティションのサイズを変更します

バックアップに使用するCentos6.9には、xfsファイルシステムを実行しているかなり大きなファイルサーバー(〜85TB)があります。

スペースが足りなくなったので、アレイに同様のドライブを10個追加し、Mega RaidManagerを使用してRAID6を再構築しました。これには2週間近くかかりました。したがって、合計容量は約150 TBであり、仮想ドライブを使用すると約135TBになります。

「parted」を使用してパーティションサイズを拡張することを計画しました。

[root@backup-serv ~]# parted /dev/sdb
GNU Parted 2.1
Using /dev/sdb
Welcome to GNU Parted! Type 'help' to view a list of commands.
(parted) print                                                            
Warning: Not all of the space available to /dev/sdb appears to be used, you can fix the GPT to use all of the
space (an extra 14649917440 blocks) or continue with the current setting?
Fix/Ignore? Ignore                                                        
Model: LSI SMC3108 (scsi)
Disk /dev/sdb: 150TB
Sector size (logical/physical): 4096B/4096B
Partition Table: gpt
Number  Start   End     Size       File system  Name  Flags
 1      1049kB  90.0TB  90.0TB                  1

:ファイルシステムは何も表示しません。

以下に示すように、60 TB freスペースがあります:

(parted) print free
Model: LSI SMC3108 (scsi)
Disk /dev/sdb: 150TB
Sector size (logical/physical): 4096B/4096B
Partition Table: gpt
Number  Start   End     Size    File system  Name  Flags
        24.6kB  1049kB  1024kB  Free Space
 1      1049kB  90.0TB  90.0TB               1
        90.0TB  150TB   60.0TB  Free Space

60 TBの空き領域があることを示しています。したがって、「パーティション1」を展開しようとすると、次のようになります(ファイルシステムエラーを検出できませんでした)。

(parted) resize
WARNING: you are attempting to use parted to operate on (resize) a file system.
parted's file system manipulation code is not as robust as what you'll find in
dedicated, file-system-specific packages like e2fsprogs.  We recommend
you use parted only to manipulate partition tables, whenever possible.
Support for performing most operations on most types of file systems
will be removed in an upcoming release.
Partition number? 1                                                       
Start?  [1049kB]? 1049kB                                                  
End?  [90.0TB]? 130.0TB                                                   
Error: Could not detect file system.

df出力:

[root@backup-serv ~]# df -hT
Filesystem           Type   Size  Used Avail Use% Mounted on
/dev/mapper/Root_VG-Root
                     ext4   107G   78G   24G  77% /
tmpfs                tmpfs   32G     0   32G   0% /dev/shm
/dev/sda1            ext4   870M  154M  672M  19% /boot
/dev/sdb1            xfs     82T   81T  1.2T  99% /export/bak

なぜpartedがファイルシステムを検出しないのですか?

1
user8802482

古いバージョンのpartedは素晴らしかったと思います。

USBでGpartedLive(最新のpartedバージョン)を使用して起動しました。それはそれを機能させるようです! "resizepart"を使用してパーティションを拡張できました。

最後に、再起動後、ファイルシステムは「xfs_growfs "」を使用して拡張されました。

df出力:

[root@backup-serv ~]# df -hT
Filesystem           Type   Size  Used Avail Use% Mounted on
/dev/mapper/Root_VG-Root
                     ext4   107G   78G   24G  77% /
tmpfs                tmpfs   32G     0   32G   0% /dev/shm
/dev/sda1            ext4   870M  154M  672M  19% /boot
/dev/sdb1            xfs    119T   81T   38T  69% /export/bak
0
user8802482