Error: Linux and inotify_add_watch.
This is a common report error and this doesn’t actually refer to the amount of storage space, but to the amount of inotify watches that are available for a given file system Linux show me this:
1 2 3 4 5 6 | (0x7ffedb2c1390) Critical: inotify_add_watch(/home/mythcat/.config/lxqt/lxqt.conf) failed: (No space left on device) (0x7ffedb2c1390) Critical: inotify_add_watch(/usr/share/icons/breeze/icon-theme.cache) failed: (No space left on device) (0x7ffedb2c1390) Critical: inotify_add_watch(/home/mythcat/.config/lxqt/lxqt.conf) failed: (No space left on device) (0x7fffe9047930) Critical: inotify_add_watch(/home/mythcat/.config/lxqt/lxqt.conf) failed: (No space left on device) (0x7fffe9047930) Critical: inotify_add_watch(/usr/share/icons/breeze/icon-theme.cache) failed: (No space left on device) (0x7fffe9047930) Critical: inotify_add_watch(/home/mythcat/.config/lxqt/lxqt.conf) failed: (No space left on device) |
You can fix with this command:
1 | echo fs.inotify.max_user_watches=65536 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p |