Ubuntu:如何查找未分配的分区/可用空间?

Ubuntu:如何查找未分配的分区/可用空间?

我有一台装有 Ubuntu 的传统专用服务器(仅控制台模式)。根据文档(价格等),我看到服务器必须有 250+ GB,但我看到的要少得多:

$ df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/md1              3.7G  1.6G  2.2G  43% /
none                  2.0G  196K  2.0G   1% /dev
none                  2.0G     0  2.0G   0% /dev/shm
none                  2.0G  3.2M  2.0G   1% /tmp
none                  2.0G   84K  2.0G   1% /var/run
none                  2.0G     0  2.0G   0% /var/lock
none                  2.0G     0  2.0G   0% /lib/init/rw
/dev/mapper/vg00-usr  4.0G  2.2G  1.9G  55% /usr
/dev/mapper/vg00-var  4.0G  1.9G  2.2G  48% /var
/dev/mapper/vg00-home
                      4.0G  1.8G  2.3G  45% /home

我不知道谁、何时以及如何配置该服务器。不幸的是,我无法从头开始重新安装它。

所以我的问题是,我如何找到可用分区/未分配的空间

万一这么简单:

$ fdisk -l

Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 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: 0x4ed88842

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1               1         487     3911796   fd  Linux raid autodetect
/dev/sda2             488         731     1959930   82  Linux swap / Solaris
/dev/sda3             732       60801   482512275   fd  Linux raid autodetect

Disk /dev/sdb: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 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: 0x0b9943b0

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1               1         487     3911796   fd  Linux raid autodetect
/dev/sdb2             488         731     1959930   82  Linux swap / Solaris
/dev/sdb3             732       60801   482512275   fd  Linux raid autodetect

Disk /dev/md1: 4005 MB, 4005560320 bytes
2 heads, 4 sectors/track, 977920 cylinders
Units = cylinders of 8 * 512 = 4096 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000

Disk /dev/md1 doesn't contain a valid partition table

Disk /dev/md3: 494.1 GB, 494092484608 bytes
2 heads, 4 sectors/track, 120628048 cylinders
Units = cylinders of 8 * 512 = 4096 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000

Disk /dev/md3 doesn't contain a valid partition table

答案1

您有两块 500GB 的硬盘。它们配置为将第一个分区 (4 GB) 镜像为/( /dev/md1) 的 RAID,将两个 2 GB 分区 (每个磁盘一个) 用于交换,将另一个 RAID 镜像占用剩余空间 ( /dev/md3)。

我假设将其/dev/md3配置为 LVM 的物理卷,包含卷组vg00,而卷组又有三个 4GB 卷(用于/home/usr/var)。

您可以使用 检查 LVM 的状态,vgdisplay并使用 扩展现有卷lvextend或使用 在空白处创建新卷lvcreate

有关更多信息,请参阅我列出的命令的手册页。

答案2

看来您正在lvm磁盘上运行。运行vgdisplay命令以查看可用空间。

vgdisplay

要向逻辑卷添加更多空间,您可以使用lvextend

相关内容