This is the old SliTaz forum - Please use the main forum.slitaz.org

[solved]Confused about environment variable.
  • JingJing April 2010
    This may be more of a general question about Linux than be Slitaz specific. I did some reading on my own but I am getting confused. But I hope someone can help me out.

    My problem is that a program I run needs some enviroment variable to be properly set in order to run. But for some reason, the program just do not see my environment variables.

    For those environment variables, I put them in ".profile" under my account in format like this:

    MY_ENV_NAME=env_value

    That seems to set up properly because if I type "echo $MY_ENV_NAME" in a terminal I can see the value is properly set.

    In trying to figure out why they are not seen by the program I type "bash" in the terminal, which supposedly set the shell to "bash". Now things changed I can see the variables are NOT set. "echo $MY_ENV_NAME" shows me nothing.

    I then added the setting for my needed environment variables to ".bashrc" under my account. After rebooting I found the enviroment variables now shows up by "echo" before and after I type "bash".

    But for some reason, that program still cannot see my enviroment variable.

    I look further and found that the program I mentioned above actually runs a shell script first. In the script it has something like this:

    #!/bin/bash/
    #below variables are required
    PROGRAM_VAR=$MY_ENV_NAME

    As you can see, this script uses my enviroment variable to set its own variable that is requred to run the program. What I found is that the program variable is set to nothing as it does not see my own enviroment variable.

    Is this about the scope of linux environment variable? Why the program does not read my environment variable?

  • erniaernia April 2010
    does the script run with your privileges or with root privileges? this could be a relevant point, even if it should not be a problem if you became root with
    su
    and not with
    su - 

    did you make the changes required from this guide to use bash instead of ash
    http://www.slitaz.org/en/doc/handbook/system-admin.html ?
    maybe it could suffice to make the symbolic link /bin/sh to point to /bin/bash instead of /bin/busybox.
    I think that if you don't make the changes /etc/profile would be sourced from ash and not from bash, because you have /bin/sh as your shell in /etc/passwd, and also i believe that you need to export variables and not just declare them.
     export PROGRAM_VAR=$MY_ENV_NAME 

    You may find useful info here:
    http://www.linuxfromscratch.org/blfs/view/6.3/postlfs/profile.html
  • JingJing April 2010
    Thank you for your help. The problem was due to my messing up with shell and those startup files while "learning". I did it all over again: coping over .profile to .bashrc, making link between /bin/bash and /bin/sh, making sure /etc/passwd is set to /bin/bash, making sure I export the variable after setting it up.

    Not sure which one did it but now the environment variables work properly.

    I am marking this as sovled. But there is one uncriticle question. I know I am using bash shell and my /bin/sh is actually linked to /bin/bash. But when I check shell from terminal it shows sh shell...that is ok right?


    $which sh
    /bin/sh

  • seawolfseawolf April 2010
    I would think that solves itself if you actually install the bash package, if you want bash. Both exist and can be used, then.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In Apply for Membership

SliTaz Social