Reputation: 1995
I would like to add /usr/lib/oracle/11.2/client64/lib
to java.library.path
so it shows when running java -XshowSettings:properties
- how can this be done?
I am running Linux/Debian
Upvotes: 1
Views: 7285
Reputation: 356
I'd like to add that
if you want to set up a system environment in /etc/profile
and validate it immediately (without reboot),
refresh profile via command . /etc/profile
( DOT SPACE /etc/profile
)
Upvotes: 0
Reputation: 430
You can do this via adding the containing directory to LD_LIBRARY_PATH like **
export LD_LIBRARY_PATH = $LD_LIBRARY_PATH:/Desktop/pathOfContaininglibaryDirectory
** into your bashrc file.Then you need to refresh bashrc file via command
source ~/.bashrc
then run you can run the java command(java -XshowSettings:properties) to see all the properties it will come under user.dir
Upvotes: 3