Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 12 Sep 2006 19:20:35 -0800
From:      "Ahmad Arafat Abdullah" <trunasuci@mail.com>
To:        freebsd-questions@freebsd.org
Subject:   Re: libm.so.3 on FreeBSD 6.1-RELEASE
Message-ID:  <20060913032035.8F0741BF287@ws1-1.us4.outblaze.com>

next in thread | raw e-mail | index | archive | help

> ----- Original Message -----
> From: "Jonathan Horne" <freebsd@dfwlp.com>
> To: freebsd-questions@freebsd.org
> Subject: Re: libm.so.3 on FreeBSD 6.1-RELEASE
> Date: Tue, 12 Sep 2006 21:23:46 -0500
>=20
>=20
> On Tuesday 12 September 2006 21:01, Ahmad Arafat Abdullah wrote:
> > Hye everyone..
> >
> > For my customer i need to install Kaspersky antivirus for mailserver
> > and for this case I'm using pkg build for version 5x.. ( no pkg for 6x =
yet
> > )
> >
> > the problem is, installation seems like successfull but when i want to =
key
> > in the key ( for antivirus verification ), then this msg appears..
> >
> >
> > freebsdmail# /usr/local/share/kav/5.5/kav4mailservers/bin/licensemanager
> > /usr/libexec/ld-elf.so.1: Shared object "libm.so.3" not found, required=
 by
> > "licensemanager"
> >
> >
> >
> > I've checked with google and also this link:
> > http://lists.freebsd.org/pipermail/freebsd-ports/2005-August/025330.html
> >
> >
> >
> > freebsdmail# uname -a
> > FreeBSD freebsdmail.mine.nu 6.1-RELEASE FreeBSD 6.1-RELEASE #0: Sun May=
  7
> > 04:42:56 UTC 2006     root@opus.cse.buffalo.edu:/usr/obj/usr/src/sys/SM=
P i386
> >
> >
> >
> > my plan is to cvsup to -p6 and see if the problem already solved or not=
..
> > but during this time, can anyone give me clue what am i missing here?
> >
> >
> > TQ
> > Arafat
> > System Engineer
>=20
> cvsuping to -p6 wil not fix the problem.  i had the exact same issue (exc=
ept
> it was a list of 6 different .so files) getting the NetBackup 5.1 agent f=
or
> UNIX to run on freebsd.  my solution was as simple as:
>=20
> ln -s /lib/libm.so.4 /lib/libm.so.2
>=20
> (NetBackup agent was looking for so.2)
>=20
> so in your case, just symlink the existing .4 to a .3, and you should be =
good
> to go.  backwards compatibility should not be an issue.
>=20
> hth,
> jonathan


TQ so much Jonathan..
I've do link the libm.so and libc.so.


freebsdmail# /usr/local/share/kav/5.5/kav4mailservers/bin/licensemanager -a=
 /home/trunasuci/
/usr/libexec/ld-elf.so.1: Shared object "libm.so.3" not found, required by =
"licensemanager"

freebsdmail# cd /lib

freebsdmail# ln -s libm.so.4 libm.so.3
freebsdmail# ls -l
total 3096
drwxr-xr-x  2 root  wheel     512 Sep  5 20:37 geom
-r--r--r--  1 root  wheel   48260 May  7 11:56 libalias.so.5
-r--r--r--  1 root  wheel   10720 May  7 11:56 libatm.so.3
-r--r--r--  1 root  wheel    8388 May  7 11:56 libbegemot.so.2
-r--r--r--  1 root  wheel  114524 May  7 11:56 libbsdxml.so.2
-r--r--r--  1 root  wheel   48472 May  7 11:56 libbsnmp.so.3
-r--r--r--  1 root  wheel  882116 May  7 11:56 libc.so.6
-r--r--r--  1 root  wheel   56276 May  7 11:56 libcam.so.3
-r--r--r--  1 root  wheel   28680 May  7 11:55 libcrypt.so.3
-r--r--r--  1 root  wheel  995056 May  7 11:57 libcrypto.so.4
-r--r--r--  1 root  wheel   18548 May  7 11:56 libdevstat.so.5
-r--r--r--  1 root  wheel   84248 May  7 11:56 libedit.so.5
-r--r--r--  1 root  wheel   12952 May  7 11:56 libgeom.so.3
-r--r--r--  1 root  wheel    7604 May  7 11:56 libgpib.so.1
-r--r--r--  1 root  wheel   22728 May  7 11:56 libipsec.so.2
-r--r--r--  1 root  wheel    5700 May  7 11:56 libipx.so.3
-r--r--r--  1 root  wheel    8304 May  7 11:56 libkiconv.so.2
-r--r--r--  1 root  wheel   21936 May  7 11:55 libkvm.so.3
lrwxr-xr-x  1 root  wheel       9 Sep 13 10:42 libm.so.3 -> libm.so.4
-r--r--r--  1 root  wheel   98120 May  7 11:55 libm.so.4
-r--r--r--  1 root  wheel   55160 May  7 11:55 libmd.so.3
-r--r--r--  1 root  wheel  256684 May  7 11:55 libncurses.so.6
-r--r--r--  1 root  wheel  179196 May  7 11:56 libreadline.so.6
-r--r--r--  1 root  wheel    5556 May  7 11:55 libsbuf.so.3
-r--r--r--  1 root  wheel    8928 May  7 11:56 libufs.so.3
-r--r--r--  1 root  wheel   43576 May  7 11:56 libutil.so.5
-r--r--r--  1 root  wheel   60672 May  7 11:56 libz.so.3

freebsdmail# /usr/local/share/kav/5.5/kav4mailservers/bin/licensemanager -a=
 /home/trunasuci/
/usr/libexec/ld-elf.so.1: Shared object "libc.so.5" not found, required by =
"licensemanager"

freebsdmail# ln -s libc.so.6 libc.so.5

freebsdmail# /usr/local/share/kav/5.5/kav4mailservers/bin/licensemanager -a=
 /home/trunasuci/********.key
Kaspersky license manager for FreeBSD 5.x. Version 5.5.10/RELEASE #11
Copyright (C) Kaspersky Lab, 1997-2005.
Portions Copyright (C) Lan Crypto
Key file /home/trunasuci/********.key has been successfully registered


yesss..
it's done.. now i'll proceed with some setup/tweaking..

TQ again :)

Arafat
System Engineer




--=20
___________________________________________________
Now you can search for products and services
http://search.mail.com




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20060913032035.8F0741BF287>