Hi there
My Resilio Sync app is displaying a (non blocking) error message in the GUI "Agent Run Out Of System Notify Watchers". The fix from Resilio, as detailed on here, is to change the variable max_user_watches, either temporarily with:
or permanently with:
The problem is that the app has a readonly filesystem and the sudo command doesn't exist.
As you can guess, I'm new to all this so if anyone can give me a push in the right direction, i'd appreciate it!
thanks
My Resilio Sync app is displaying a (non blocking) error message in the GUI "Agent Run Out Of System Notify Watchers". The fix from Resilio, as detailed on here, is to change the variable max_user_watches, either temporarily with:
Code:
sudo sysctl fs.inotify.max_user_watches=XXXXX
Code:
echo fs.inotify.max_user_watches=XXXXXX | sudo tee -a /etc/sysctl.conf sudo sysctl -p
The problem is that the app has a readonly filesystem and the sudo command doesn't exist.
As you can guess, I'm new to all this so if anyone can give me a push in the right direction, i'd appreciate it!
thanks