In the configure volume tutorial when you create a volume for a droplet it says to create then mount my volume to /mnt/volume_tor1_01 can this be any other directory that still does not exist like if I wanted it to be in /home/example is this possible? Does the volume data get displayed on my control panel on how much space is left or do I need to run a command for it to check?
# Create a mount point for your volume:
$ mkdir -p /mnt/volume_tor1_01
# Mount your volume at the newly-created mount point:
$ mount -o discard,defaults,noatime /dev/disk/by-id/scsi-0DO_Volume_volume-tor1-01 /mnt/volume_tor1_01
# Change fstab so the volume will be mounted after a reboot
$ echo '/dev/disk/by-id/scsi-0DO_Volume_volume-tor1-01 /mnt/volume_tor1_01 ext4 defaults,nofail,discard 0 0' | sudo tee -a /etc/fstab
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Accepted Answer
Hello,
Yes you can change the /mnt/volume_tor1_01 with another directory.
So in the steps that you’ve provided just change /mnt/volume_tor1_01 to /home/example:
# Create a mount point for your volume:
$ mkdir -p /home/example
# Mount your volume at the newly-created mount point:
$ mount -o discard,defaults,noatime /dev/disk/by-id/scsi-0DO_Volume_volume-tor1-01 /home/example
# Change fstab so the volume will be mounted after a reboot
$ echo '/dev/disk/by-id/scsi-0DO_Volume_volume-tor1-01 /home/example ext4 defaults,nofail,discard 0 0' | sudo tee -a /etc/fstab
Hope that this helps! Bobby
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.
