Gcc compiler on oul

I am trying to run a script as a patch to the install Oracle 9i on UL. First it fails with libjava.so not found. Then I tried to apply patch 3423540 as suggested by Oracle. Here is the actual script that should run. Needs the gcc compiler - so installed that from ul distribution. And now while running the patch it cant find standard include directories like errno.h and syscall.h . Any help will be appreciated
#!/bin/bash
USER=`whoami`
if [ $USER != root ]; then
echo "Must be root to run this script, please login as root and re-try"
exit
fi
# see if libcwait.so is already being loaded
if [ -f "/etc/ld.so.preload" ] && [ -n "`grep libcwait /etc/ld.so.preload`" ]; then
echo "Patch has already been applied"
exit
else
echo "Applying patch..."
fi
cat << EOF |
#include <errno.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include <sys/wait.h>
pid_t
__libc_wait (int *status)
int res;
asm volatile ("pushl %%ebx\n\t"
"movl %2, %%ebx\n\t"
"movl %1, %%eax\n\t"
"int \$0x80\n\t"
"popl %%ebx"
: "=a" (res)
: "i" (__NR_wait4), "0" (WAIT_ANY), "c" (status), "d" (0), "S" (0));
return res;
EOF
gcc -O2 -shared -fpic -xc - -o /etc/libcwait.so
# Check we built libcwait.so
if [ -f "/etc/libcwait.so" ]; then
echo "/etc/libcwait.so" >>/etc/ld.so.preload
echo "Ensuring permissions are correctly set..."
chown root.root /etc/libcwait.so /etc/ld.so.preload
chmod 755 /etc/libcwait.so
chmod 444 /etc/ld.so.preload
echo "Done."
echo "Patch successfully applied"
else
echo "Patch installation failed, Please fix errors and try again."
fi

errno.h and syscall.h are provided by glibc-headers package. So check whether this package is installed on your system.
I'm not sure what UL means?
dou you mean United Linux or Unbreakable Linux (aka Enteprise Linux)?
If you mean Unbreakable Linux then you can check this installation paper: http://ivan.kartik.sk/oracle/install_ora9_elinux.html

