vote up 2 vote down star
3

Update: The link below does not have a complete answer. Having to set the path or variable in two places (one for GUI and one for shell) is lame.

Not Duplicate of: http://stackoverflow.com/questions/135688/setting-environment-variables-in-os-x

Coming from a Windows background where it's very easy to set and modify environment variables (just go to System Properties > Advanced > Environment Variables), it does not seem to be that straight forward on Mac OS 10.5. Most references say I should update /etc/profile or ~/.profile. Are those the equivalent of System Variables and User Variables? For example, where should I set my JAVA_HOME variable?

EDIT:

I want to be able to access the variable from the terminal as well as an app like Eclipse. Also, I hope I don't have to restart/logout to make this take effect.

flag

52% accept rate
Looks like a duplicate. – dmckee Mar 2 at 20:31
And there is some advice in the answers to the link question not repeated here... – dmckee Mar 2 at 20:38

3 Answers

vote up 1 vote down check

I have no idea to be honest.

But you already have java installed for you on mac os. I think their assumption is that this is a bsd system and if you want to mess with the system you need to go to the linux part.

I think you can add it to the /etc/launchd.conf to make a global variable

Edit: found this maybe it can be usefull http://www.digitaledgesw.com/node/31

link|flag
vote up 2 vote down

For GUI apps, you'll have to create and edit ~/.MacOSX/environment.plist. More details here. You will need to log out for these to take effect. I'm not sure if they also affect applications launched from Terminal, but I assume they would.

For apps launched from Terminal, you can also edit the ~/.profile file.

link|flag
vote up 0 vote down

You can read up on linux, which is pretty close to what Mac OS X is. Or you can read up on BSD Unix, which is a little closer. For the most part, the differences between Linux and BSD don't amount to much.

/etc/profile are system environment variables.

~/.profile are user-specific environment variables.

"where should I set my JAVA_HOME variable?"

  • Do you have multiple users? Do they care? Would you mess some other user up by changing a /etc/profile?

Generally, I prefer not to mess with system-wide settings even though I'm the only user. I prefer to edit my local settings.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.