Sponsored Content
Operating Systems Linux Red Hat List of all environment variables? Post 302491485 by Corona688 on Thursday 27th of January 2011 02:59:15 PM
Old 01-27-2011
Who's to say unset things don't default to unset?

If you're looking for the library path, you've already found it. export LD_LIBRARY_PATH="/path/to/dir/" will allow programs you run after that to find shared libraries under /path/to/dir. LD_PRELOAD is also a real option but acts a little differently, allowing you to partially override libraries it already finds. I haven't heard of LIBPATH.

None of these default to set since setting them for the entire system is likely to cause security holes or bad side-effects. People locking themselves out of glibc, and so forth.

I don't know of any giant list of everything the system uses, because there's no limit. Any installed program might have a special environment option they check.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

what is the use of Environment variables

what is the actual use of environment variables. I know only PS1, LOGNAME, PS2 variables what are the other variables & what is there use (2 Replies)
Discussion started by: indianguru
2 Replies

2. UNIX for Dummies Questions & Answers

environment variables

Hi Folks, Is it possible somehow to unset all the environment variables which have been defined before in UNIX (Solaris). Thanks, Slava (3 Replies)
Discussion started by: spavlov
3 Replies

3. Programming

environment variables

hi, I want to create a new EV(Environment Variable) through a c program and I done this thing through setenv() method. But the newly created EV is not permanent, i.e. when I exit from the program the EV also no longer lives. But I want to make it a permanent EV for the current user. Actually I... (6 Replies)
Discussion started by: sumsin
6 Replies

4. Shell Programming and Scripting

environment variables

Hi, If i have a variable set and exported in my pofile file will that variable be available in all shell scripts created. Thanks, Radhika. (3 Replies)
Discussion started by: radhika03
3 Replies

5. Shell Programming and Scripting

using environment variables

say i define an environment variable in a particular script (upgrade.sh). my script is upgarde.sh and it calls another script try.sh. will this environment variable be accessible to try.sh also. if not how to I make environment variables global so that they can be used by any script. (2 Replies)
Discussion started by: lassimanji
2 Replies

6. UNIX for Dummies Questions & Answers

Environment variables

why are all environment variables represented in a fixed format regardless of the shell you use? like $HOME $PATH etc (6 Replies)
Discussion started by: sravani
6 Replies

7. Shell Programming and Scripting

Environment variables

I have read tons of posts about how you can't set persisting environment variable in a child script of a shell and have it persist. The only way is to source a file as % . <scriptname> I am finding that true... but I know there is a way around it. I just don't know how. I worked for 6... (5 Replies)
Discussion started by: rwa25
5 Replies

8. HP-UX

Environment Variables

Hi Experts, Need your help in understanding the commands to setup the environment variables in hp-ux. Beleive need to use either set,setenv or export. I am confused between above three options, when to use which option? On command line, I have tried both set and setenv but couldn't... (1 Reply)
Discussion started by: sai_2507
1 Replies

9. Homework & Coursework Questions

Environment Variables

1. The problem statement: What is the mesg value set for your environment? If it is on, how would you turn off your current session? How would you set it permanently? 3. The attempts at a solution : Read Unix The textbook. 3rd chapter has many things like environment variables and... (5 Replies)
Discussion started by: mahinkhan22
5 Replies

10. HP-UX

Environment Variables

Hi All, I need to understand following three environment variables and their usages in HP Unix. _M_ARENA_OPTS _M_CACHE_OPTS PTHREAD_SCOPE_SYSTEM How does these environment variables influence multi threaded applciation and how do we decide the value of these variables? Is there... (0 Replies)
Discussion started by: angshuman
0 Replies
RTLD(1) 						    BSD General Commands Manual 						   RTLD(1)

