Till date I used to set my environment variables in the bash.bashrc
file. Recently I was told to use the /etc/environment
file. Well, both work fine.
So, what is the difference between them?
I googled this and I found "bashrc is used for particular user and environment, system wide". What is meant by system wide here? /etc/bash.bashrc
is also applying changes system wide I guess. Correct me if I am wrong. Any kind of help will be appreciated..
One difference is that
/etc/environment
contains only variable definitions and doesn't appear to go through any sort of variable expansion/interpolation. Thus, you can't reference variables in definitions. This for instance won't work:B will literally be
something $A
, not the expectedsomething else
.See this question.
By the way, the answer you found through Google appears to be referring to a user's
~/.bashrc
, rather than the system-wide/etc/bash.bashrc
. That may be causing your confusion.The
/etc/environment
file sets the variable system wide for every user on boot. Commands in the/etc/bash.bashrc
are is executed if thebash
shell is opened by any user. So the variables would not be set unless abash
shell is opened at least one time.And as you are asking about "system wide":
Configuration files located in the
/etc
directory apply to all users on the system. For/etc/bash.bashrc
this would mean to all and everything that's using the "Borne Again SHell" aka Bash on that machine. Even if you're the only human using it, there could be "technical users" affected (simply take a look into the/etc/passwd
and check how often the term "/bin/bash" is stated there -- or usegrep bash /etc/passwd | wc -l
, which should give you that number directly (meaning: "grab" all lines containing the string "bash" from the file "/etc/passwd", and send the results ("|") to the command "wc" (word count) to count the lines ("-l").So for your user, it is much safer to modify
~/.bashrc
instead (meaning the file ".bashrc" -- with a leading dot, yes -- in your home-directory, e.g./home/ankur/.bashrc
), which then just affects your user and leaves everything else alone. Files in/etc
should only be changed if system-wide changes are really intended.Besides: Both configurations will be used if they exist. First, the system-wide file (here:
/etc/bash.bashrc
) is read and "sourced" (it's settings applied to the current session), and then the users/home/username/.bashrc
is handled the same, and thus can add to or even change/overwrite settings from the global/etc/bash.bashrc
file.Beyond the system wide and user wide scope discussion, one most significant difference is
/etc/environment
is not a script other than~/.bashrc
.You cannot dereference variable inside
/etc/environment
, its variable assignment which takes line value literally (as already mentioned by roadmr).Your Ubuntu will lock you out if you screw up the
$PATH
inside/etc/environment
by trying to append new pathIf your Ubuntu Gnome or Unity login page failed in letting you in without complaining wrong password. And you have recently modified
/etc/environment
, it's most likely the case.A fix is to login virtual console CTRL+ALT+F1 login console, manually check
$PATH
, and fix/etc/environment
file.According to this,
/etc/environment
is loaded by PAM stack, which populates environment variable line by line.The difference between the two is that the
/etc/enivironment
file will work for all of the users while the bash.bashrc file will particularly work for that user only. And if you do anything wrong in the/etc/environment
file then the consequences may be severe while you can easily undo the changes in the bash.bashrc file by copying the contents of the /etc/environment file. But the first preference is give to thebash.bashrc
file and then to /etc/environment file. It is not that if you make changes in thebash.bashrc
file then the terminal will give first preference to the local user file (i.e.,bash.bashrc
) and then to the main file (i.e.,/etc/environment
).