difference between bash.bashrc and /etc/environment file

51,187

Solution 1

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:

A="else"
B="something $A"

B will literally be something $A, not the expected something 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.

Solution 2

The /etc/environment file sets the variable system wide for every user on boot. Commands in the /etc/bash.bashrc are is executed if the bash shell is opened by any user. So the variables would not be set unless a bash shell is opened at least one time.

Solution 3

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 use grep 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.

Solution 4

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 path

PATH=$PATH:/new_path

If 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.

Share:
51,187
Aloni
Author by

Aloni

Technologist I love to solve the problems with maximum possible efficiency and optimisation Data Mining enthusiast

Updated on September 18, 2022

Comments

  • Aloni
    Aloni over 1 year

    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..

  • Aloni
    Aloni almost 12 years
    what is the purpose of ~/.bashrc when there are two files which does the same thing /etc/environment and /etc/bash.bashrc ?
  • André Stannek
    André Stannek almost 12 years
    I'm not sure when the /etc/environment is executed exactly but the /etc/bash.bashrc is executed by Ubuntu when you enter your desktop environment. That's why it works if you set the variables there. My guess is that the /etc/environment is executed once while booting before you enter your desktop and that the execution of the /etc/bash.bashrc overwrites the variables. But once again: I'm not sure about this.
  • André Stannek
    André Stannek almost 12 years
    The /etc/bash.bashrc is executed if any user opens a bash. The ~/.bashrc is only executed if the owner of the home directory where it is saved opens a bash.
  • Arjun
    Arjun over 10 years
    I think you are confusing ~/.bashrc and /etc/bash.bashrc files. The first is local to user opening a shell, the second is global to all users opening a shell.
  • slm
    slm over 10 years
    It's upon login, not boot!