SSD and HDD
The pc has dual boot : windows10 and Fedora34.
Fedora34 is in /dev/sdc :
- sdb1: /boot/efi
- sdc1: swap
- sdc2: root
I want to use the 100GiB sdb5
partition, it is a simple volume created in windows and is not formatted.
[root@f34 chris]# lsblk -f
NAME FSTYPE FSVER LABEL UUID FSAVAIL FSUSE% MOUNTPOINT
sda
└─sda1 ntfs New Volume A254DEF854DECDE3
sdb
├─sdb1 vfat FAT32 30E8-0B14 47.6M 50% /boot/efi
├─sdb2
├─sdb3 ntfs BA3CFF7F3CFF354B
├─sdb4 ntfs D46AE8676AE84836
├─sdb5
└─sdb6 ntfs woody 06300BE4300BD997
sdc
├─sdc1 swap 1 swap-label 6468fdcc-d524-4800-97d2-2eeace653326 [SWAP]
├─sdc2 btrfs f34_lv_btrfs ff8bfa82-86d7-4170-9e0a-858bf735ed77 36.1G 73% /
└─sdc3 ext4 1.0 Leslie b4198cab-1173-454d-8e9e-2b010a504171
sr0
zram0 [SWAP]
[root@f34 chris]#
BTRFS fedora 34
[root@f34 chris]# btrfs filesystem show
Label: 'f34_lv_btrfs' uuid: ff8bfa82-86d7-4170-9e0a-858bf735ed77
Total devices 1 FS bytes used 98.51GiB
devid 1 size 135.03GiB used 100.02GiB path /dev/sdc2
[root@f34 chris]#
[root@f34 chris]# btrfs subvolume list /
ID 256 gen 262831 top level 5 path root
ID 261 gen 261283 top level 256 path var/lib/machines
[root@f34 chris]#
On internet say that Btrfs has btrfs volumes and btrfs subvolumes, and works approximately as LVM.
I want to have more space in the root partition sdc2
, there is the 100GiB sdb5
partition which is not formatted yet.
I was working in the past with LVM and found it very useful, physical volume, volume group, logical volume.
To add more space there was only neccesary running some commands.
Now with Btrfs the default file system in fedora 34, people say that it have interesting advantages, ok, but.
How can we add more space in the existed btrfs root partition there in fedora 34?
Thanks in advance.