NFS

File Sync & Backup Tools (FreeFileSync TrueNAS SyncThing Synolog QNap NAS)

2021-06-07. Category & Tags: TrueNAS, FreeNAS, SyncThing, Deltacopy, Seafile, OwnCloud, NextCloud, Synology, QNap, NAS, NFS, RAID, File Server, File Service, File Syncing, File Backup, File Versioning, 群晖, 威联通

NextCloud vs. Seafile vs. SyncThing #

NextCloud Seafile SyncThing
License Open source Open source/Enterprise License Open source
Large file support Yes Yes Yes
Centralized Yes (CS Mode) Yes (CS Mode) No (P2P Mode)
Self-hosted Yes Yes
Server OS Linux/Windows/MacOS Linux/Windows
Docker Support Yes Yes Yes
Language PHP C, Python GO
Mobile Clients iPhone/Android/Windows iPhone/Android Android
Desktop Clients Mac/Windows/Linux Mac/Windows/Linux Mac/Windows/Linux
Single Sign-On Yes No No
Sync local folder Yes Yes Yes
LAN Synchronization No Yes Yes
Multi-Tenant No Yes No
File Versioning Yes Yes Yes
Chat (Audio/Video/Text) Yes No No
Calendar/Contact/Mail integration Yes Calendar and Contact No
Active Directory Support Yes Yes No
Online Office Yes In Pro. Version No
File Locking Yes Yes Yes
File Access Control Yes Yes Yes
  • Cons (issues) of OwnCloud / Nextcloud: uploading big files in one time using HTTP is not a good choice; each WebDAV connection per file which is a bad practice for small files (10GB files requies 10 hours); 255 bytes per filename due to Linux (usually enought, better than Win).
  • Pros of owncloud/nextcloud: it stores files in files.
  • Cons (issues) of Seafile: stores in its own format, canNOT access files directly in OS.
  • Pros of Seafile: fast; pro. version is free for 3 users including full-text document search (elasticsearch-based).
  • OwnCloud supports diff sync, which is still not in nextcloud.

more about MAX_PATH: doc, nextcloud help.
ssdnodes (bak1: 4systems.ru, bak2: ever)

...

NFS How-To

2012-05-11. Category & Tags: Soft&Skills Soft&Skills, NFS, NFSD

Update: 2017-01-06
Warn 1: for non-English, use samba/sshfs instead. unless win has NFS v4 or above which can solve non-UTF8 problems.
Warn 2: svchost consumes 1.5GB ram, don’t know why.

See Also Links
SSHFS/SFTP
CIFS/SMB/Samba

OBS #

Combining simlink (ln -s) with NFS may cause weird file path problems. We tried to have a link at NFS to Dropbox in nfs, also tried to have a link at home to mount point at /mnt. Both caused some minor path and file issues, but no series problems.

...