-
Notifications
You must be signed in to change notification settings - Fork 270
Network Storage
WLTB-Gino edited this page Jun 17, 2026
·
6 revisions
Network File System (NFS) is natively integrated into Thingino, allowing you to mount remote network shares to your device.
To mount an NFS share, use:
mount -t nfs -o nolock <server_ip>:<remote_path> <local_mount_point>Example:
mount -t nfs -o nolock 192.168.1.1:/mnt/share /mnt/nfs-
-t nfs: Specifies NFS as the filesystem type -
-o nolock: Disables file locking, often necessary for embedded systems -
<server_ip>: The IP address of your NFS server -
<remote_path>: The exported directory on the NFS server -
<local_mount_point>: The directory on your Thingino device where the share will be mounted
- Ensure the mount point directory exists before mounting
- The NFS server must have the share properly exported. On a Linux server use
# exportfs -ravafter adding your shares to/etc/exports - Network connectivity must be established between server and device
- Thingino supports nfs
v2andv3, not v4 - Make the mount persistent by setting the NFS share path with:
jct /etc/thingino.json set nfs_share "<server_ip>:<remote_path>"This is automatically mounted at /mnt/nfs on boot by the S43mounts init script.
Thingino supports CIFS (SMB) but it is not enabled by default. To enable CIFS support, you can add the following build option to your configuration:
BR2_PACKAGE_THINGINO_KOPT_CIFS=yThis option will:
- Enable the necessary kernel configurations for CIFS support.
- Include CIFS utilities in your build.
For detailed instructions on modifying your build configuration, refer to the Build Configuration section of the Thingino wiki.
- Wiki Home
- About the Project
- Getting Started
-
Supported Cameras
- Cameras
- 360 AP1PA3
- AliExpress LTIA‐37FJZ (Vanhua Z55 module)
- AOQEE C1
- Aosu C5L
- Cinnado
- Dekco DC5L
- Eufy
- Galayou/Wansview
- Hualai (Wyze/Atom/Neos/Personal)
- iFlytek XFP301‐M
- Jienuo JN-107-AR-E-WIFI
- Jooan A6M
- LaView L2
- LongPlus X07
- LSC 3215672
- Sannce I21AG
- Sonoff Cam‐S2 and B1P
- TP-Link Tapo C100/C110/C111
- Wuuk Y0510
- Xiaomi
- Configuration
- Integration
- Development