HclX / WyzeHacks

Hacks I discovered allowing Wyze camera owners to do customizations
MIT License
786 stars 75 forks source link

NFS share appears to mount read-only #86

Closed hyukishi closed 3 years ago

hyukishi commented 3 years ago

Can someone please share their NFS config for their server AND the mount config from one of their camera config.inc files please?

I finally got telnet access after running remote_install.sh from the version 5.02 release. My camera (v3 btw) is also rebooting frequently and I think it has something to do with the NFS share not being mounted properly.

Edit: here's my NFS export from my server

/media/cameras/         *(rw,sync,no_subtree_check)

And the mounting options for the config inc

export NFS_OPTIONS='-o nolock,rw,noatime,nodiratime'

Thanks in advance!

hyukishi commented 3 years ago

Nevermind, I figured it out. The probably was that my NFS share directories were still owned by root, so changing the owner with chown -R nobody:nogroup /media/cameras did the job.