美文网首页文件安全
syncthing 搭建自己的同步云网盘

syncthing 搭建自己的同步云网盘

作者: 了尘兰若 | 来源:发表于2018-09-19 14:20 被阅读12次

    参考前辈写的
    https://www.cnblogs.com/xingyunfashi/p/8708807.html

    https://www.jianshu.com/p/4235cc85c32d

    错误修复:

    2.2.32. How do I increase the inotify limit to get my filesystem watcher to work?

    You are probably reading this because you encountered the following error with the filesystem watcher on linux:

    Failed to start filesystem watcher for folder yourLabel (yourID): failed to setup inotify handler. Please increase inotify limits, seehttps://docs.syncthing.net/users/faq.html#inotify-limits

    Linux typically restricts the amount of watches per user (usually 8192). When you have more directories you need to adjust that number.

    On many Linux distributions you can run the following to fix it:

    echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p

    On Arch Linux and potentially others it is preferred to write this line into a separate file, i.e. you should run:

    echo "fs.inotify.max_user_watches=204800" | sudo tee -a /etc/sysctl.d/90-override.conf

    This only takes effect after a reboot. To adjust the limit immediately, run:

    sudo sh-c 'echo 204800 > /proc/sys/fs/inotify/max_user_watches'

    相关文章

      网友评论

        本文标题:syncthing 搭建自己的同步云网盘

        本文链接:https://www.haomeiwen.com/subject/xgfinftx.html