I successfully mounted a local folder against a remote ssh host.
I now wanted to do a tail -500f my_text_file but it's not working very well. Although it does open tail and shows me the file contents, the -f part is definitely not working. It must have something to do with sshfs. When I do a regular ssh connection it works wonderfully.
Any pointers on how to fix this? I'm using the sshfs version one gets when doing a sudo apt install sshfs in Ubuntu.
tailwith---disable-inotify[sic] make any difference? Does tail give you any warnings? Inotify that tail should be using by default is not supported by sshfs.while true; do clear; tail -500 my_text_file; sleep 1; done