Mount new partition
The instruction details how to mount a new partition if you failed to do this before the installation:
note
Run all commands as the root user or a user with super admin privileges.
Check if there are any mounted partitions of appropriate size:
lsblkCheck the disk partitioning:
fdisk -lCreate a new partition (
/dev/sdbis a new partition that should be parted):fdisk /dev/sdb -> n - add a new partition -> p - primary partition -> 1 -> w - write your actionsCreate a new partition (
/dev/sdbis the new partition to be parted):fdisk -lFormat a block storage device with a specific filesystem:
mkfs.xfs /dev/sdb1Create a mounpoint:
mkdir -p /opt/workfusionMount the created partition to the directory:
mount /dev/sdb1 /opt/workfusionAdd a record to
/etc/fstabto allow the system to mount the partition automatically after the server restart:cat << EOF >> /etc/fstab /dev/sdb1 /opt/workfusion xfs defaults 0 0 EOF