LVM分区的空间在哪里?

LVM分区的空间在哪里?

在此输入图像描述

df -h另外,我的命令和命令的输出fdisk -l。我可以在哪里以及如何利用我的/dev/sda4/dev/sda5分区的空间?我怀疑/dev/mapper/fedora-root是我的 LVM 分区,但为什么 GNOME 磁盘实用程序和终端命令的大小测量值不同?我怎样才能为我的系统添加更多空间,我已经使用了 98% 我缩小了双启动 Windows 操作系统的大小并获得了 18 GB 的可用空间,尽管我什至不需要使用它,因为我正在尝试确定在哪里以及我如何利用空间形式/dev/sda4/dev/sda5

我是否混淆了 LVM 分区中的逻辑分区和扩展分区?

[root@localhost ~]# df -h
Filesystem               Size  Used Avail Use% Mounted on
devtmpfs                 3.8G     0  3.8G   0% /dev
tmpfs                    3.8G  436K  3.8G   1% /dev/shm
tmpfs                    3.8G  1.7M  3.8G   1% /run
tmpfs                    3.8G     0  3.8G   0% /sys/fs/cgroup
/dev/mapper/fedora-root   27G   25G  559M  98% /
tmpfs                    3.8G   76K  3.8G   1% /tmp
/dev/sda3                477M  163M  285M  37% /boot
tmpfs                    779M  8.0K  779M   1% /run/user/42
tmpfs                    779M   20K  779M   1% /run/user/1000
[root@localhost ~]# fdisk -l
Disk /dev/sda: 119.2 GiB, 128035676160 bytes, 250069680 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x0700565b

Device     Boot     Start       End   Sectors  Size Id Type
/dev/sda1  *         2048   2459647   2457600  1.2G  7 HPFS/NTFS/exFAT
/dev/sda2         2459648 152004607 149544960 71.3G  7 HPFS/NTFS/exFAT
/dev/sda3       186820608 187844607   1024000  500M 83 Linux
/dev/sda4       187844608 250068991  62224384 29.7G  5 Extended
/dev/sda5       187846656 250068991  62222336 29.7G 8e Linux LVM


Disk /dev/mapper/fedora-root: 26.7 GiB, 28613541888 bytes, 55885824 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes


Disk /dev/mapper/fedora-swap: 3 GiB, 3242196992 bytes, 6332416 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes



lvdisplay 
  --- Logical volume ---
  LV Path                /dev/fedora/swap
  LV Name                swap
  VG Name                fedora
  LV UUID                MvfHav-JZle-0R8m-aH8l-Rf70-n36N-yozEmW
  LV Write Access        read/write
  LV Creation host, time localhost.localdomain, 2015-12-27 19:21:28 -0500
  LV Status              available
  # open                 2
  LV Size                3.02 GiB
  Current LE             773
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           253:1

  --- Logical volume ---
  LV Path                /dev/fedora/root
  LV Name                root
  VG Name                fedora
  LV UUID                DQ5ikG-0gNP-Mv2m-nthN-LxQr-XrXS-4g54b2
  LV Write Access        read/write
  LV Creation host, time localhost.localdomain, 2015-12-27 19:21:28 -0500
  LV Status              available
  # open                 1
  LV Size                26.65 GiB
  Current LE             6822
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           253:0

[root@localhost ~]# vgdisplay 
  --- Volume group ---
  VG Name               fedora
  System ID             
  Format                lvm2
  Metadata Areas        1
  Metadata Sequence No  3
  VG Access             read/write
  VG Status             resizable
  MAX LV                0
  Cur LV                2
  Open LV               2
  Max PV                0
  Cur PV                1
  Act PV                1
  VG Size               29.67 GiB
  PE Size               4.00 MiB
  Total PE              7595
  Alloc PE / Size       7595 / 29.67 GiB
  Free  PE / Size       0 / 0   
  VG UUID               iXb2mB-6RVd-Cb20-j2Jd-w4Dk-k1WJ-BFTv1t

答案1

在此特定场景中,您有 3 个主分区和 1 个扩展分区。如果您查看输出 fdisk -l 并注意 /dev/sda2 End 和 /dev/sda3 Start,您会发现那里有一点空间。

我的猜测是,您唯一的选择是通过网络或使用某些外部介质(USB 等)从 /dev/sda3 (/boot) 分区移动数据,卸载 /boot,删除 /dev/sda3 并创建新的(或者看看您是否可以调整其大小而不删除)使用所有可用空间,运行pvcreate /dev/sda3,运行vgextend fedora /dev/sda3,然后使用可以最终运行lvextend -r -l 100%FREE /dev/mapper/fedora-root

最后,您可以将文件带回 /boot 目录,只是这次它不会有单独的文件系统。如果您不使用扩展 / 文件系统的所有可用空间,您可以创建一个 lvm 并将其安装在 /boot 上。

如有任何问题,请告诉我。

相关内容