![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Advanced & Expert Users Expert-to-Expert. Learn advanced UNIX, UNIX commands, Linux, Operating Systems, System Administration, Programming, Shell, Shell Scripts, Solaris, Linux, HP-UX, AIX, OS X, BSD. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Login error | karthikn7974 | Post Here to Contact Site Administrators and Moderators | 2 | 05-01-2008 05:40 AM |
| login error as root | gini | SUN Solaris | 1 | 12-16-2006 10:26 AM |
| Login Error 3004-304 | dino_bekas | AIX | 0 | 03-14-2005 11:57 PM |
| login error after sys-unconfig, errno = 13 | roing | UNIX for Dummies Questions & Answers | 14 | 02-08-2004 11:25 AM |
| login error(can not set process env.) | amit | UNIX for Advanced & Expert Users | 5 | 12-23-2001 04:39 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Login error....
We have a situation where one of my users log's into my Solaris box and gets the followin error.....
rsh marvin Last login: Tue Jun 28 07:28:18 from lvie450 ld.so.1: whoami: fatal: libgen.so.1: can't open file: errno=2 Killed /home/username @marvin> Anyone have any idea? Frank |
|
|||||
|
Is it just the one user that is facing problems? From the error it seems that the whoami command is trying to access either the ld.so.1 or the libgen.so.1 library and not finding them. (errno=2 is ENOENT -> file not found).
You can provide a program with library information using the LD_LIBRARY_PATH environment variable. Get the locations of both these libraries using the find command and add the following lines in the user's login files: if using sh/ksh/bash, in $HOME/.profile LD_LIBRARY_PATH=$LD_LIBRARY_PATH:<put in the directories where you found the library files in a ':' seperated fashion> export LD_LIBRARY_PATH if using csh/tcsh, in $HOME/.login setenv LD_LIBRARY_PATH "$LD_LIBRARY_PATH:<put in the directories where you found the library files in a ':' seperated fashion>" Hope this helps! Cheers! P.S. Just found a site. Some info about LD_LIBRARY_PATH: go here . Last edited by blowtorch; 06-30-2005 at 12:36 PM.. |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|