Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,19 @@ There is currently a soft limit of 100 TB of Block Storage Volume per account.

FILE_SYSTEM_PATH /mnt/BlockStorage1 ext4 defaults 0 2


{{< note >}}
If you plan on detaching the volume regularly or moving it between other Linodes, you may want to consider adding the flags `noatime` and `nofail` to the **/etc/fstab** entry.

* `noatime` - This will save space and time by preventing writes made to the filesystem for data being read on the volume.
* `nofail` - If the volume is not attached, this will allow your server to boot/reboot normally without hanging at dependency failures if the volume is not attached.

Example:

FILE_SYSTEM_PATH /mnt/BlockStorage1 ext4 defaults,noatime,nofail 0 2

{{</ note >}}

### Attach a Volume from Your Account's Volume List

1. Click on the **Volumes** link in the sidebar to see your account's Volume list:
Expand Down