Fresh install of VB 2.4
Installed to a fresh 6TB disk. Followed all steps successfully till the point of expanding storage to fit the whole disk
Even after issuing
...On Vortexbox web UI I can still see
This corresponds to about 1 TB of storage while my disk is 6TB
Output of fdisk is as follows
Whats going wrong?
I also need to add another 6TB disk to the storage later. So, as per the instructions for adding a second disk in the wiki
In the first line it sayd we want to create an LVM partition called /dev/sdb1
And the command following it says config_lvm_drive.sh /dev/sdb <- not sdb1
Is this correct? Or does this need to be sdb1?
Because the next line also says config_add_lvm.sh /dev/sdb1
Is this a typo or is this correct?
Installed to a fresh 6TB disk. Followed all steps successfully till the point of expanding storage to fit the whole disk
Even after issuing
Code:
config_local_storage.sh
...On Vortexbox web UI I can still see
/storage | 887G | 72M | 842G | 1% |
Output of fdisk is as follows
Code:
[[email protected] ~]# fdisk -l Disk /dev/sda: 5.5 TiB, 6001175126016 bytes, 11721045168 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disklabel type: gpt Disk identifier: 6E2BA1CC-BBA4-40FE-A702-C799B7CF7631 Device Start End Sectors Size Type /dev/sda1 2048 4095 2048 1M BIOS boot /dev/sda2 4096 618495 614400 300M Linux filesystem /dev/sda3 618496 749567 131072 64M Linux swap /dev/sda4 749568 63664127 62914560 30G Linux filesystem /dev/sda5 63664128 11721045134 11657381007 5.4T Linux LVM Disk /dev/mapper/VolGroup-lv_storage: 901.2 GiB, 967604961280 bytes, 1889853440 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Whats going wrong?
I also need to add another 6TB disk to the storage later. So, as per the instructions for adding a second disk in the wiki
The first step is to create an LVM on your new second drive. This command will create an LVM partition called /dev/sdb1. You may need to use a different device name if your second drive is not /dev/sdb
config_lvm_drive.sh /dev/sdb
Now you want to add /dev/sdb1 to the /storage LVM. This command will add it
config_add_lvm.sh /dev/sdb1
config_lvm_drive.sh /dev/sdb
Now you want to add /dev/sdb1 to the /storage LVM. This command will add it
config_add_lvm.sh /dev/sdb1
And the command following it says config_lvm_drive.sh /dev/sdb <- not sdb1
Is this correct? Or does this need to be sdb1?
Because the next line also says config_add_lvm.sh /dev/sdb1
Is this a typo or is this correct?
Comment