Skip to main content

Mount shared disk

note

Run the following commands as root or a user with the superadmin privileges.

To mount a shared disk, follow the steps below:

  1. Create a mount point:

    mkdir -p /opt/workfusion/shared
  2. Add a record to /etc/fstab to allow the system to mount the partition automatically after the server restart:

    cat << EOF >> /etc/fstab
    <nas_server_hostname>:/path/to/shared/folder /opt/workfusion/shared nfs rw,bg,retrans=5000,rsize=8192,vers=3,wsize=8192,timeo=14,intr 0 0
    EOF

    Remember to specify your <nas_server_hostname> and </path/to/shared/folder>.

  3. Mount the shared directory:

    mount /opt/workfusion/shared