> twoeyedhuman wrote:
> > I have the latest version of sqlite3 on my debian box and I'd like
> > to uninstall it because I keep getting this error through bash:
> > sqlite3: error while loading shared libraries: libsqlite3.so.0:
> > cannot open shared obje ct file: No such file or directory I'm
> > actually running xandros linux and I just want to find where all
> > the files were installed so I can delete them manually and install
> > sqlite through a debian package.  Is this possible?

I missed the original post, so I apologize if these were already
suggested, but some possibilities for finding this out include:

1) If you installed from source, try 'make -n install' from the source
   directory.  This is simulate the 'install' command without actually
   doing anything.  Look through the results to see where things go.

2) Many Linux systems have a command called 'locate' (also called
   'slocate').  If you system has this, trying 'locate sqlite' will
   probably show you what you need to remove.

3) Linux sometimes needs the command 'ldconfig' to be run as root when
   shared libraries are updated.  It's possible that running this will
   get rid of your error and let you use the new version.

4) 'ldd' and 'strace' are useful commands for figuring out which
   shared libraries are being used and where they are located.  Trying
   'ldd /usr/local/bin/sqlite3' or 'strace sqlite3' might help you.

Good luck!

--nate

Reply via email to