logo logo

 Back to main page

The NWNX Community Forum

 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
 
new linux server needs some pointers
Goto page 1, 2  Next
 
Post new topic   Reply to topic    nwnx.org Forum Index -> Linux technical support
View previous topic :: View next topic  
Author Message
DM_Vecna



Joined: 10 Feb 2010
Posts: 37

PostPosted: Mon Jan 23, 2012 6:57    Post subject: new linux server needs some pointers Reply with quote

I am having some issues getting a new linux testing server off the ground. I have installed NWNX2 and am using ubuntu. Here is the log copy

Code:
* Loading modules...
FUNCTIONS plugin Registerred.
HASHSET plugin Registerred.
RESETPLUGIN plugin Registerred.
MNX plugin Registerred.
ERROR: dlopen: ./nwnx_odbc.so: libmysqlclient.so.15: cannot open shared object file: No such file or directory
* NWNX2 activated.
Neverwinter Nights Server
Build:8109
Copyright BioWare Corp 1998-2004

Server: Loading...
Server: Running...

Server: Loading module "Nordock Awakening"../nwnstartup.sh: line 74:  1943 Aborted                 $basepath/$server/nwserver -module "$module" -maxclients 40 -minlevel 1 -maxlevel 40 -pauseandplay 0 -pvp 2 -servervault 1 -elc 0 -ilr 1 -gametype 3 -oneparty 0 -difficulty 3 -autosaveinterval 0 -dmpassword $dm_password -servername "Richterm's Retreat - Awakening" -publicserver 1 -reloadwhenempty 0 -interactive -port 5125 "$@"
               
NWNX2lib: Init
NWNX2lib: org SetString() at 0x81f41b4, new SetString() at 0xb76e93ba
NWNX2lib: org GetObj() at 0x81f40bc, new GetObj() at 0xb76e8e22
* Parsing configuration...
NWN Extender v2.7-beta4
(c) 2004 by the APS/NWNX Linux Conversion Group
(c) 2007-2008 by virusman
Based on the Win32 version (c) 2003 by Ingmar Stieger (Papillon)
and Jeroen Broekhuizen
visit us at http://www.avlis.org


and here is a copy of the nwnstartup.sh file I am using


Code:

#!/bin/bash
# set variables
basepath=/nordock
server=awakening
dm_password=my_password

sleep 10

while [ nwn1check != 1 ] ; do

#Check to see if *.0 working directories exsist and are empty.
if [ ! -d currentgame.0 ] ; then
        mkdir currentgame.0
