Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: small clarifications

...

Please note: the different cloud environments will may offer the disk volumes to the Linux instance using different names. However, the basic steps will be the same as in the examples below.

...

The following example shows how to create a mount-point and mount the file system. Please note that this is just a basic example. As
To keep the example consistent with the sample outputs above, /dev/sdb1 is used in this example. However, as the /dev/sdX device names are not guaranteed to be persistent across reboots, it is better strongly recommended to use names from the /dev/disk/by-* hierarchy (for example by-uuid) for permanent, production use.

# mkdir /space
# mount /dev/sdb1 /space

...