Oracle Linux 6.7 - 如何扩展 ext4 磁盘

Oracle Linux 6.7 - 如何扩展 ext4 磁盘

我们有一个 Oracle Linux 6.7 服务器。让服务器 IP 为 10.55.5.10。该服务器上有一个 350GB 的磁盘。并通过 NFS 与另一台具有 10.55.5.11 IP 的 Oracle Linux 6.7 服务器共享。

注意:这些是在 VMware 上运行的虚拟机。

df --inodes输出如下:

Filesystem       Inodes   IUsed    IFree IUse% Mounted on
/dev/sdb1      22937600 5450823 17486777   24% /data/upload

df -hP输出如下:

Filesystem      Size  Used Avail Use% Mounted on
/dev/sdb1       345G  321G  6.7G  98% /data/upload

cat /etc/fstab输出如下:

/dev/sdb1               /data/upload         ext4    defaults        0 0

不幸的是这个磁盘不是lvm。服务器上甚至没有配置为lvm的磁盘。我在下面指定的命令不会产生任何结果:

[root@ol67 ~]# pvdisplay
[root@ol67 ~]# vgdisplay
[root@ol67 ~]# lvdisplay
[root@ol67 ~]#

tune2fs输出如下:

[root@ol67 ~]# tune2fs -l /dev/sdb1 | grep resize_inode
Filesystem features:      has_journal ext_attr resize_inode dir_index filetype needs_recovery extent flex_bg sparse_super large_file huge_file uninit_bg dir_nlink extra_isize

fdisk -l输出如下:

[root@ol67 ~]# fdisk -l /dev/sdb

Disk /dev/sdb: 375.8 GB, 375809638400 bytes
255 heads, 63 sectors/track, 45689 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00010620

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1               1       45690   367001568+  83  Linux

showmount输出如下:

[root@ol67 ~]# showmount -e
Export list for ol67.domain.com:
/another_disk 10.55.5.11
/data/upload  10.55.5.11

/data/upload下有27个子目录。其中一个子目录中还有另外 100 万个子目录。注意:我想指出这也许是一个重要的细节。

我不知道如何扩展非 LVM 磁盘。 Oracle Linux 6.7 上可以扩展 ext4 类型的磁盘吗?

此致,

相关内容