由于没有安装卷,我是否会浪费一半的磁盘空间?

由于没有安装卷,我是否会浪费一半的磁盘空间?

我从前任系统管理员那里继承了一台 Debian 服务器,他已经离开了,但没有太多文档。我不是系统管理员,但我想现在我必须成为一名系统管理员,而且我正在尝试了解这些机器上有哪些磁盘和卷/分区,但 LVM 对我来说是新事物。

我的问题是:这个“共享”卷组是否被浪费了?如果df没有列出它安装在任何地方,是否意味着它没有被使用?

以下是我知道或用 Google 搜索到的一些命令的输出:

磁盘空间使用情况:

root@server1:/$ df -hlT
Filesystem    Type    Size  Used Avail Use% Mounted on
/dev/xvda1     xfs     19G  2.2G   17G  12% /
tmpfs        tmpfs    2.0G     0  2.0G   0% /lib/init/rw
udev         tmpfs    2.0G  100K  2.0G   1% /dev
tmpfs        tmpfs    2.0G  4.0K  2.0G   1% /dev/shm
/dev/mapper/storage-a
           xfs    129G   74G   56G  57% /var

磁盘管理

root@server1:/$ fdisk -l

Disk /dev/xvda: 21.5 GB, 21474836480 bytes
255 heads, 63 sectors/track, 2610 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: 0x00000000

    Device Boot      Start         End      Blocks   Id  System
/dev/xvda1               1        2432    19530752   83  Linux
/dev/xvda2            2432        2611     1438720   82  Linux swap / Solaris

Disk /dev/xvdb: 247.0 GB, 246960619520 bytes
255 heads, 63 sectors/track, 30024 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: 0x404c04a6

    Device Boot      Start         End      Blocks   Id  System
/dev/xvdb1               1       13055   104864256   8e  Linux LVM
/dev/xvdb2           13056       30024   136303492+  8e  Linux LVM

Disk /dev/dm-0: 138.4 GB, 138412032000 bytes
255 heads, 63 sectors/track, 16827 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: 0x00000000

Disk /dev/dm-0 doesn't contain a valid partition table

Disk /dev/dm-1: 104.9 GB, 104857600000 bytes
255 heads, 63 sectors/track, 12748 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: 0x00000000

Disk /dev/dm-1 doesn't contain a valid partition table

各种显示:

root@server1:/$ vgdisplay -C
  VG      #PV #LV #SN Attr   VSize   VFree
  shared    1   1   0 wz--n- 100.00g 2.35g
  storage   1   1   0 wz--n- 129.99g 1.08g
root@server1:/$ lvdisplay -C
  LV   VG      Attr   LSize   Origin Snap%  Move Log Copy%  Convert
  a    shared  -wi-a-  97.66g                                      
  a    storage -wi-ao 128.91g                                      
root@server1:/$ pvdisplay -C
  PV         VG      Fmt  Attr PSize   PFree
  /dev/xvdb1 shared  lvm2 a-   100.00g 2.35g
  /dev/xvdb2 storage lvm2 a-   129.99g 1.08g
root@server1:/$ dmsetup ls
shared-a    (254, 1)
storage-a   (254, 0)

所以我认为我看到了两个“物理”磁盘,/dev/xvda 约有 20 GB,/dev/xvdb 约有 250 GB。

较大的磁盘似乎由两个 LVM 卷组成,/dev/xvdb1(或者我应该称之为 /dev/dm-1)大约有 ~100 GB,而 /dev/xvdb2(或者我应该称之为 /dev/dm-0)大约有 ~130 GB。

较大的逻辑卷组似乎被称为“存储”,而较小的逻辑卷组被称为“共享”。

我再重复一下我的问题:这个“共享”卷组是否被浪费了?如果df没有列出它安装在任何地方,是否意味着它没有被使用?

编辑:添加dmsetup ls每个请求的输出。

相关内容