Forum Moderators: phranque
will chown web to wally as part of install
will chgrp web to wally as part of install
/usr/libexec/ld-elf.so.1: Shared object "libc.so.3" not found
ERROR: / installation failed
Hit enter to continue
Exiting due to an error! Please fix the error and try again.
I am using freebsd 4.8, apache 1.3 server, and I have:
/usr/libexec/ld-elf.so.1
/usr/lib/libc.so
/usr/lib/libc.so
/usr/lib/libc.so.4
I can't figure out how or where to get "libc.so.3" and then to get in /usr/libexec/ld-elf.so.1. I'm fairly new at this and any assistance provided would be greatly appreciated as I have read and read but no answers to this? Thanks. Oh yea this is a virtual server and supposedly it's ready and supposed to be there.
> I am using freebsd 4.8
I'm assuming you haven't cvsup'ed to the latest 4.x-RELEASE? If not, look at [freebsd.org ]
Read the whole thing, and update your source, or if this server is unimportant to you, download and burn the latest 4.10 or 5.3 and install.
That's your best bet, to update everything, since 4.8 was released some time ago, and is relatively out-of-sync.
The other problem is that whatever you're trying to install is specifically looking for libc.so.3, and not libc.so, which usually means that it's not tested for anything other than libc.so.3. That being the case, what I'm about to suggest may screw up whatever program you're running to a screaming halt. The easiest way to test it out to see if it'll work:
ln -s /lib/libc.so /usr/lib/libc.so.3
ldconfig That may or may not work for you. Try it out, see what happens.
Oh, and call your hosting company, and tell them what you're running into. If it's something that's supposed to be a part of the package you get, then they should fix it for you.
NameVirtualHost 192.168.1.1:80
<VirtualHost 192.168.1.1:80>
ServerName dav.example.com
User dav-httpd
DAVLockDB /var/apache/DAVLock
<Location />
DAV on
</Location>
(other directives here)
</VirtualHost>
<VirtualHost 192.168.1.1:80>
ServerName www.example.com
ServerAlias example.com
User www
(other directives here)
</VirtualHost>
All my questions to them come telling me I'm the sysadmin and to deal with it
At this risk of sounding like a smartass, they're right; you get what you pay for. I pay a monthly fee for my own server, and knew going in that the company providing it offered minimal support. That's ok with me, that's all I needed. If you need a managed server, that's probably what you should buy. Or, pay someone to manage the server for you (that will, in the long run, likely be far more expensive than simply buying a managed server). I'm all for learning, and if you want to use this as an opportunity to do so, more power to you. Just don't complain when you get what you pay for. ;)
[freebsd.org ]
Read the whole thing. It will show you how to use CVSup to maintain your ports and your base system.
The Handbook is your friend [freebsd.org]