-
Identify Your Drive:
SSH into your server and run
lsblkto identify your drive.It's typically listed as
/dev/vdb. -
Partition the Drive:
Use
gdisk /dev/vdbto partition the drive:- Type
nto create a new partition. - Accept the defaults to use the entire drive.
- Type
wto write changes and exit.
- Type
-
Format the New Partition:
mkfs.ext4 /dev/vdbThis may take a few minutes for larger drives.
-
Create a Mount Point:
mkdir /mnt/storage -
Mount the New Partition:
mount /dev/vdb1 /mnt/storage -
Automatic Mounting on Boot:
For automatic mounting on boot, add this line to
/etc/fstab:/dev/vdb1 /mnt/storage ext4 defaults 0 0 -
Verify the Mount:
Verify the mount with
df -h.You should see
/dev/vdb1mounted at/mnt/storage.
Your BulkVM storage is now ready for use. If you encounter any issues, please don't hesitate to contact our support team.
Note: These instructions are for Debian/Ubuntu systems and use the ext4 filesystem. Adjust as needed for your specific setup.