无法在 Oracle Linux 上扩展/调整分区大小

无法在 Oracle Linux 上扩展/调整分区大小

我一直在努力将sda3下面显示的分区扩展到最大可用sda空间100G。我不知道我的发行版是 Oracle Linux,并且我尝试了其他网站上适用于 RHEL 的所有解决方案。

[root@localname bin]# lsblk
NAME   MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT
sda      8:0    0  100G  0 disk
├─sda2   8:2    0    8G  0 part [SWAP]
├─sda3   8:3    0 38.4G  0 part /
└─sda1   8:1    0  200M  0 part /boot/efi

但是我还没有找到任何东西,所以想直接在这里寻求社区的帮助。有人能帮我把分区​​扩展到实际的sda3最大容量吗?sda

Fdisk 输出:

[root@localname bin]# fdisk -l
Disk /dev/sda: 107.4 GB, 107374182400 bytes, 209715200 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 1048576 bytes
Disk label type: dos
Disk identifier: 0x00000000

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1               1    97677311    48838655+  ee  GPT
Partition 1 does not start on physical sector boundary.

在每个设备上单独执行 FDISK 会提供相关信息,但整个 fdisk 只会显示如上所述的第一个分区详细信息。

[root@localname bin]# fdisk -l /dev/sda2

Disk /dev/sda2: 8589 MB, 8589934592 bytes, 16777216 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 1048576 bytes

[root@localname bin]# fdisk -l /dev/sda3

Disk /dev/sda3: 41.2 GB, 41209036800 bytes, 80486400 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 1048576 bytes

附加信息:我只能访问服务器上的 CLI,没有 UI 访问权限。

相关内容