You are not logged in.
I started to play a little with speech note application.
I would like to know if and, if yes, where this application saves the temp data.
I tried to use du -sh on directories like /tmp ~/.cache and application directory ~/.var/.../ (it is a flatpak)
I tried to use find with a parameter to check newly created or modified files in a home directory.
I couldn't find anything, but I suspect that doesn't mean that this application do not use temp at all.
Offline
strace or "ls -l /proc/$(pidof specific_application)/fd/" (the latter only helps while the file is currently opened)
Why do you assume it's using any temporary files?
Online
strace or "ls -l /proc/$(pidof specific_application)/fd/" (the latter only helps while the file is currently opened)
Why do you assume it's using any temporary files?
I do not assume that. I was just an example (real life example). But from time to time, when I use an application that uses big files, I would like to know what is going on.
For example, some time ago I've been playing with hashcat and quite big dictionary. Before hashcat started to calculate, there was an information that it is caching the dictionary I gave.
As for the speech note. It has option to listen to the sound from the laptop microphone but it is not real time conversion. That's why I assumed that it has so write recorded files somewhere.
Last edited by 860lacov (2024-07-28 17:52:14)
Offline