I wholeheartedly agree with this blog post. I believe someone on here yesterday was asking about config file locations and setting them manually. This is in the same vein. I can't tell you how many times a command line method for discovering the location of a config file would have saved me 30 minutes of googling.

you are viewing a single comment's thread
view the rest of the comments
[–] 40 points 3 years ago (7 children)

Start your application / program with “strace” and see all the files it opens.

Also run “lsof” on a running process to see what files it has open.

  • source
  • hideshow 7 child comments
  • [–] [B] 14 points 3 years ago* (last edited 3 years ago) (2 children)

    Or use inotifywait from inotify-tools. It logs acces to specified file/folder.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 5 points 3 years ago (1 child)

    Interesting. I have not heard of this tools. But you say specified file or folder, that means you already know the file location?

  • source
  • parent
  • hideshow 1 child comment
  • [–] 2 points 3 years ago

    You can call it recursively on .config (for instance), and watch for specific events (creation, deletion, modification, etc). But I expect this to be expensive on really large folders and I'd avoid it if I could.

    Btw it's syscalls iirc (inotify-tools just exposes them)

  • source
  • parent
  • [–] 3 points 3 years ago (2 children)

    I doubt that's a linux problem. All apps store config in /etc, ~/.*rc or ~/.config

    Everything else should be considered a bug (looking at you, systemd!)

  • source
  • parent
  • hideshow 2 child comments