Thanks Tom, you gave me some useful information. We actually did notice that working files in /tmp are taking space, and even worse, they do not go away after the session is closed, they are still there and with the lock file. I guess, there should be some configuration parameter to change the place, and we also should do a cleanup from time to time. Now let me re-iterate details of how we use it here, so maybe you would have some more advice for us. The Eslink plugin under Eclipse on Windows PC is configured to connect to the Linux machine (via ssh) and run the session there. As I said before, it overall runs fine. Somehow they can bring the library files to Eslink and display the data in Eslink internal data browser (which is a pretty dumb browser). After some experiments with using my own batch script as an "external viewer", I learned that Eslink calls it with one parameter, which is a file path. If my session was local on PC, the viewer would just open it, but since my session is on Linux, I have to copy it first. This is not a big problem, can be solved with a simple wrapper (of course, I wish Eslink team fixed it, but Eslink is a free software and currently not much is going on there). By the way, I am not quite sure why you worry about reading data files produced by a running session. This is read-only operation, should not crash anything. At least on Linux, I know for sure, making a copy of a file never causes any problem, even if the file is open by a process. Anyway, the bigger problem is: after my wrapper script brings the file to PC, I need to either have a nice browser to view it, or, even better, a converter to csv or xls format, so that I can just invoke Excel. If, instead of converter on Windows, I have one on Linux, it is OK, because I can convert the file on Linux and then copy it to PC.
... View more