Network share only allows small file transfer

Hey,

Going to be some complete noob stuff here, please bear with me :slight_smile:

I’m trying to setup a share on the vero4k+ to send files from Win11 to the v4k+.
Following the guide here to configure the NFS share: “OSMC as a server: To share using NFS”:

I had been using SMB before a clean install, but it was always very slow (~10MB/s, connection is 1Gb/s) so want to see if this is any better.

Followed the steps in the guide without any real issues, but a couple of notes:

  • just before the “sudo mount -a”, I had to unmount the drives.
  • added “rw” to the “/etc/exports” file.

I can access the share on win11, however, I can only write tiny files maybe 100KB or so. Anything over that just doesn’t work.
TeraCopy doesn’t really tell me much about it, and Windows Explorer just says “there is a problem accessing n:\xyz…”.
Also Windows Explorer first gives a warning that the file will be copied without some properties; assuming this is the nature of the NFS share?

Is there something else I need to do to copy bigger files?
Is there a log that might show what happens when the transfer fails?

/etc/fstab
UUID=[uuid from blkid] /mnt/NAS4TB3 ntfs defaults,noatime,nofail,x-systemd.mount-timeout=30 0 0
UUID=[uuid from blkid] /mnt/NAS4TB4 ntfs defaults,noatime,nofail,x-systemd.mount-timeout=30 0 0

/etc/exports
/mnt/NAS4TB3 192.168.178.0/24(rw,sync,no_subtree_check)
/mnt/NAS4TB4 192.168.178.0/24(rw,sync,no_subtree_check)

Thanks in advance!