I'm trying to extend the main PVE Data volume adding to it a second drive.
Then I increased the meta data pool as mentioned here:
https://pve.proxmox.com/wiki/LVM2#Configuration_2
While checking the partition I get an error "Bad magic number in super-block"
Am I doing anything wrong over here? Is everything healthy not to worry of future issues?
Thank you in advanced!
Code:
fdisk /dev/sdb
fdisk -l
pvcreate /dev/sdb1
vgcreate newdrive /dev/sdb1
vgextend pve /dev/sdb1
lvextend /dev/mapper/pve-data /dev/sdb1
fsck -nv /dev/mapper/pve-data
Then I increased the meta data pool as mentioned here:
https://pve.proxmox.com/wiki/LVM2#Configuration_2
Code:
lvresize --size +1G --poolmetadatasize +1G pve/data
While checking the partition I get an error "Bad magic number in super-block"
Code:
root@proxmox:~# fsck -nv /dev/mapper/pve-data
fsck from util-linux 2.29.2
e2fsck 1.43.4 (31-Jan-2017)
ext2fs_open2: Bad magic number in super-block
fsck.ext2: Superblock invalid, trying backup blocks...
fsck.ext2: Bad magic number in super-block while trying to open /dev/mapper/pve-data
The superblock could not be read or does not describe a valid ext2/ext3/ext4
filesystem. If the device is valid and it really contains an ext2/ext3/ext4
filesystem (and not swap or ufs or something else), then the superblock
is corrupt, and you might try running e2fsck with an alternate superblock:
e2fsck -b 8193 <device>
or
e2fsck -b 32768 <device>
Am I doing anything wrong over here? Is everything healthy not to worry of future issues?
Thank you in advanced!