Hello, I'm trying to use one propiertary linux application with linux-c6-6.9 on FreeBSD 11.1 amd64. Application starts, but stops shortly with error in log file:
I have no sources and can't contact support directly. But I think this is somehow filesystem related. In case with freebsd native applications I know I can use dtrace(1) to monitor applications file access like this:
But I have no idea how to do it with Linux app running using linux(4). Any suggestions?
Code:
File shared access error 'v8stg://c:/1/FileStorage': ./src/storage.cpp(5013)"
Code:
dtrace -n 'syscall::open*:entry { printf("%s %s", execname, copyinstr(arg0)); }'
Last edited by a moderator: