archil unmount
to unmount your Archil disks, not the builtin umount
command. Unlike umount
,
the archil unmount
command does not exit until all pending data is flushed to the backing disk. This is particularly
important on system shutdown, in which the Linux kernel will, by default, call umount
on all devices and shutdown
without waiting for pending Archil writes to be synced./etc/fstab
file. This is particularly useful for production servers that need persistent disk access.
/etc/fstab
with the following format:
<disk-name>
: An owner-qualified disk name (organization/disk-name|employee@email.com/disk-name
) or disk ID (dsk-0123456789abcdef
)<mountpoint>
: Local directory where the disk should be mounted (e.g., /mnt/archil
)archil
: Filesystem type for Archil disks_netdev
: Critical option that tells systemd this is a network filesystem that requires network connectivityregion=<region>
: Specify the region where your disk is located (e.g., aws-us-east-1
)_netdev
option is essential for proper system startup. Without it, systemd may attempt to mount the Archil disk before network connectivity is established, causing boot failures or timeouts./etc/fstab
, you can test the configuration with sudo mount -a
to mount all fstab entries, or sudo mount <mountpoint>
to mount a specific entry.