NAME
ld-elf.so.1, ld.so, rtld -- run-time link-editor DESCRIPTION
The ld-elf.so.1 utility is a self-contained shared object providing run-time support for loading and link-editing shared objects into a process' address space. It is also commonly known as the dynamic linker. It uses the data structures contained within dynamically linked programs to determine which shared libraries are needed and loads them using the mmap(2) system call. After all shared libraries have been successfully loaded, ld-elf.so.1 proceeds to resolve external references from both the main program and all objects loaded. A mechanism is provided for initialization routines to be called on a per-object basis, giving a shared object an oppor- tunity to perform any extra set-up before execution of the program proper begins. This is useful for C++ libraries that contain static con- structors. When resolving dependencies for the loaded objects, ld-elf.so.1 may be allowed to translate dynamic token strings in rpath and soname by set- ting -z origin option of the static linker ld(1). The following strings are recognized now: $ORIGIN Translated to the full path of the loaded object. $OSNAME Translated to the name of the operating system implementation. $OSREL Translated to the release level of the operating system. $PLATFORM Translated to the machine hardware platform. The ld-elf.so.1 utility itself is loaded by the kernel together with any dynamically-linked program that is to be executed. The kernel transfers control to the dynamic linker. After the dynamic linker has finished loading, relocating, and initializing the program and its required shared objects, it transfers control to the entry point of the program. The following search order is used to locate required shared objects: 1. DT_RPATH of the referencing object unless that object also contains a DT_RUNPATH tag 2. DT_RPATH of the program unless the referencing object contains a DT_RUNPATH tag 3. Path indicated by LD_LIBRARY_PATH environment variable 4. DT_RUNPATH of the referencing object 5. Hints file produced by the ldconfig(8) utility 6. The /lib and /usr/lib directories, unless the referencing object was linked using the ``-z nodefaultlib'' option The ld-elf.so.1 utility recognizes a number of environment variables that can be used to modify its behaviour. On 64-bit architectures, the linker for 32-bit objects recognizes all the environment variables listed below, but is being prefixed with LD_32_, for example: LD_32_TRACE_LOADED_OBJECTS. LD_DUMP_REL_POST If set, ld-elf.so.1 will print a table containing all relocations after symbol binding and relocation. LD_DUMP_REL_PRE If set, ld-elf.so.1 will print a table containing all relocations before symbol binding and relocation. LD_LIBMAP A library replacement list in the same format as libmap.conf(5). For convenience, the characters '=' and ',' can be used instead of a space and a newline. This variable is parsed after libmap.conf(5), and will override its entries. This variable is unset for set-user-ID and set-group-ID programs. LD_LIBMAP_DISABLE If set, disables the use of libmap.conf(5) and LD_LIBMAP. This variable is unset for set-user-ID and set-group-ID pro- grams. LD_ELF_HINTS_PATH This variable will override the default location of ``hints'' file. This variable is unset for set-user-ID and set-group- ID programs. LD_LIBRARY_PATH A colon separated list of directories, overriding the default search path for shared libraries. This variable is unset for set-user-ID and set-group-ID programs. LD_LIBRARY_PATH_RPATH If the variable is specified and has a value starting with any of 'y', 'Y' or '1' symbols, the path specified by LD_LIBRARY_PATH variable is allowed to override the path from DT_RPATH for binaries which does not contain DT_RUNPATH tag. For such binaries, when the variable LD_LIBRARY_PATH_RPATH is set, ``-z nodefaultlib'' link-time option is ignored as well. LD_PRELOAD A list of shared libraries, separated by colons and/or white space, to be linked in before any other shared libraries. If the directory is not specified then the directories specified by LD_LIBRARY_PATH will be searched first followed by the set of built-in standard directories. This variable is unset for set-user-ID and set-group-ID programs. LD_LIBRARY_PATH_FDS A colon separated list of file descriptor numbers for library directories. This is intended for use within capsicum(4) sandboxes, when global namespaces such as the filesystem are unavailable. It is consulted just after LD_LIBRARY_PATH. This variable is unset for set-user-ID and set-group-ID programs. LD_BIND_NOW When set to a nonempty string, causes ld-elf.so.1 to relocate all external function calls before starting execution of the program. Normally, function calls are bound lazily, at the first call of each function. LD_BIND_NOW increases the start- up time of a program, but it avoids run-time surprises caused by unexpectedly undefined functions. LD_TRACE_LOADED_OBJECTS When set to a nonempty string, causes ld-elf.so.1 to exit after loading the shared objects and printing a summary which includes the absolute pathnames of all objects, to standard output. LD_TRACE_LOADED_OBJECTS_ALL When set to a nonempty string, causes ld-elf.so.1 to expand the summary to indicate which objects caused each object to be loaded. LD_TRACE_LOADED_OBJECTS_FMT1 LD_TRACE_LOADED_OBJECTS_FMT2 When set, these variables are interpreted as format strings a la printf(3) to customize the trace output and are used by ldd(1)'s -f option and allows ldd(1) to be operated as a filter more conveniently. If the dependency name starts with string lib, LD_TRACE_LOADED_OBJECTS_FMT1 is used, otherwise LD_TRACE_LOADED_OBJECTS_FMT2 is used. The following conver- sions can be used: %a The main program's name (also known as ``__progname''). %A The value of the environment variable LD_TRACE_LOADED_OBJECTS_PROGNAME. Typically used to print both the names of programs and shared libraries being inspected using ldd(1). %o The library name. %p The full pathname as determined by rtld's library search rules. %x The library's load address. Additionally, ' ' and ' ' are recognized and have their usual meaning. LD_UTRACE If set, ld-elf.so.1 will log events such as the loading and unloading of shared objects via utrace(2). LD_LOADFLTR If set, ld-elf.so.1 will process the filtee dependencies of the loaded objects immediately, instead of postponing it until required. Normally, the filtees are opened at the time of the first symbol resolution from the filter object. FILES
/var/run/ld-elf.so.hints Hints file. /var/run/ld-elf32.so.hints Hints file for 32-bit binaries on 64-bit system. /etc/libmap.conf The libmap configuration file. /etc/libmap32.conf The libmap configuration file for 32-bit binaries on 64-bit system. SEE ALSO
ld(1), ldd(1), capsicum(4), elf(5), libmap.conf(5), ldconfig(8) BSD
June 20, 2014 BSD
All times are GMT -4. The time now is 11:03 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy