How to use NFS on ZimaOS

Network file sharing protocols allow you to share files and directories from your computer with other devices on the network. Common protocols include SAMBA, NFS, and FTP.
Advantages of network sharing:

Aspect USB Copy Messaging Apps Network Sharing
Storage Local duplicates Multiple copies Centralized, no duplicates
Management Manual, error-prone Scattered in chats Centralized control
Media Usage Full copy required Full download needed Streaming support
Collaboration Physical transfer File size limits Real-time multi-access

ZimaOS currently provides CLI and GUI support for SAMBA. In versions after 1.3.2, ZimaOS also integrates NFS functionality (at CLI level). This tutorial demonstrates how to use NFS on ZimaOS to share folders and access them from Windows, macOS, and Ubuntu.
You need to create or find a folder for sharing first. Here, I will use /DATA/C/demoas an example.

Edit the Configuration File

Use vi to edit the /etc/exportsfile, which is the configuration file for NFS.

  1. Obtain root privileges
    you need to enter the ZimaOS web terminal and obtain the root privilege.
    ZimaOS dashboard -> Settings -> General -> Developer mode -> Web-based terminal
    Log in and switch to root
    sudo -i
  2. Edit the configuration file
    vi /etc/exports
  3. In the /etc/exports, paste this line
    /DATA/C/demo *(rw,sync,no_subtree_check)
    Note:

It will work automatically, even after reboot.

Bring the Configuration File into Effect

In some cases,you may need to run this command in the shell to make the configuraion effective.

systemctl restart nfs-server

or

exportfs -a

Use(Mount/Unmount) the NFS Folders

On ZimaOS/Ubuntu

Tested on ZimaOS 1.3.2-beta2 and Ubuntu 22.04.5 LTS

  1. Here on a client machine
    open Terminal
    switch to root first
    make a dir for mounting
    sudo -i
    mkdir /mnt/demo
  2. mount the nfs folder
    this ip is the Server’s IP
    mount 10.0.0.71:/DATA/C/demo /mnt/demo
  3. Now you can view and use your sharing
    you may want to remove the mounted NFS folders one day
    Just check mounted folders
    df -h
    or
    mount | grep nfs
  4. unmount the nfs folders
    umount /mnt/demo

On macOS

  1. Tested on macOS Sequoia on M4 Chip
    make a directory for mounting
    mkdir ~/demo
  2. mount the nfs folder
    you need to use sudo to mount
    it will prompt you to input the password
    sudo mount -t nfs -o resvport 10.0.0.71:/DATA/C/demo ~/demo
  3. open the folder for using
    open .
  4. you may want to remove the mounted NFS folders one day
    Just check mounted folders
    df -h
    or
    mount | grep nfs
  5. unmount the nfs folders
    sudo umount /mnt/demo

On Windows

Tested on Windows 11

  1. you may need enter to CMD first
    since the terminal may place you in Powershell by default on Windows 11

    cmd
  2. You may need to change W: to an available character that is not occupied

    mount \\10.0.0.71\DATA\C\demo W:

    Now you can view and use your sharing

  3. you may want to remove the mounted NFS folders one day
    Just check mounted folders

    net use
  4. unmount the nfs folders

    net use W: /delete

The screenshot after mounting on Windows:

Useful Tips

Here are some commands that you may need further.
On the ZimaOS server

  1. check the status of nfs-service
    systemctl status nfs-server
  2. remove or comment out the line of /etc/exports to disable sharing
    run this to make it effective
    exportfs -a
    or
    systemctl restart nfs-server

If you encounter any issues during use, feel free to let us know at any time. You can also join our community and Discord to discuss more about NAS and ZimaOS. We look forward to your feedback!