else
   if [ -e ./currentgame.0/* ] ; then
      rm ./currentgame.0/*
   fi
fi
if [ ! -d temp.0 ] ; then
        mkdir temp.0
else
   if [ -e ./temp.0/* ] ; then
      rm ./temp.0/*
   fi
fi

#Check to see if logs.0 directory exsists and is backed up.
if [ ! -d logs.0 ] ; then
        mkdir logs.0
else
   # archive log
   date=`date +"%m%d%y-%H%M"`
   if [ -e ./logs.0/nwserverLog1.txt ] ; then
      mv ./logs.0/nwserverLog1.txt "./log-archive/$server-$date.log"
   fi
   if [ -e ./logs.0/nwserverError1.txt ] ; then
      mv ./logs.0/nwserverError1.txt "./log-archive/$server-$date.error.log"
   fi   
fi

# get module name
# module=$(head -1 /nordock/www/nordock1.nordock.net/htdocs/dms/modulechange/modulename_epic.txt)
module="Nordock Awakening"

sleep 20

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/mysql
export LD_PRELOAD=$basepath/$server/nwnx2.so

#start the server
$basepath/$server/nwserver \
   -module "$module" \
   -maxclients 40 \
   -minlevel 1 \
   -maxlevel 40 \
   -pauseandplay 0 \
   -pvp 2 \
   -servervault 1 \
   -elc 0 \
   -ilr 1 \
   -gametype 3 \
   -oneparty 0 \
   -difficulty 3 \
   -autosaveinterval 0 \
   -dmpassword $dm_password \
   -servername "Richterm's Retreat - Awakening" \
   -publicserver 1 \
   -reloadwhenempty 0 \
   -interactive \
   -port 5125 \
   "$@"

unset LD_PRELOAD
done


In the screen utility I keep getting this same message every few seconds.

Thanks for any help!!!
Back to top
View user's profile Send private message Send e-mail
eeriegeek



Joined: 07 Jan 2008
Posts: 59

PostPosted: Mon Jan 23, 2012 8:30    Post subject: Reply with quote

Is the file libmysqlclient.so.15 in the directory /usr/lib/mysql ?
Back to top
View user's profile Send private message
elven



Joined: 28 Jul 2006
Posts: 259
Location: Germany

PostPosted: Wed Jan 25, 2012 12:05    Post subject: Reply with quote

Try
Code:
apt-get install libmysqlclient15off


If you're on 64bit and you're running without a chroot, it gets a bit more complicated. Then you need to either run your server in a a chroot, or just put the 32bit mysql lib into a directory on LD_LIBRARY_PATH. (for example nwserver/lib, not some system path).

Edit: Alternatively, you can get the latest everything (if you're feeling that featuritis really hard now) including conveniently-packaged libs by getting the latest successful build from CI.
Back to top
View user's profile Send private message
Paul R



Joined: 17 Apr 2009
Posts: 42

PostPosted: Thu Jan 26, 2012 23:20    Post subject: Reply with quote

Although it is not the actual issue be aware you are recursively adding to the LD_LIBRARY_PATH in each loop iteration and at some point it's going to go pop Smile (can't see where nwn1check is set)

Code:

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/mysql

_________________
oops
Back to top
View user's profile Send private message
DM_Vecna



Joined: 10 Feb 2010
Posts: 37

PostPosted: Sun Jan 29, 2012 22:49    Post subject: Reply with quote

Thanks for the direction everyone.

I do not seem to have that file in my lib. I am moving files over from another server and I must have missed those. However that nwnx2 I am pulling from build is quite old, the directions on the new versions using svn were a bit difficult, so I am leaning towards Elven's directions.

@elven: You mention that CI contains
Quote:
including conveniently-packaged libs
But I do not see those and am still getting errors that I am missing them though I followed your directions on downloading that package, which worked amazingly otherwise, thank you. Any pointers on getting the library files or setting them up properly?

@ Paul R: Thank you for spotting this recursive loop. Any suggestion on getting rid of this?

Thanks so much
Back to top
View user's profile Send private message Send e-mail
Paul R



Joined: 17 Apr 2009
Posts: 42

PostPosted: Mon Jan 30, 2012 1:16    Post subject: Reply with quote

No problem, the export setting of that variable can be placed outside of the loop as it only needs to be set once and is not going to cause any issues (unlike the LD_PRELOAD which as you can see is removed so the next time it goes through the loop all those mkdir/mv/rm commands work without any problems).

Something like this would be safer, not that adding a small amount to the environment like that is going to be a problem for quite some time but it is tidier:

Code:

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/mysql

while [ nwn1check != 1 ] ; do

#Check to see if *.0 working directories exsist and are empty.
if [ ! -d currentgame.0 ] ; then
        mkdir currentgame.0
else
   if [ -e ./currentgame.0/* ] ; then
      rm ./currentgame.0/*
   fi
fi
if [ ! -d temp.0 ] ; then
        mkdir temp.0
else
   if [ -e ./temp.0/* ] ; then
      rm ./temp.0/*
   fi
fi

#Check to see if logs.0 directory exsists and is backed up.
if [ ! -d logs.0 ] ; then
        mkdir logs.0
else
   # archive log
   date=`date +"%m%d%y-%H%M"`
   if [ -e ./logs.0/nwserverLog1.txt ] ; then
      mv ./logs.0/nwserverLog1.txt "./log-archive/$server-$date.log"
   fi
   if [ -e ./logs.0/nwserverError1.txt ] ; then
      mv ./logs.0/nwserverError1.txt "./log-archive/$server-$date.error.log"
   fi   
fi

# get module name
# module=$(head -1 /nordock/www/nordock1.nordock.net/htdocs/dms/modulechange/modulename_epic.txt)
module="Nordock Awakening"

sleep 20

export LD_PRELOAD=$basepath/$server/nwnx2.so

#start the server
$basepath/$server/nwserver \
   -module "$module" \
   -maxclients 40 \
   -minlevel 1 \
   -maxlevel 40 \
   -pauseandplay 0 \
   -pvp 2 \
   -servervault 1 \
   -elc 0 \
   -ilr 1 \
   -gametype 3 \
   -oneparty 0 \
   -difficulty 3 \
   -autosaveinterval 0 \
   -dmpassword $dm_password \
   -servername "Richterm's Retreat - Awakening" \
   -publicserver 1 \
   -reloadwhenempty 0 \
   -interactive \
   -port 5125 \
   "$@"

unset LD_PRELOAD
done


Going back to the original issue, did you install the MySQL client package as mentioned above?

You can check if the library is found using the ldd command against any binary or shared object. Like this on my old dev server:

Code:

$ ldd nwnx2_odbc.so
        linux-gate.so.1 =>  (0xb772e000)
        libmysqlclient.so.15 => not found
        libz.so.1 => /lib/libz.so.1 (0xb76f5000)
        libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0xb75fe000)
        libm.so.6 => /lib/tls/i686/cmov/libm.so.6 (0xb75d8000)
        libgcc_s.so.1 => /lib/libgcc_s.so.1 (0xb75b9000)
        libc.so.6 => /lib/tls/i686/cmov/libc.so.6 (0xb745f000)
        /lib/ld-linux.so.2 (0xb772f000)



As it is not found this is either something to do with the environment, the part that setting the LD_LIBRARY_PATH sorts out or the package is not installed:

Code:

$ locate libmysqlclient.so.15
$


The snag is my old dev server doesn't have that installed any more as it was upgraded.

What release of Ubuntu are you using and as mentioned before is it 64 bit?



In my case which is running Lucid 32 bit there are workarounds for installing that version such as the Hardy release from here

You can download and install it like this:

Code:

root@power:/usr/local/nwn/module# wget http://security.ubuntu.com/ubuntu/pool/main/m/mysql-dfsg-5.0/libmysqlclient15off_5.0.51a-3ubuntu5.8_i386.deb
--2012-01-29 22:58:17--  http://security.ubuntu.com/ubuntu/pool/main/m/mysql-dfsg-5.0/libmysqlclient15off_5.0.51a-3ubuntu5.8_i386.deb
Resolving security.ubuntu.com... 91.189.92.167, 91.189.92.166
Connecting to security.ubuntu.com|91.189.92.167|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1832772 (1.7M) [application/x-debian-package]
Saving to: `libmysqlclient15off_5.0.51a-3ubuntu5.8_i386.deb'

100%[=================================================================================>] 1,832,772    396K/s   in 4.6s

2012-01-29 22:58:22 (392 KB/s) - `libmysqlclient15off_5.0.51a-3ubuntu5.8_i386.deb' saved [1832772/1832772]

root@power:/usr/local/nwn/module# dpkg -i libmysqlclient15off_5.0.51a-3ubuntu5.8_i386.deb
Selecting previously deselected package libmysqlclient15off.
(Reading database ... 330405 files and directories currently installed.)
Unpacking libmysqlclient15off (from libmysqlclient15off_5.0.51a-3ubuntu5.8_i386.deb) ...
Setting up libmysqlclient15off (5.0.51a-3ubuntu5.8) ...

Processing triggers for libc-bin ...
ldconfig deferred processing now taking place


Now ldd is fine.

Code:

root@power:/usr/local/nwn/module# ldd nwnx_odbc.so
        linux-gate.so.1 =>  (0xb775c000)
        libmysqlclient.so.15 => /usr/lib/libmysqlclient.so.15 (0xb7558000)
        libz.so.1 => /lib/libz.so.1 (0xb7543000)
        libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0xb744c000)
        libm.so.6 => /lib/tls/i686/cmov/libm.so.6 (0xb7426000)
        libgcc_s.so.1 => /lib/libgcc_s.so.1 (0xb7407000)
        libc.so.6 => /lib/tls/i686/cmov/libc.so.6 (0xb72ad000)
        libpthread.so.0 => /lib/tls/i686/cmov/libpthread.so.0 (0xb7294000)
        libcrypt.so.1 => /lib/tls/i686/cmov/libcrypt.so.1 (0xb7261000)
        libnsl.so.1 => /lib/tls/i686/cmov/libnsl.so.1 (0xb724a000)
        /lib/ld-linux.so.2 (0xb775d000)
root@power:/usr/local/nwn/module#


If you have the library installed and it is somewhere else then you could either copy it (and recreate any softlinks), use the LD_LIBRARY_PATH (much safer) or use the ldconfig command (update the /etc/ld.so.conf file and run the command to update the /etc/ld.so.cache file).
_________________
oops
Back to top
View user's profile Send private message
DM_Vecna



Joined: 10 Feb 2010
Posts: 37

PostPosted: Thu Feb 02, 2012 20:19    Post subject: Reply with quote

Thanks for the help Paul

Yes, I did install the MySQL client package as mentioned above. I am now finding that library, I think the issue was that the library was in the wrong directory but I have fixed that.

However now I am getting a new error:
ERROR: dlopen: ./nwnx_odbc_mysql.so: ./nwnx_odbc_mysql.so: undefined symbol: _ZN7CSQLiteC1Ev

any thoughts?
Back to top
View user's profile Send private message Send e-mail
Paul R



Joined: 17 Apr 2009
Posts: 42

PostPosted: Mon Feb 13, 2012 22:08    Post subject: Reply with quote

Hi, sorry for the delay RL work stuff keeping me busy and not been on the site for ages. An undefined symbol usually means there is a version mismatch. The symbol reference that was noted when the object was compiled is no longer the same.

There are other possible causes such as the dynamically liked libraries used by that library are missing or out of date.


Now that you have the package installed (which one did you install btw?) try make'ing it again and see if that works.
_________________
oops
Back to top
View user's profile Send private message
DM_Vecna



Joined: 10 Feb 2010
Posts: 37

PostPosted: Thu Feb 16, 2012 18:19    Post subject: Reply with quote

No worries about the delay. I appreciate any and all help. I myself have gotten bogged down with work but I start a three day weekend tomorrow, woohoo! and am planning on getting this up and running.

I installed both packages, I think that may be the problem. Not to mention my config file is from an older version. I am going to backup my config files, clean out my directories of all nwnx files, and re-install, then reapply the proper settings to the new config files. Hopefully that will fix any lingering errors. Thanks for pointing me in the right direction. I will post here my results.
Back to top
View user's profile Send private message Send e-mail
elven



Joined: 28 Jul 2006
Posts: 259
Location: Germany

PostPosted: Thu Feb 16, 2012 18:35    Post subject: Reply with quote

DM_Vecna wrote:
Thanks for the direction everyone.

I do not seem to have that file in my lib. I am moving files over from another server and I must have missed those. However that nwnx2 I am pulling from build is quite old, the directions on the new versions using svn were a bit difficult, so I am leaning towards Elven's directions.

@elven: You mention that CI contains
Quote:
including conveniently-packaged libs
But I do not see those and am still getting errors that I am missing them though I followed your directions on downloading that package, which worked amazingly otherwise, thank you. Any pointers on getting the library files or setting them up properly?


The libraries I am talking about can be found here: click

Get the nwnx plugin that matches your database, rename it to nwnx_odmbc.so (important), and add the libraries in lib/<db> to your LD_LIBRARY_PATH. That should do. Note: those are for core-2.8, not trunk.
Back to top
View user's profile Send private message
DM_Vecna



Joined: 10 Feb 2010
Posts: 37

PostPosted: Fri Feb 17, 2012 6:02    Post subject: Reply with quote

Could someone explain or provide a link as to what core and trunk are Razz
Back to top
View user's profile Send private message Send e-mail
elven



Joined: 28 Jul 2006
Posts: 259
Location: Germany

PostPosted: Fri Feb 17, 2012 11:50    Post subject: Reply with quote

trunk is the feature-stable version with very few non-bugfix changes.

core-2.8 is where all the development happens.

You usually want to run core-2.8 unless you don't care about all the cool plugins. ;)
Back to top
View user's profile Send private message
DM_Vecna



Joined: 10 Feb 2010
Posts: 37

PostPosted: Fri Feb 17, 2012 19:35    Post subject: Reply with quote

Thanks for the help elven

I uninstalled all the packages and reinstalled them. I used the library found here http://ci.swordcoast.net/job/nwnx2-linux/lastSuccessfulBuild/artifact/branches/core-2.8/plugins/odmbc/lib/mysql/

But am still getting this error

ERROR: dlopen: ./nwnx_odbc_mysql.so: /usr/lib/libmysqlclient.so.15: version `libmysqlclient_15' not found (required by ./nwnx_odbc_mysql.so)

I wonder if I can ask you a question by email. If that is possible please email me at vecna@nwnsmith.com
Back to top
View user's profile Send private message Send e-mail
elven



Joined: 28 Jul 2006
Posts: 259
Location: Germany

PostPosted: Fri Feb 17, 2012 19:45    Post subject: Reply with quote

Feel free to mail me at le@e-ix.net.

Gonna answer publicly anyways, in case someone else has similar issues:

That error indicates it's using the systemwide library (in /usr/lib) installed by your debian/ubuntu package (probably version 16). Check that your LD_LIBRARY_PATH is set up correctly to point at the library taken from CI.

You can paste the relevant parts of your startup script and lib locations here if you can't get it working.
Back to top
View user's profile Send private message
DM_Vecna



Joined: 10 Feb 2010
Posts: 37

PostPosted: Fri Feb 17, 2012 20:47    Post subject: Reply with quote

Thanks for the help elven. I tried a few changes but no luck. Below is my startup script

name: nwnstartup.sh

Code:
#!/bin/bash
# set variables
basepath=/nordock
server=awakening
dm_password=password

sleep 10

while [ nwn1check != 1 ] ; do

#Check to see if *.0 working directories exsist and are empty.
if [ ! -d currentgame.0 ] ; then
        mkdir currentgame.0
else
   if [ -e ./currentgame.0/* ] ; then
      rm ./currentgame.0/*
   fi
fi
if [ ! -d temp.0 ] ; then
        mkdir temp.0
else
   if [ -e ./temp.0/* ] ; then
      rm ./temp.0/*
   fi
fi

#Check to see if logs.0 directory exsists and is backed up.
if [ ! -d logs.0 ] ; then
        mkdir logs.0
else
   # archive log
   date=`date +"%m%d%y-%H%M"`
   if [ -e ./logs.0/nwserverLog1.txt ] ; then
      mv ./logs.0/nwserverLog1.txt "./log-archive/$server-$date.log"
   fi
   if [ -e ./logs.0/nwserverError1.txt ] ; then
      mv ./logs.0/nwserverError1.txt "./log-archive/$server-$date.error.log"
   fi   
fi

# get module name
module="Nordock Awakening"

sleep 20

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/mysql
export LD_PRELOAD=$basepath/$server/nwnx2.so

#start the server
$basepath/$server/nwserver \
   -module "$module" \
   -maxclients 40 \
   -minlevel 1 \
   -maxlevel 40 \
   -pauseandplay 0 \
   -pvp 2 \
   -servervault 1 \
   -elc 0 \
   -ilr 1 \
   -gametype 3 \
   -oneparty 0 \
   -difficulty 3 \
   -autosaveinterval 0 \
   -dmpassword $dm_password \
   -servername "Richterm's Retreat - Awakening" \
   -publicserver 1 \
   -reloadwhenempty 0 \
   -interactive \
   -port 5125 \
   "$@"

unset LD_PRELOAD
done



here is a list of the contents of /usr/lib

Code:
accountsservice                    liblaunchpad-integration-3.0.so.1.0.0
apache2                            liblockfile.so.1
apr-util-1                         liblockfile.so.1.0
apt                                libltdl.so.7
aspell                             libltdl.so.7.3.0
byobu                              liblwres.so.60
cgi-bin                            liblwres.so.60.0.1
command-not-found                  liblzma.so.2
ConsoleKit                         liblzma.so.2.0.0
coreutils                          libmagic.so.1
crda                               libmagic.so.1.0.0
dbus-1.0                           libmcrypt.so.4
d-conf                             libmcrypt.so.4.4.8
default.sfx                        libmenu.so.5
dpkg                               libmenu.so.5.9
e2initrd_helper                    libmenuw.so.5
eject                              libmenuw.so.5.9
emacsen-common                     libmysqlclient.so
enchant                            libmysqlclient.so.15
gcc                                libmysqlclient.so.16
gio                                libneon-gnutls.so.27
girepository-1.0                   libneon-gnutls.so.27.2.6
glib-networking                    libnewt.so.0.52
gnupg                              libnewt.so.0.52.11
grub                               libnfnetlink.so.0
grub-legacy                        libnfnetlink.so.0.2.0
gstreamer-0.10                     libnl-cli.so.3
gstreamer0.10                      libnl-cli.so.3.0.0
gtk-3.0                            libnl-genl.so.3
i386-linux-gnu                     libnl-genl.so.3.0.0
initramfs-tools                    libnl-nf.so.3
ispell                             libnl-nf.so.3.0.0
klibc                              libnl-route.so.3
language-selector                  libnl-route.so.3.0.0
libaccountsservice.so.0            libnl.so.3
libaccountsservice.so.0.0.0        libnl.so.3.0.0
libapr-1.so.0                      libpanel.so.5
libapr-1.so.0.4.5                  libpanel.so.5.9
libaprutil-1.so.0                  libpanelw.so.5
libaprutil-1.so.0.3.12             libpanelw.so.5.9
libapt-inst.so.1.3                 libpeas-1.0
libapt-inst.so.1.3.0               libpeas-1.0.so.0
libapt-pkg.so.4.11                 libpeas-1.0.so.0.200.0
libapt-pkg.so.4.11.0               libpeas-gtk-1.0.so.0
libaspell.so.15                    libpeas-gtk-1.0.so.0.200.0
libaspell.so.15.1.4                libpolkit-gobject-1.so.0
libasprintf.so.0                   libpolkit-gobject-1.so.0.0.0
libasprintf.so.0.0.0               libproxy
libbind9.so.60                     libproxy.so.0
libbind9.so.60.0.4                 libproxy.so.0.0.0
libboost_iostreams.so.1.46.1       libpspell.so.15
libcanberra-0.28                   libpspell.so.15.1.4
libcanberra-gtk3.so.0              libpyglib-2.0-python2.6.so.0
libcanberra-gtk3.so.0.1.8          libpyglib-2.0-python2.6.so.0.0.0
libcanberra.so.0                   libpyglib-2.0-python2.7.so.0
libcanberra.so.0.2.5               libpyglib-2.0-python2.7.so.0.0.0
libcap-ng.so.0                     libpyglib-gi-2.0-python2.6.so
libcap-ng.so.0.0.0                 libpyglib-gi-2.0-python2.6.so.0
libcrypto.so.0.9.8                 libpyglib-gi-2.0-python2.6.so.0.0.0
libcwidget.so.3                    libpyglib-gi-2.0-python2.7.so
libcwidget.so.3.0.0                libpyglib-gi-2.0-python2.7.so.0
libdns.so.69                       libpyglib-gi-2.0-python2.7.so.0.0.0
libdns.so.69.1.2                   libpython2.7.so.1
libelf-0.152.so                    libpython2.7.so.1.0
libelf.so.1                        libsigc-2.0.so.0
libenchant.so.1                    libsigc-2.0.so.0.0.0
libenchant.so.1.6.0                libsoup-2.4.so.1
libept.so.1                        libsoup-2.4.so.1.4.0
libept.so.1.0.5                    libssl.so.0.9.8
libexslt.so.0                      libsvn_auth_gnome_keyring-1.so.1
libexslt.so.0.8.15                 libsvn_auth_gnome_keyring-1.so.1.0.0
libfontenc.so.1                    libsvn_auth_kwallet-1.so.1
libfontenc.so.1.0.0                libsvn_auth_kwallet-1.so.1.0.0
libform.so.5                       libsvn_client-1.so.1
libform.so.5.9                     libsvn_client-1.so.1.0.0
libformw.so.5                      libsvn_delta-1.so.1
libformw.so.5.9                    libsvn_delta-1.so.1.0.0
libfribidi.so.0                    libsvn_diff-1.so.1
libfribidi.so.0.3.1                libsvn_diff-1.so.1.0.0
libgailutil-3.so.0                 libsvn_fs-1.so.1
libgailutil-3.so.0.0.0             libsvn_fs-1.so.1.0.0
libgccpp.so.1                      libsvn_fs_base-1.so.1
libgccpp.so.1.0.3                  libsvn_fs_base-1.so.1.0.0
libgc.so.1                         libsvn_fs_fs-1.so.1
libgc.so.1.0.3                     libsvn_fs_fs-1.so.1.0.0
libgdk-3.so.0                      libsvn_fs_util-1.so.1
libgdk-3.so.0.200.0                libsvn_fs_util-1.so.1.0.0
libgd.so.2                         libsvn_ra-1.so.1
libgd.so.2.0.0                     libsvn_ra-1.so.1.0.0
libGeoIP.so.1                      libsvn_ra_dav-1.so.1
libGeoIP.so.1.4.8                  libsvn_ra_local-1.so.1
libGeoIPUpdate.so.0                libsvn_ra_local-1.so.1.0.0
libGeoIPUpdate.so.0.0.0            libsvn_ra_neon-1.so.1
libgirepository-1.0.so.1           libsvn_ra_neon-1.so.1.0.0
libgirepository-1.0.so.1.0.0       libsvn_ra_svn-1.so.1
libgmp.so.10                       libsvn_ra_svn-1.so.1.0.0
libgmp.so.10.0.1                   libsvn_repos-1.so.1
libgpm.so.2                        libsvn_repos-1.so.1.0.0
libgpm.so.2.0.0                    libsvn_subr-1.so.1
libgstapp-0.10.so.0                libsvn_subr-1.so.1.0.0
libgstapp-0.10.so.0.24.0           libsvn_wc-1.so.1
libgstaudio-0.10.so.0              libsvn_wc-1.so.1.0.0
libgstaudio-0.10.so.0.24.0         libt1.so.5
libgstbase-0.10.so.0               libt1.so.5.1.2
libgstbase-0.10.so.0.29.0          libt1x.so.5
libgstcdda-0.10.so.0               libt1x.so.5.1.2
libgstcdda-0.10.so.0.24.0          libtic.so.5
libgstcheck-0.10.so.0              libtic.so.5.9
libgstcheck-0.10.so.0.29.0         libticw.so.5
libgstcontroller-0.10.so.0         libticw.so.5.9
libgstcontroller-0.10.so.0.29.0    libusb-0.1.so.4
libgstdataprotocol-0.10.so.0       libwebkitgtk-3.0.so.0
libgstdataprotocol-0.10.so.0.29.0  libwebkitgtk-3.0.so.0.7.3
libgstfft-0.10.so.0                libxapian.so.22
libgstfft-0.10.so.0.24.0           libxapian.so.22.3.0
libgstinterfaces-0.10.so.0         libXfont.so.1
libgstinterfaces-0.10.so.0.24.0    libXfont.so.1.4.1
libgstnet-0.10.so.0                libxml2.so.2
libgstnet-0.10.so.0.29.0           libxml2.so.2.7.8
libgstnetbuffer-0.10.so.0          libXmuu.so.1
libgstnetbuffer-0.10.so.0.24.0     libXmuu.so.1.0.0
libgstpbutils-0.10.so.0            libXpm.so.4
libgstpbutils-0.10.so.0.24.0       libXpm.so.4.11.0
libgstreamer-0.10.so.0             libxslt.so.1
libgstreamer-0.10.so.0.29.0        libxslt.so.1.1.26
libgstriff-0.10.so.0               libyelp.so.0
libgstriff-0.10.so.0.24.0          libyelp.so.0.0.0
libgstrtp-0.10.so.0                linux-boot-probes
libgstrtp-0.10.so.0.24.0           locale
libgstrtsp-0.10.so.0               man-db
libgstrtsp-0.10.so.0.24.0          memtest86+
libgstsdp-0.10.so.0                mime
libgstsdp-0.10.so.0.24.0           mysql
libgsttag-0.10.so.0                notification-daemon
libgsttag-0.10.so.0.24.0           nwnx_odmbc.so
libgstvideo-0.10.so.0              openssh
libgstvideo-0.10.so.0.24.0         os-prober
libgtk-3-0                         os-probes
libgtk-3.so.0                      p7zip
libgtk-3.so.0.200.0                perl
libgtksourceview-3.0.so.0          perl5
libgtksourceview-3.0.so.0.0.0      php5
libhunspell-1.2.so.0               pkgconfig
libhunspell-1.2.so.0.0.0           pm-utils
libicudata.so.44                   pppd
libicudata.so.44.2                 pt_chown
libicui18n.so.44                   pyshared
libicui18n.so.44.2                 python2.6
libicuio.so.44                     python2.7
libicuio.so.44.2                   python3
libicule.so.44                     rsyslog
libicule.so.44.2                   sasl2
libiculx.so.44                     sftp-server
libiculx.so.44.2                   smart
libicutest.so.44                   sse2
libicutest.so.44.2                 ssl
libicutu.so.44                     sudo
libicutu.so.44.2                   tasksel
libicuuc.so.44                     tc
libicuuc.so.44.2                   udev
libisccc.so.60                     update-manager
libisccc.so.60.0.0                 upstart
libisccfg.so.62                    valgrind
libisccfg.so.62.0.0                w3m
libisc.so.62                       webkitgtk-3.0-0
libisc.so.62.1.1                   X11
liblaunchpad-integration-3.0.so.1
Back to top
View user's profile Send private message Send e-mail
Display posts from previous:   
Post new topic   Reply to topic    nwnx.org Forum Index -> Linux technical support All times are GMT + 2 Hours
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group