Report this

What is the reason for this report?

Can I programmatically interact with a volume on /dev?

Posted on March 7, 2017

Hi there,

I’m writing a script to automate immutable deployments to droplets. Because these deployments are immutable, a new droplet is created for every deploy and the previous droplet is destroyed. State is stored on a Block Storage volume.

I can see that volumes can be referenced from /dev/by-id, /dev/by-label, /dev/by-path, and /dev/by-uuid. However, the uuids used in the by-uuid folder do not seem to be the same as the Volume ID returned by the DigitalOcean API.

My question is: given a Volume object obtained from the DO API, can I programmatically determine which device in /dev that Volume corresponds to?

Thanks, Alex



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.

Yes. The UUID is not used but the name you supply for the volume is used. For example:

root@sgp1-volume-test:~# ls -l /dev/disk/by-id
total 0
lrwxrwxrwx 1 root root 9 Mar  3 17:31 scsi-0DO_Volume_volume-sgp1-01 -> ../../sda

In this case, the name given to this volume when it was created is the section after Volume_ so this disk was named volume-sgp1-01 when it was created.

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.