Similar Messages

  • Can i use a GCC compiler on MacOSX and link this C Code to lbv 6.1 on OS9?

    I am interested in compiling my C code on the free GCC compiler which works with Mac OS X but am concerned that I will not be able to connect this with the Call library function and CINs in labview 6.1 that runs on Mac OS 9. Am I able to cross platforms and use the .so file with lbv 6.1 on OS 9? What problems will i most likely encounter or should watch out for? Thanks!

    Unfortunately, you cannot port shared objects across these platforms. You are going to have to recompile the .so file on OS 9 for use in the call library function node.
    Robert Mortensen
    Software Engineer
    National Instruments

  • How to install gcc compiler on mac

    how to install gcc compiler om macair( 2013) ?
        THANKS IN ADVANCE !!!

    In OS X, GCC is part of Xcode's command tools, so first, open the Mac App Store and install Xcode for free.
    Then, open Xcode, go to Xcode menu (on the menu bar) > Preferences > Downloads, and install Command Line Tools. You will get commands like gcc, make, purge...

  • Can I run gcc compiled programs in the terminal?

    I compiled a simple C program in the terminal using gcc 4.0 from the Xcode 2.2 distribution. I used gcc a.c at the command line and the compiler produced a.out. When I type a.out at the command line, I get the message
    tcsh: a.out: Command not found.
    Am I missing a step in the comilation phase? Is it possible to run gcc compiled programs in the terminal? I get the same results in the bash shell and when using X11.
    eMac G4   Mac OS X (10.4.6)  

    ./a.out is correct. Your current directory in not in your $PATH. You could add "." to the PATH, but that is considered a security compromise, because an unexpected command could be introduced either maliciously or inadvertently. (I have seen this happen.)

  • Issue with gcc compiler installation

    Hi ,
    To install the C Compiler(gcc compiler) on Solaris 9.0 ,I unzipped the following tar files SUNW0gccfss.tar.bz2 and gccfss_src.tar.bz2 but after that when I type gcc ,I get that "SUNW0gccfss is not installed".
    Even I used cc command to compile the C Program but I get this error message "language optional software package not installed"
    Please advise.
    Thanks
    Bala

    For Sun Studio tools you can download from http://developers.sun.com/sunstudio/downloads/index.jsp . Note the "cc" is /usr/ucb/cc normal shell script which will pickup the sun studio compiler if its installed. If its not present then it throws the error messaget "language optional software package not installed"
    If you are looking for compiling with GCC. Grab hold of the Solaris Companion CD from http://www.sun.com/software/solaris/freeware/ and install the all the gcc releated . The CD has "installer" script to install all the development packages.

  • TTClasses C++ Shared Objs Names And gcc Compiler Versions

    3 versions of the TTClasses libraries are shipped with TimesTen due to the fact that gcc 3.2, 3.4. and 4.1 produce binaries that are not compatible with each other. For instance with 7.0.2 has the following libraries:
    libttclasses.so.gcc323
    libttclasses.so.gcc346
    libttclasses.so.gcc410
    It appears the naming convention of these libraries indicates the gcc compiler version out to 3 digits that TimesTen used to create the libraries.
    As new releases of TimesTen occur, when will the names of these 3 libraries change, i.e. when will TimesTen use a different version of the gcc compiler?
    It appears that in 7.0.2, 7.0.2.2, and 7.0.3, the names of libraries don't change. Would it only be possible for them to change for a major release, i.e. 7.X. Could it change for a minor release like 7.0.3.X or 7.0.X?
    The reason that I'm asking this is as follows:
    - When the TimesTen installer is run, it checks version of the gcc compiler, then it creates a symbolic link to the appropriate lib for that version of the compiler. It names this link libttclasses.so.
    - Up to now we have been linking our programs with libttclasses.so.
    - However when TimesTen is run on a machine without a compiler (which is the situation in our QA and prod environment), it appears to create a link to the gcc 3.2 lib.
    - This is a problem for us on Red Hat 4.0 because the default compiler is 3.4 which is what we are using, but the installer is creating a link to libttclasses.gcc323 when there is no compiler on Red Hat 4.0.
    - This causes our programs to crash.
    - To eliminate this we are considering linking directly with the appropriate library, i.e. libttclasses.gcc346 in our case.
    - However, we dont want to have to recompile or relink or application for future minor releases of TimesTen, i.e. 7.0.3.X or 7.0.X.
    - If the names of these files could change in minor releases, then we'd need to relink.
    Does anyone know the answer to this?
    Thanks.

    As you say, the names of the libraries comes directly from the GCC version used to build them. These names (i.e. GCC vesions) will not change between minor releases. Over time and major releases will tend to drop support for older GCC versions and add support for newer versions.
    Our strong recommendation is that you change the symbolic link to make libttclasses.sp point to the correct library and then link with libttclasses.so. This is the simplest and most 'future proof' method.
    Chris

  • GCC Compiler

    It appears that the default install of Solaris 8 on intel does not include the gcc compiler (but am not 100% sure).
    How can I confirm that it is or is not present.
    Further, if it is not present, where can I get if and some installation instructions?
    In addition, once it is installed, does it become the default compiler when I type make.
    Thanks
    Chris Hax

    The gcc-compiler is located on the bonus-cd, or you can find it on this website: http://sunfreeware.com/
    Lars-Inge

  • Exception handling is not working in GCC compile shared object

    Hello,
    I am facing very strange issue on Solaris x86_64 platform with C++ code compiled usging gcc.3.4.3.
    I have compiled shared object that load into web server process space while initialization. Whenever any exception generate in code base, it is not being caught by exception handler. Even though exception handlers are there. Same code is working fine since long time but on Solaris x86, Sparc arch, Linux platform
    With Dbx, I am getting following stack trace.
    Stack trace is
    dbx: internal error: reference through NULL pointer at line 973 in file symbol.cc
    [1] 0x11335(0x1, 0x1, 0x474e5543432b2b00, 0x59cb60, 0xfffffd7fffdff2b0, 0x11335), at 0x11335
    ---- hidden frames, use 'where -h' to see them all ----
    =>[4] __cxa_throw(obj = (nil), tinfo = (nil), dest = (nil), , line 75 in "eh_throw.cc"
    [5] OBWebGate_Authent(r = 0xfffffd7fff3fb300), line 86 in "apache.cpp"
    [6] ap_run_post_config(0x0, 0x0, 0x0, 0x0, 0x0, 0x0), at 0x444624
    [7] main(0x0, 0x0, 0x0, 0x0, 0x0, 0x0), at 0x42c39a
    I am using following link options.
    Compile option is
    /usr/sfw/bin/g++ -c -I/scratch/ashishas/view_storage/build/coreid1014/palantir/apache22/solaris-x86_64/include -m64 -fPIC -D_REENTRANT -Wall -g -o apache.o apache.cpp
    Link option is
    /usr/sfw/bin/g++ -shared -m64 -o apache.so apache.o -lsocket -lnsl -ldl -lpthread -lthread
    At line 86, we are just throwing simple exception which have catch handlers in place. Also we do have catch(...) handler as well.
    Surpursing things are..same issue didn't observe if we make it as executable.
    Issue only comes if this is shared object loaded on webserver. If this is plain shared object, opened by anyother exe, it works fine.
    Can someone help me out. This is completly blocking issue for us. Using Solaris Sun Studio compiler is no option as of now.

    shared object that load into web server process space
    ... same issue didn't observe if we make it as executable.When you "inject" your shared object into some other process a well-being of your exception handling depends on that other process.
    Mechanics of x64 stack traversing (unwind) performed when you throw the exception is quite complicated,
    particularly involving a "nearly-standartized" Unwind interface (say, Unwind_RaiseException).
    When we are talking about g++ on Solaris there are two implementations of unwind interface, one in libc and one in libgcc_s.so.
    When you g++-compile the executable you get it directly linked with libgcc_s.so and Unwind stuff resolves into libgccs.
    When g++-compiled shared object is loaded into non-g++-compiled executable's process _Unwind calls are most likely already resolved into Solaris libc.
    Thats why you might see the difference.
    Now, what exactly causes this difference can vary, I can only speculate.
    All that would not be a problem if _Unwind interface was completely standartized and properly implemented.
    However there are two issues currently:
    * gcc (libstdc++ in particular) happens to use additional non-standard _Unwind calls which are not present in Solaris libc
    naturally, implementation details of Unwind implementation in libc differs to that of libgccs, so when all the standard _Unwind
    routines are resolved into Solaris version and one non-standard _Unwind routine is resolved into gcc version you get a problem
    (most likely that is what happens with you)
    * libc Unwind sometimes is unable to decipher the code generated by gcc.
    However that is likely to happen with modern gcc (say, 4.4+) and not that likely with 3.4.3
    Btw, you can check your call frame to see where _Unwind calls come from:
    where -h -lIf you indeed stomped on "mixed _Unwind" problem then the only chance for you is to play with linker
    so it binds Unwind stuff from your library directly into libgccs.
    Not tried it myself though.
    regards,
    __Fedor.

  • Gcc compiler for native pl-sql (SunOS 5.9)

    Hi All !
    Whether it is possible to use native pl-sql compilation on platform Solaris 9 with the compiler gcc? I Have established gcc version 3.3.2
    At compilation of a package I receive a error: (Warning) PLS-00923: native compilation failed: make:spdtexmk:?

    Although the configuration is certified not all new 9i features are supported with previous versions of Oracle.
    In order for result set to work you will require Oracle v9i.

  • Gcc compiled XDD only detects 1 cpu

    I recently installed XDD for benchmarking a RAID array, but noticed it only detects one of the four cores on my Q6600.
    OS release and version, Linux 2.6.27-ARCH #1 SMP PREEMPT Sun Dec 21 09:13:30 UTC 2008
    Machine hardware type, x86_64
    Number of processors on this system, 1
    Page size in bytes, 4096
    Number of physical pages, 1012708
    Megabytes of physical memory, 3955
    System info:
    $ uname -a
    Linux superheavy 2.6.27-ARCH #1 SMP PREEMPT Sun Dec 21 09:13:30 UTC 2008 x86_64 Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz GenuineIntel GNU/Linux
    The program is compiled from source with an OS specific makefile provided by the author.  For compilation, I ran
    make -f linux.makefile xdd
    as suggested in the FAQ.  Is there a way to compile this program so it properly detects all 4 cores on the processor?
    Here is the source and the contents of linux.makefile:
    # XDD Makefile for Linux
    CFLAGS = -O2 -DLINUX -DLINUXSMP -DSG_IO -D__INTEL__ -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -g
    SHELL = /bin/sh
    PROJECT = xdd
    OBJECTS = xdd.o access_pattern.o barrier.o global_time.o initialization.o parse.o pclk.o read_after_write.o results.o sg.o ticker.o time_stamp.o verify.o
    HEADERS = xdd.h pclk.h ticker.h misc.h sg.h sg_err.h
    TSOBJECTS = timeserver.o pclk.o ticker.o
    GTOBJECTS = gettime.o global_time.o pclk.o ticker.o
    all: xdd timeserver gettime
    xdd: $(OBJECTS)
    gcc -o xdd $(CFLAGS) $(OBJECTS) -lpthread -v
    mv -f xdd bin/xdd.linux
    timeserver: $(TSOBJECTS)
    gcc -o timeserver $(CFLAGS) $(TSOBJECTS) -lpthread -v
    mv -f timeserver bin/timeserver.linux
    gettime: $(GTOBJECTS)
    gcc -o gettime $(CFLAGS) $(GTOBJECTS) -lpthread -v
    mv -f gettime bin/gettime.linux
    access_pattern.o: access_pattern.c
    gcc $(CFLAGS) -c access_pattern.c
    barrier.o: barrier.c
    gcc $(CFLAGS) -c barrier.c
    gettime.o: gettime.c
    gcc $(CFLAGS) -c gettime.c
    global_time.o: global_time.c
    gcc $(CFLAGS) -c global_time.c
    initialization.o: initialization.c
    gcc $(CFLAGS) -c initialization.c
    parse.o: parse.c
    gcc $(CFLAGS) -c parse.c
    pclk.o: pclk.c
    gcc $(CFLAGS) -c pclk.c
    read_after_write.o: read_after_write.c
    gcc $(CFLAGS) -c read_after_write.c
    results.o: results.c
    gcc $(CFLAGS) -c results.c
    sg.o: sg.c
    gcc $(CFLAGS) -c sg.c
    ticker.o: ticker.c
    gcc $(CFLAGS) -c ticker.c
    time_stamp.o: time_stamp.c
    gcc $(CFLAGS) -c time_stamp.c
    timeserver.o: timeserver.c
    gcc $(CFLAGS) -c timeserver.c
    verify.o: verify.c
    gcc $(CFLAGS) -c verify.c
    xdd.o: xdd.c
    gcc $(CFLAGS) -c xdd.c
    dist: clean
    tar cf ../dist.tar .
    clean:
    -rm -f xdd timeserver gettime a.out $(OBJECTS) $(TSOBJECTS) $(GTOBJECTS)
    Any help or direction offered would be very appreciated.  Thank you.

    I have sent an email concerning this problem to the author.  Any advise in the meantime would still be quite helpful.  Once resolved, I will submit an XDD package to the AUR.

  • GCC compile.

    Has anyone here tried to compile GCC 3.4.3 with Sun Studio 10? I'm running into issues:
    checking for GCC version number... 3.4.3
    checking whether ln -s works... yes
    checking for sparc-sun-solaris2.10-as... (cached) /usr/sfw/bin/gas
    checking for sparc-sun-solaris2.10-ar... (cached) ar
    checking for sparc-sun-solaris2.10-ranlib... (cached) ranlib
    checking whether to enable maintainer-specific portions of Makefiles... no
    configure: CPU config directory is cpu/sparc
    configure: OS config directory is os/solaris/solaris2.7
    checking for non-GNU ld... (cached) /usr/ccs/bin/ld
    checking if the linker (/usr/ccs/bin/ld) is GNU ld... (cached) no
    checking for /usr/ccs/bin/ld option to reload object files... (cached) -r
    checking for BSD-compatible nm... (cached) /usr/ccs/bin/nm
    checking how to recognise dependant libraries... (cached) pass_all
    checking for sparc-sun-solaris2.10-ranlib... (cached) ranlib
    checking for sparc-sun-solaris2.10-strip... no
    checking for strip... (cached) strip
    updating cache ./config.cache
    loading cache ./config.cache within ltconfig
    checking for objdir... .libs
    checking for /home/oregoct/projects/src/gcc-3.4.3/objdir/gcc/xgcc option to produce PIC... none
    checking if /home/oregoct/projects/src/gcc-3.4.3/objdir/gcc/xgcc static flag works... (cached) no
    finding the maximum length of command line arguments... (cached) 393217
    checking if /home/oregoct/projects/src/gcc-3.4.3/objdir/gcc/xgcc supports -c -o file.o... (cached) no
    checking if we can lock with hard links... yes
    checking whether the linker (/usr/ccs/bin/ld) supports shared libraries... yes
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... no
    checking dynamic linker characteristics... solaris2.10 ld.so
    checking command to parse /usr/ccs/bin/nm output... failed
    checking if libtool supports shared libraries... no
    checking whether to build shared libraries... no
    checking whether to build static libraries... yes
    creating libtool
    updating cache ./config.cache
    configure: loading cache ./config.cache
    checking how to run the C++ preprocessor... /lib/cpp
    loading cache ./config.cache within ltconfig
    checking host system type... sparc-sun-solaris2.10
    checking build system type... sparc-sun-solaris2.10
    checking for objdir... .libs
    checking for /home/oregoct/projects/src/gcc-3.4.3/objdir/gcc/xgcc option to produce PIC... -fPIC -DPIC
    checking if /home/oregoct/projects/src/gcc-3.4.3/objdir/gcc/xgcc PIC flag -fPIC -DPIC works... no
    checking if /home/oregoct/projects/src/gcc-3.4.3/objdir/gcc/xgcc static flag -static works... no
    finding the maximum length of command line arguments... (cached) 393217
    checking if /home/oregoct/projects/src/gcc-3.4.3/objdir/gcc/xgcc supports -c -o file.o... (cached) no
    checking if we can lock with hard links... yes
    checking if /home/oregoct/projects/src/gcc-3.4.3/objdir/gcc/xgcc supports -fno-rtti -fno-exceptions ... no
    checking whether the linker (/usr/ccs/bin/ld) supports shared libraries...
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... no
    checking dynamic linker characteristics... solaris2.10 ld.so
    checking command to parse /usr/ccs/bin/nm output... failed
    checking if libtool supports shared libraries... no
    checking whether to build shared libraries... no
    checking whether to build static libraries... yes
    appending configuration tag "CXX" to libtool
    checking for exception model to use... configure: error: unable to detect exception model
    gmake[1]: *** [configure-target-libstdc++-v3] Error 1
    gmake[1]: Leaving directory `/home/oregoct/projects/src/gcc-3.4.3/objdir'
    gmake: *** [bootstrap] Error 2
    Any ideas or suggestions for flags/options to make this work?

    You want to cross-compile on the Mac and target Linux? Certainly this is possible, but harder than it looks, and it looks pretty hard. Personally, I would suggest building it on a Linux VM running on the Mac. You'll get the best of both worlds that way.

  • GCC Compiler problems!!!

    how do i setup GCC to compile software?? i've downloaded the package from www.sunfreeware.com. Are there any other packages i need?? i'm using a Bourne shell...do i just edit /etc/profile and add /usr/ccs/bin to the path?? when i make the changes and used ECHO $PATH, it shows /usr/ccs/bin, but when i reboot, it doesnt show /usr/ccs/bin anymore. how do i add it to the PATH and keep the changes?? i tried following --> http://solaris-x86.org/documents/guides/compile.mhtml . I know i was missing some of the packages they have listed in order to compile. I tried to search for them on Software CD 1 & 2 and couldnt find them. I'm running Solaris 9 X86. ANY help is much appreciated.
    Thanks!

    Hi.
    I can't check right now (no Solaris machine nearby) but as far as I remember, GCC
    installs in /usr/local, meaning that the libs are in /usr/local/lib, binaries in /usr/local/bin,
    manual pages in /usr/local/man and so on.
    So, in order compile w/ GCC you ought to add /usr/local/lib to LD_LIBRARY_PATH and
    /usr/local/bin to PATH. Rather than modifying the init files system-wide I usually modify
    ~/.bashrc or ~/.bash_profile to set the environment variables.
    You may specify /usr/local/include for special GCC include files in your Makefile
    (option -I)
    eb

  • Gcc compile for linux from terminal

    Hi all,
    I've usually done my compiling in OSX via terminal with gcc, using a few flags, but as of recently, wanted to build for some linux systems as well and was wondering if it was possible to compile on the mac side using specific flags instead of having to compile them on the linux boxes themselves? What I'm using now:
    gcc -arch ${arch} -mmacosx-version-min=10.4 file.c -o file
    I have a mac on our network specifically for building, recompiling and distribution which is why I'd like to keep it there instead of having to do it on each individual machine...

    You want to cross-compile on the Mac and target Linux? Certainly this is possible, but harder than it looks, and it looks pretty hard. Personally, I would suggest building it on a Linux VM running on the Mac. You'll get the best of both worlds that way.

  • How come GCC compiler isn't working in Terminal?

    Hello,
    Whenever I try to compile my C code (just a simple helloworld.c) via Terminal I get the following error:
    -bash: gcc: command not found
    I found some information using Google and I did install Xcode. When I browse to usr/bin the files cc and gcc link to gcc-4.2. So everything seems to be right except for one thing: it doesn't work.
    Does anybody know what I'm doing wrong? I guess it's something simple but I can't put my finger on it.
    Thanks in advance,
    svdv22

    svdv22 wrote:
    Using "cd /developer/usr/bin/" to open /usr/bin/gcc as a folder
    result: "Not a directory" (which is correct; it isn't).
    What, exactly, are you typing on the command line. When you deal with the command line, you must be absolutely precise.
    For example, MacOS X, by default, uses a case insensitive file system. If you do something like:
    pele:~ jdaniel$ cd /developer/usr/bin
    pele:bin jdaniel$
    it will work just fine, even though there is no "/developer" directory. There is "/Developer" and that is what it should use.
    If you try to move into a truly non-existent directory, you should get a different error message:
    pele:bin jdaniel$ cd /developer/usr/bin2
    -bash: cd: /developer/usr/bin2: No such file or directory
    Did you do anything non-default when you installed MacOS X? Did you do anything non-default when you installed Xcode?
    You should be able to run the following from any directory. If you can't something is wrong.
    pele:tmp jdaniel$ gcc --version
    i686-apple-darwin10-llvm-gcc-4.2 (GCC) 4.2.1 (yada, yada, yada)

  • [SOLVED]gcc compile a soucefile which is a symbol link to anotherfile?

    I have make the "APUE" files.
    The examples source file is all the symbol link point to there real location.
    but how do i compile it with the symbol linkfiel?
    apue.2e $ gcc fig10.5
    fig10.5: file not recognized: File format not recognized
    apue.2e $ ls -l fig10.5
    lrwxrwxrwx 1 root root 17 8月 1 04:42 fig10.5 -> signals/reenter.c
    Last edited by codingBug (2012-07-31 15:00:12)

    Allan wrote:
    Nothing to do with a smlink and all to do with the file name.  Rename it to end in .c...
    Edit: or use "gcc -x c fig10.5"
    Thank you very much! Google can't find out it...
    then i know.
    -x language
    Specify explicitly the language for the following input files (rather than letting
    the compiler choose a default based on the file name suffix). This option applies
    to all following input files until the next ‘-x’ option. Possible values for language
    are:
    c c-header cpp-output
    c++ c++-header c++-cpp-output
    objective-c objective-c-header objective-c-cpp-output
    objective-c++ objective-c++-header objective-c++-cpp-output
    assembler assembler-with-cpp
    ada
    f77 f77-cpp-input f95 f95-cpp-input
    go
    java

Maybe you are looking for

  • Calling web service in Oracle Applicaitons...

    Can I call a web service in Oracle Appications 11.5.10? I created a simple form on my local machine and invoked the webservice in that form and it works perfectly. I used Oracle forms 9i and 6i for this purpose and both are working perfectly. But whe

  • Can't see live edits

    I can't see what my edits are doing to the develop module , its shows the filmstrip picture getting edited buts its a 3/4 inch square. The develop module picture show nothing until i switch to a different pic in the filmstrip section and go back to s

  • Why is my imac crashing ??

    Interval Since Last Panic Report:  15113 sec Panics Since Last Report:          9 Anonymous UUID:                    9A0FDEC4-9188-47D4-AA18-647801E53E70 Fri Aug 31 18:43:44 2012 panic(cpu 1 caller 0xffffff800deb7b95): Kernel trap at 0xffffff800de876

  • ITunes Program Freezes, after update of 8.1.1

    Windows XP (labtop) I just updated to newer version (8.1.1) of itunes. When I connect itouch to usb port it goes through process and downloads pictures, once complete itunes freezes. I can not connect to sync music. I come to a dead stop and it freez

  • Spool full and missing document number

    Hi, Can someone explain why a full spool affects missing document number?  Are some tables being shared? Thanks