On 3/4/07, aaron smith <[EMAIL PROTECTED]> wrote:
I'm somewhatenew to the linux world. I'm running a dedicated CenteOS box. I'm trying to get sqlite3 installed. I've downloaded this binary http://www.sqlite.org/sqlite-3.3.13.so.gz. gunzip it. I see an sql.x.x.x.sofile. What do I do with that? if I try to execute it I get s segmentation fault.
A .so file is similar to a windows DLL, so you can't execute it, only use it from your programs. What you need is either the sqlite binary or the sqlite source and compile it yourself. What you are trying to do? Your distribution should already have some pre-made package you can download to install it. If I'm not mistaken CentOS uses RPM as it's package manager, and if I remember correctly, yast uses SQLite internally, so maybe it is already installed? Regards, ~Nuno Lucas ----------------------------------------------------------------------------- To unsubscribe, send email to [EMAIL PROTECTED] -----------------------------------------------------------------------------

