Oracle Enterprise Linux:Growpart‘无法扩大分区’

Oracle Enterprise Linux:Growpart‘无法扩大分区’

我读过一些关于此问题的博客,但没有遇到过与我类似的情况。

  1. 我已将 /dev/sda 上的驱动器扩展了 5GiB
  2. 我无需重新启动,通过运行以下命令使其可见: echo 1 > /sys/class/block/sda/device/rescan

请参阅以下剩余内容:

[root@proddboem01 ~]# fdisk -l |grep ^Disk\ /dev/sd*
Disk /dev/sda: 205 GiB, 220117073920 bytes, 429916160 sectors
Disk /dev/sdb: 100 GiB, 107374182400 bytes, 209715200 sectors

[root@proddboem01 ~]# lsblk
NAME              MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT
fd0                 2:0    1    4K  0 disk
sda                 8:0    0  205G  0 disk
├─sda1              8:1    0    1G  0 part /boot
├─sda2              8:2    0  102G  0 part
│ ├─VG--MAIN-root 252:0    0    8G  0 lvm  /
│ ├─VG--MAIN-opt  252:2    0   50G  0 lvm  /opt
│ ├─VG--MAIN-tmp  252:3    0   20G  0 lvm  /tmp
│ ├─VG--MAIN-var  252:4    0   15G  0 lvm  /var
│ └─VG--MAIN-home 252:5    0    2G  0 lvm  /home
└─sda3              8:3    0   16G  0 part [SWAP]
sdb                 8:16   0  100G  0 disk
└─VG--U01-u01     252:1    0  100G  0 lvm  /u01
sr0                11:0    1 1024M  0 rom

[root@proddboem01 ~]# growpart -v /dev/sda 2
update-partition set to true
FLOCK: try exec open fd 9, on failure exec exits this program
FLOCK: /dev/sda: obtained exclusive lock
resizing 2 on /dev/sda using resize_sfdisk_dos
429916160 sectors of 512. total size=220117073920 bytes
## sfdisk --unit=S --dump /dev/sda
label: dos
label-id: 0x86eb8ee1
device: /dev/sda
unit: sectors

/dev/sda1 : start=        2048, size=     2097152, type=83, bootable
/dev/sda2 : start=     2099200, size=   213909504, type=8e
/dev/sda3 : start=   216008704, size=    33554432, type=82
max_end=216008703 tot=429916160 pt_end=216008703 pt_start=2099200 pt_size=213909504
NOCHANGE: partition 2 is size 213909504. it cannot be grown
FLOCK: /dev/sda: releasing exclusive lock
[root@proddboem01 ~]#

我究竟做错了什么?

答案1

sda3妨碍了。swapoff,请将其删除,然后可以增加 的大小sda2

您可以sda3随后重新创建,或者在其上创建逻辑卷,或者使用交换文件。第二和第三个选项将使将来的更改更容易。

答案2

分区必须是磁盘的一块,不能由多块组成。您新创建的空间位于磁盘的末尾,而您要扩展的分区位于磁盘的中间。因此,分区 3 就挡住了路。

sda 分区:[sda1][sda2][sda3]{可用空间}

目前您只能扩大分区 3。

最好的解决方案是禁用交换并删除分区 3

sda 分区:[sda1][sda2]{可用空间}

然后你可以扩展分区 2:

sda 分区:[sda1][sda2]

之后我建议在你的卷组 vg--main 中创建新的交换设备作为逻辑卷。这样下次增加磁盘时就不必担心了。

答案3

请尝试使用oci-growfs。有关背景信息,请参阅 Oracle 知识库。

相关内容