無法在 Oracle Linux 上擴充/調整分割區大小

無法在 Oracle Linux 上擴充/調整分割區大小

我一直在努力將sda3下面顯示的分區擴展sda100G.我不知道我的發行版是 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 存取權限。

相關內容