I think it worked!  I tried to the make -n install method and found this:
/usr/bin/install -c -d /usr/local/lib
./libtool --mode=install /usr/bin/install -c libsqlite3.la /usr/local/lib
/usr/bin/install -c -d /usr/local/bin
./libtool --mode=install /usr/bin/install -c sqlite3 /usr/local/bin
/usr/bin/install -c -d /usr/local/include
/usr/bin/install -c -m 0644 sqlite3.h /usr/local/include
/usr/bin/install -c -d /usr/local/lib/pkgconfig;
/usr/bin/install -c -m 0644 sqlite3.pc /usr/local/lib/pkgconfig;

So since everything about sqlite3 had *sql* in it, i just did $ su -c "rm
*sql*" for those directories.  Good as new!

On 1/21/06, Nathan Kurz <[EMAIL PROTECTED]> wrote:
>
> > 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
>



--
-TwoEyedHuman
tech support d00d at Glenkirk
www.glenkirk.org
my home: greenguy41.csoft.net
linux user 396666

Reply via email to