The conventional location for storing my Java libraries and applications in UNIX based systems
Posted
by Bytecode Ninja
on Stack Overflow
See other posts from Stack Overflow
or by Bytecode Ninja
Published on 2010-04-25T09:48:28Z
Indexed on
2010/04/25
9:53 UTC
Read the original article
Hit count: 203
I usually store the Java applications and JAR files that I download from the Web in the ~/Java folder on my computer (an OS X machine). I have been doing this since the days when I was a Windows user. However I think in UNIX based systems user local apps are conventionally stored in another directory. I have a feeling that this directory should either be /usr/local/
, /usr/local/USERNAME
, /opt/local
, or /opt/local/USERNAME
but I am not sure. Any ideas which directory can I use for this purpose?
Please note that, I am talking about archive files that I download from the Web, unpack and use locally and not programs that have installation scripts or MacPorts, etc.
© Stack Overflow or respective owner