Saturday, May 4, 2024
 Popular · Latest · Hot · Upcoming
11
rated 0 times [  11] [ 0]  / answers: 1 / hits: 8340  / 2 Years ago, tue, august 23, 2022, 12:23:24

I have a program which I am trying to run, however when I run it; it just complains that it can't find a particular file.



However I have no idea which folder it is trying to find this particular file in. I have a copy of the required file, I just need to know which folder to copy it too.



Is there any way to show in real time which files are being accessed or which files are trying and failing to be accessed?



I am using Ext4 filesystem if that helps.



Thanks


More From » files

 Answers
7

(I first posted my answer at this askubuntu question, but removed it from there and posted it here, as it is more relevant.)



There are several ways you can investigate what files and libraries processes have opened; the main tools are lsof, strace and ltrace. Sometimes it is necesary to run them with sudo, so the program has access to everything it needs to gain an accurate snapshot of what a program is calling.



1) With lsof you need to find the process id you want to query, so use, for example:



lsof -c firefox


which will list all the files firefox has open and all its calls to system shared libraries. (Firefox currently has a pid of 3310 on my system, so you could also use lsof -p 3310, but you would have had to look up the process id first with ps aux | grep [f]irefox
). More information on lsof is detailed in this useful IBM article.



2) ltrace and strace have very similar functions and options, and are very useful for finding out detailed information about what calls a process is making. The main difference is that ltrace usually only traces library calls (although it can trace system calls with the -S option), while strace traces both library and other system calls. More information on tracing processes is available in this IBM article. Lsof is probably more useful for you if you want to examine an already running process but strace can also do this and monitor the calls in real time when given a process pid (sudo is always used when one attaches to a process):



sudo strace -p 3310


but it is much more useful to launch the program with strace and see what was called, as in the following example:



strace -f -e trace=open /usr/bin/firefox


You can just run strace with the target process and no options, but the switches here mean that child processes are traced (-f) and that all open system calls are traced (-e trace=open)
If you want to save the output to file you can specify -o ~/firefox.trace before specifying /usr/bin/firefox.



If you want a summary list of library calls, for example, you could use



ltrace -c /usr/bin/leafpad


and then exit the program and the list would be produced. Omit the -c option to view the calls in real time.



The results from strace and ltrace may not be greatly useful to you, as they are difficult to decipher unless you know what you are looking for, but lsof should provide some basic useful information.


[#35378] Tuesday, August 23, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
neasinient

Total Points: 491
Total Questions: 120
Total Answers: 93

Location: The Bahamas
Member since Mon, Aug 2, 2021
3 Years ago
neasinient questions
;