To add an additional disk/volume on your OVH public cloud, you need to follow some steps.
First, identify your new disk :
fdisk -l
You can have different output depending of your system (sd{x}
, vd{x}
).
Then create a new partition :
|
|
Format it :
mkfs -t ext4 -L rootfs /dev/{{disk}}1
Mount :
mount /dev/{{disk}}1 /mnt
Let’s make it peristent, we need UUID. To get block ID.
|
|
Add it on /etc/fstab
file with mount information.
|
|
Confirm good configuration with one reboot.