< ^ txt
Sun Jan 18 08:18:06 EST 2015
Got 6-7 solid hours of sleep, and outside the snow's melting a little. Not bad.
Goals:
- Start OpenBSD notes
Done. Made notes on the installer.
- Catch up on RSS feeds
Done.
Questions:
- Why does systemctl bitch about `Error: No space left on device` when I restart any service?
The service does restart. I'm not out of disk space or inodes.
https://bugzilla.redhat.com/show_bug.cgi?id=894483
/proc/sys/fs/inotify/max_user_watches
Hmm. I installed CrashPlan yesterday. I thought the installer mentioned max_user_watches, but I can't find it in the README.
$ cat /proc/sys/fs/inotify/max_user_watches
8192
$ sudo -s
# echo 65536 > /proc/sys/fs/inotify/max_user_watches
...and systemctl no longer issues the misleading error.
Added to `/etc/sysctl.d/local.conf` to make this survive reboot:
fs.inotify.max_user_watches=65536
< ^ txt