|
|
Choosing A Webhost: |
SQSH can't load libct.so.1: msg#00031db.tds.freetds
I am having a SQSH problem that I just can't figure out. The box is running Mandrake Linux 9.1. FreeTDS itself seems to be fine as I can connect to the desired servers using TSQL. It seems that the install of SQSH 2.1 goes smoothly as well. Auto configure even gets the FreeTDS libraries listed in the src/Makefile. But when I run sqsh I get the following error: sqsh: error while loading shared libraries: libct.so.1: cannot open shared object file: No such file or directory I have included the whole install process below in case someone sees something that I am missing because from everything I can see it should work. [root@testbox sqsh-2.1]# SYBASE=/usr/local [root@testbox sqsh-2.1]# export SYBASE [root@testbox sqsh-2.1]# env $SYBASE env: /usr/local: Permission denied [root@testbox sqsh-2.1]# ./configure creating cache ./config.cache checking host system type... i686-pc-linux-gnu checking for gcc... gcc checking whether the C compiler (gcc ) works... yes checking whether the C compiler (gcc ) is a cross-compiler... no checking whether we are using GNU C... yes checking whether gcc accepts -g... yes checking how to run the C preprocessor... gcc -E checking for POSIXized ISC... no checking whether gcc supports volatile keyword... yes checking Open Client installation... /usr/local checking Open Client libraries... -lct -ltds checking Open Client needs net libraries... no (version FreeTDS) checking Open Client OS libraries... -ldl -lm checking for ANSI C header files... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking for stropts.h... yes checking for memory.h... yes checking for stdlib.h... yes checking for time.h... yes checking for sys/time.h... yes checking for sys/types.h... yes checking for string.h... yes checking for strings.h... yes checking for fcntl.h... yes checking for unistd.h... yes checking for errno.h... yes checking for limits.h... yes checking for sys/param.h... yes checking for crypt.h... yes checking for shadow.h... yes checking for working const... yes checking for mode_t... yes checking for pid_t... yes checking for uid_t in sys/types.h... yes checking return type of signal handlers... void checking for sigaction... yes checking for strcasecmp... yes checking for strerror... yes checking for cftime... no checking for strftime... yes checking for memcpy... yes checking for memmove... yes checking for localtime... yes checking for timelocal... yes checking for strchr... yes checking for gettimeofday... yes checking for get_process_stats... no checking for crypt... no checking for poll... yes checking for sigsetjmp... yes checking signal behaviour... BSD checking for a BSD compatible install... /usr/bin/install -c updating cache ./config.cache creating ./config.status creating Makefile creating src/Makefile creating scripts/install.sh creating scripts/make_wrapper.sh creating src/config.h Here are the pertinant lines from src/Makefile: ----:---F1 *scratch* (Fundamental)--L1--All------------------------------------------------------ -------------------------- Loading disp-table...done File Edit Options Buffers Tools Makefile Help # Generated automatically from Makefile.in by configure. # # Makefile.in,v 1.4 1996/02/15 02:18:28 gray Exp # # The following list of sqshrc files will be executed by sqsh upon # startup. This allows for system-wide defaults to be set in a # common directory. If you don't want a global sqshrc just comment # out SQSHRC_GLOBAL, below. SQSHRC_GLOBAL = /usr/local/etc/sqshrc SQSHRC_PATH = "$(SQSHRC_GLOBAL):$${HOME}/.sqshrc" # The following variables are configurable by the user. Typically # these include things that GNU autoconf has a little trouble # figuring out for itself. SYBASE_OCOS = /usr/local SYBASE_INCDIR = -I$(SYBASE_OCOS)/include SYBASE_LIBDIR = -L$(SYBASE_OCOS)/lib # # The following set of CT-LIB libraries were determined automatically # by 'configure'. For most systems configure looks up the required # libraries by looking at the name of the OS (although this doesn't # mean it got them right), however if the line below ends with the # word "Guess", then 'configure' didn't have an entry for your operating # system and it took a best guess to figure out which libraries you # need. In either case, there may be problems, so look this line over # and if it doesn't work, compare it to the libraries located in # $SYBASE/samples/ctlibrary. # # The listings below show suggested libraries for Operating Systems # that frequently fail to be recognized by 'configure': # # SCO: -lblk -lct -lcs -lcomn -ltcl -ltli -lnsl_s -lintl -m -lsocket # Dynix: -lblk -lct -lcs -lcomn -ltcl -ltli -lnsl -lintl -lm -lseq # SYBASE_LIBS = -lct -ltds -ldl -lm # # If you have the GNU readline library available, uncomment the # following definitions and make sure the lib directory and # include directories are correct. # DEF_READLINE = # -DUSE_READLINE READLINE_LIBDIR = # -I/usr/local/lib READLINE_INCDIR = # -I/usr/local/include # # On most systems, -lreadline and -lcurses is enough to link with # the readline library. However on a few systems you may need to # link with termcap rather than curses, and on other systems (such # as certain Solaris installations), you may need to link in -lucb # to get around some BSD specifics dealing with the termcap library. --1-:---F1 Makefile (Makefile)--L1--Top--------------------------------------------------------- -------------------------- [root@testbox sqsh-2.1]# make make[1]: Entering directory `/root/sqsh-2.1/src' gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_alias.o cmd_alias.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_bcp.o cmd_bcp.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_buf.o cmd_buf.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_connect.o cmd_connect.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_do.o cmd_do.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_echo.o cmd_echo.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_exit.o cmd_exit.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_for.o cmd_for.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_func.o cmd_func.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_go.o cmd_go.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_help.o cmd_help.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_history.o cmd_history.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_if.o cmd_if.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_input.o cmd_input.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_jobs.o cmd_jobs.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_kill.o cmd_kill.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_lock.o cmd_lock.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_loop.o cmd_loop.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_misc.o cmd_misc.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_read.o cmd_read.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_reconnect.o cmd_reconnect.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_redraw.o cmd_redraw.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_reset.o cmd_reset.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_return.o cmd_return.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_rpc.o cmd_rpc.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_set.o cmd_set.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_shell.o cmd_shell.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_show.o cmd_show.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_sleep.o cmd_sleep.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_wait.o cmd_wait.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_warranty.o cmd_warranty.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o cmd_while.o cmd_while.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o var_ctlib.o var_ctlib.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o var_date.o var_date.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o var_debug.o var_debug.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o var_dsp.o var_dsp.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o var_hist.o var_hist.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o var_misc.o var_misc.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o var_passwd.o var_passwd.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o var_readline.o var_readline.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o var_thresh.o var_thresh.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o dsp.o dsp.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o dsp_bcp.o dsp_bcp.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o dsp_conv.o dsp_conv.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o dsp_desc.o dsp_desc.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o dsp_horiz.o dsp_horiz.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o dsp_html.o dsp_html.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o dsp_meta.o dsp_meta.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o dsp_none.o dsp_none.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o dsp_out.o dsp_out.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o dsp_pretty.o dsp_pretty.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o dsp_vert.o dsp_vert.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o dsp_x.o dsp_x.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_alias.o sqsh_alias.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_args.o sqsh_args.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_avl.o sqsh_avl.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_buf.o sqsh_buf.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_cmd.o sqsh_cmd.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_compat.o sqsh_compat.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_ctx.o sqsh_ctx.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_debug.o sqsh_debug.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_env.o sqsh_env.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_error.o sqsh_error.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_expand.o sqsh_expand.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_fd.o sqsh_fd.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_filter.o sqsh_filter.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_fork.o sqsh_fork.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_func.o sqsh_func.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_getopt.o sqsh_getopt.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_global.o sqsh_global.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_history.o sqsh_history.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_init.o sqsh_init.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_job.o sqsh_job.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_readline.o sqsh_readline.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_sig.o sqsh_sig.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_sigcld.o sqsh_sigcld.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_stdin.o sqsh_stdin.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_strchr.o sqsh_strchr.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_tok.o sqsh_tok.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_varbuf.o sqsh_varbuf.c gcc -g -O2 -DSQSH_RC='"/usr/local/etc/sqshrc:${HOME}/.sqshrc"' -I/usr/local/include -c -o sqsh_main.o sqsh_main.c gcc -L/usr/local/lib cmd_alias.o cmd_bcp.o cmd_buf.o cmd_connect.o cmd_do.o cmd_echo.o cmd_exit.o cmd_for.o cmd_func.o cmd_go.o cmd_help.o cmd_history.o cmd_if.o cmd_input.o cmd_jobs.o cmd_kill.o cmd_lock.o cmd_loop.o cmd_misc.o cmd_read.o cmd_reconnect.o cmd_redraw.o cmd_reset.o cmd_return.o cmd_rpc.o cmd_set.o cmd_shell.o cmd_show.o cmd_sleep.o cmd_wait.o cmd_warranty.o cmd_while.o var_ctlib.o var_date.o var_debug.o var_dsp.o var_hist.o var_misc.o var_passwd.o var_readline.o var_thresh.o dsp.o dsp_bcp.o dsp_conv.o dsp_desc.o dsp_horiz.o dsp_html.o dsp_meta.o dsp_none.o dsp_out.o dsp_pretty.o dsp_vert.o dsp_x.o sqsh_alias.o sqsh_args.o sqsh_avl.o sqsh_buf.o sqsh_cmd.o sqsh_compat.o sqsh_ctx.o sqsh_debug.o sqsh_env.o sqsh_error.o sqsh_expand.o sqsh_fd.o sqsh_filter.o sqsh_fork.o sqsh_func.o sqsh_getopt.o sqsh_global.o sqsh_history.o sqsh_init.o sqsh_job.o sqsh_readline.o sqsh_sig.o sqsh_sigcld.o sqsh_stdin.o sqsh_strchr.o sqsh_tok.o sqsh_varbuf.o sqsh_main.o -lct -ltds -ldl -lm -o sqsh make[1]: Leaving directory `/root/sqsh-2.1/src' [root@testbox sqsh-2.1]# make install make[1]: Entering directory `/root/sqsh-2.1/src' make[1]: `sqsh' is up to date. make[1]: Leaving directory `/root/sqsh-2.1/src' [root@testbox sqsh-2.1]# sqsh --help sqsh: error while loading shared libraries: libct.so.1: cannot open shared object file: No such file or directory [root@testbox sqsh-2.1]# ls -la /usr/local/lib total 6220 drwxr-xr-x 2 root root 4096 Jul 23 08:09 ./ drwxr-xr-x 13 root root 4096 Jul 23 08:09 ../ -rw-r--r-- 1 root root 1022124 Jul 23 08:09 libct.a -rwxr-xr-x 1 root root 695 Jul 23 08:09 libct.la* lrwxrwxrwx 1 root root 12 Jul 23 08:09 libct.so -> libct.so.1.0* lrwxrwxrwx 1 root root 12 Jul 23 08:09 libct.so.1 -> libct.so.1.0* -rwxr-xr-x 1 root root 602074 Jul 23 08:09 libct.so.1.0* -rw-r--r-- 1 root root 1177908 Jul 23 08:09 libsybdb.a -rwxr-xr-x 1 root root 716 Jul 23 08:09 libsybdb.la* lrwxrwxrwx 1 root root 15 Jul 23 08:09 libsybdb.so -> libsybdb.so.3.0* lrwxrwxrwx 1 root root 15 Jul 23 08:09 libsybdb.so.3 -> libsybdb.so.3.0* -rwxr-xr-x 1 root root 700286 Jul 23 08:09 libsybdb.so.3.0* -rw-r--r-- 1 root root 832744 Jul 23 08:09 libtds.a -rwxr-xr-x 1 root root 702 Jul 23 08:09 libtds.la* lrwxrwxrwx 1 root root 13 Jul 23 08:09 libtds.so -> libtds.so.2.0* lrwxrwxrwx 1 root root 13 Jul 23 08:09 libtds.so.2 -> libtds.so.2.0* -rwxr-xr-x 1 root root 490689 Jul 23 08:09 libtds.so.2.0* -rw-r--r-- 1 root root 931774 Jul 23 08:09 libtdssrv.a -rwxr-xr-x 1 root root 723 Jul 23 08:09 libtdssrv.la* lrwxrwxrwx 1 root root 16 Jul 23 08:09 libtdssrv.so -> libtdssrv.so.1.0* lrwxrwxrwx 1 root root 16 Jul 23 08:09 libtdssrv.so.1 -> libtdssrv.so.1.0* -rwxr-xr-x 1 root root 540841 Jul 23 08:09 libtdssrv.so.1.0* I would really appreciate any insight. Thomas H. Shokes Interactive Telesis Systems/Network Engineer
|
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| Previous by Date: | RE: tdspool: Segmentation fault on connect, Carlos S. Alonso de Linaje |
|---|---|
| Next by Date: | Avoid installing tdsiconv.h, ZIGLIO Frediano |
| Previous by Thread: | Applying Steve Murphee patch (2), ZIGLIO Frediano |
| Next by Thread: | Re: SQSH can't load libct.so.1, Michael Peppler |
| Indexes: | [Date] [Thread] [Top] [All Lists] |
Free MagazinesCisco NewsReceive a free quarterly e-newsletter with exclusive articles on how Cisco IT uses its own products and solutions to enable the business. subscribe Systems Management News, the newspaper for IT systems administration and data center managers! Each issue of Systems Management News is chock-full of news and analysis to help you understand what's happening in your field. subscribe The Enterprise Newsweekly eWeek is the essential technology information source for builders of e-business. subscribe Oracle Magazine Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Oracle (NASDAQ: ORCL) is the world's largest enterprise software company. subscribe Total Telecom Total Telecom is "The Economist of the communications industry". subscribe |