-----Original Message-----
From: redhat-list-bounces redhat com
[mailto:redhat-list-bounces redhat com] On Behalf Of Muhammad Rizwan
Sent: Friday, May 27, 2005 5:12 AM
To: General Red Hat Linux discussion list
Subject: profile
Hello
When Linux starts, which profile it loads.
Any idea?
Thanks!
--
redhat-list mailing list
unsubscribe mailto:redhat-list-request redhat com?subject=unsubscribe
https://www.redhat.com/mailman/listinfo/redhat-list
Profiles read are dependent upon the shell you execute, whether the shell is
a login shell or interactive.
The man page for each shell should have what you need. If you're running
the bash shell, type:
man bash
and search for the INVOCATION section
For an interactive bash login shell (therefore what you start when you log
in), profiles are read in the following order:
/etc/profile
~/.bash_profile (which should call up ~/.bashrc)
~/.bash_login
~/.profile
if the files exist.
Hope this helps,
Michael