- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- /etc/SHLIB
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2003 04:03 AM
03-12-2003 04:03 AM
/etc/SHLIB
This is occuring without problem for PATH.
However, what I set up for SHLIB_PATH is not being picked up by any user. I noticed that in /etc/profile, there's some code to explicitly EXPORT the value for MANPATH, so I added a similar section for SHLIB_PATH. This also seems to fail; i.e. both PATH and MANPATH are picked up from the files, but SHLIB_path aren't.
Am I doing something wrong or not understanding something.
Shouldn't the value from the
/etc/SHLIB_PATH file be picked up as the global user default?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2003 04:09 AM
03-12-2003 04:09 AM
Re: /etc/SHLIB
export PATH=`cat /etc/PATH`
export MANPATH=`cat /etc/MANPATH`
It seems to me you might have to do the same with SHLIB_PATH?
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2003 04:14 AM
03-12-2003 04:14 AM
Re: /etc/SHLIB
please post your /etc/profile
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2003 04:25 AM
03-12-2003 04:25 AM
Re: /etc/SHLIB
I don't think I have ever heard that SHLIB_PATH should behave as a global template:
I've always seen it used as a template *that would be called in /etc/profile*:
# Set SHLIB_PATH to the contents of /etc/SHLIB_PATH , if it exists.
if [ -r /etc/SHLIB_PATH ]
then
SHLIB_PATH=`cat /etc/SHLIB_PATH`
fi
export SHLIB_PATH
If you're using csh, you may want to use it in /etc/csh.login:
if ( -r /etc/MANPATH ) then
setenv MANPATH `cat /etc/MANPATH`
endif
Cheers,
FiX
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2003 07:04 AM
03-12-2003 07:04 AM
Re: /etc/SHLIB
picking up the value of SHLIB_PATH. If I telnet directly into the system and use sh or similar, then it works OK.
So I should change my question to what is the dtterm equivalent of profile; is it .dtprofile?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2003 07:10 AM
03-12-2003 07:10 AM
Re: /etc/SHLIB
Here's what we use in .dtprofile:
DTSOURCEPROFILE=true
. /etc/profile;
. $HOME/.profile;
. /etc/vueprofile
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2003 07:41 AM
03-12-2003 07:41 AM
Re: /etc/SHLIB
There are options in CDE
1)make for the local user a .Xdefaults file with
*loginShell: true
2)Machine wide enable the "loginShell" resource for the terminal emulators by creating sys.resources (chmod 644) in
/etc/dt/config/C/ containing: *loginShell: True
Steve Steel