On 19:44:00 Nov 08, Jake Conk wrote: > I rebooted my server and now I get this error when I try to ssh: > > > Last login: Thu Nov 8 19:40:00 2007 from 192.168.10.246 > OpenBSD 4.1 (GENERIC) #0: Thu Sep 13 18:41:29 PDT 2007 > > Welcome to OpenBSD: The proactively secure Unix-like operating system. > > Please use the sendbug(1) utility to report bugs in the system. > Before reporting a bug, please try to reproduce it with the latest > version of the code. With bug reports, please try to ensure that > enough information to reproduce the problem is enclosed, and if a > known fix for it exists, include that as well. > > -bash: can't load library 'libintl.so.3.0' > Connection to 192.168.10.2 closed. > > > Why can't it load libintl? What causes this with a simple reboot?!??!
Do a ldd and see if it can pick up the symbols from the aforementioned shared library. $ ldd `which bash` The best option for any shell would be a statically linked one. OpenBSD ksh has nearly all the cool things bash has... Anyway the choice is yours. You can try manually running ldconfig or simply rebooting. Best, Girish

