Posted almost 11 years ago. Visible to the public.
Fix: Tail says "no space left on device"
Linux provides a fix number of filesystem watches. If you have some greedy daemon (like dropbox) running, chances are it uses all of them, and you cannot use tail -f
any more.
To increase the number of watches, put something like
fs.inotify.max_user_watches = 32768
into /etc/sysctl.conf
. (default is 8192)
To update the setting right away, run
sudo sysctl -p /etc/sysctl.conf
afterwards.
Does your version of Ruby on Rails still receive security updates?
Rails LTS provides security patches for unsupported versions of Ruby on Rails (2.3, 3.2, 4.2 and 5.2).