Linux - How to tell which files are sourced at login?

When a particular user logs in to a Linux machine, certain files are sourced, like perhaps .bashrc, .bash_profile, etc... Sometimes different shells mean different files are sourced. And of course the user might have something setup to source certain custom files of their own.

My question: Is there a way for root/su to determine a list of every file that is sourced for any given user when they login?


Solution 1:

inotifywatch may help. Packaged in inotify-tools. Use as the user of files/dir for home dir being watched, not sudo, or you'll get errors on .gvfs if running a newer gnome.

inotify will only tell you which files get accessed/created/modified/deleted.

$ inotifywatch -r /home/username/.* /home/username/*
Establishing watches...

in another terminal

$ cat /home/username/.bashrc 

in inotifywatch terminal ctrl-c to end

Finished establishing watches, now collecting statistics.
total  access  modify  close_nowrite  open  filename
3      1       0       1              1     /home/username/.bashrc

For your specific request, all files accessed during login.

$ inotifywatch -r /home/username/.* /home/username/*
Establishing watches...

in another terminal

$ sudo su
# login username

in inotifywatch terminal ctrl-c to end

You may want to redirect the inotifywatch to a file if using a fat desktop like gnome or kde. Or increase your scrollback in the inotifywatch terminal. In gnome 3, thousands of homedir files are accessed during login. You'll probably want to either exclude directories or make a specific dir/file list to watch.

Solution 2:

You can add additional code into each dotfile, in example:

.bashrc

if [ ! -z "$PS1" ]; then # Determine whether Bash is running interactively or not.
  echo $(basename $BASH_SOURCE) loaded.
fi

and similar for .bash_profile, .bash_aliases, .profile, etc.

So when you log-in, you'll see which files are loaded and what was the exact order. If you don't want to print anything on the screen (e.g. for the users), then log it into the file instead. In example:

echo # $(basename $BASH_SOURCE) loaded for $USER. >> ~/.bash_history

You can check the above solution in my dotfiles.