Discover if BINARIES "ship_9204_linux_disk1.cpio.gz" is 32 or 64bit?

Hia all,
I need to discover is the binaries files that i have are for LINUX 32 BIT or 64BIT.
The names are:
ship_9204_linux_disk1.cpio.gz
ship_9204_linux_disk2.cpio.gz
ship_9204_linux_disk3.cpio.gz
Someone know if for x86-64 have different name or can be thius one?
I in windows, so a can OPEN de files and see the DOCUMENTATION.....
Tks,
Elber

You can unpack them and read the README file as well:
1. gunzip <file name>
2. cpio -idmv < <file name>
From the file names i would suspect this is the 32-bit version. The file names seem as they were not changed because i have identical file names here but with "x86_64" (64-bit version) in it.
Ronny Egner
My blog: http://ronnyegner.wordpress.com

Similar Messages

  • How to unzip cpio extention file

    Hi All,
    I am trying to install Oracle 9.2.0.4 on linux so i downloaded oracle software but not able to extract this files on linux
    i tried with this command
    1. gunzip ship_9204_linux_disk1.cpio.gz------------I extracted this file to cpio
    2. cpio -idmv <ship_9204_linux_disk1.cpio --------I am not able to extract this file (i.e.system is hanging )
    can any body help in this
    Thanks in Advance
    Praveen

    Pasting Oracle support solution (ID 458985.1), hope this helps ....
    Unable to use cpio to uncompress the 10gr2_aix5l64_client.cpio install media
    Using:
    cpio -idcmv 10gr2_aix5l64_client.cpio
    This hangs.
    -- Steps To Reproduce:
    cpio -idcmv 10gr2_aix5l64_client.cpio
    Cause
    Incorrect Syntax:
    cpio -idcmv 10gr2_aix5l64_client.cpio
    Correct Syntax:
    cpio -idcmv < 10gr2_aix5l64_client.cpio
    The cpio command must be fed the correct file name with a file redirect using "<".
    Solution
    -- To implement the solution, please execute the following steps::
    Please issue:
    cpio -idcmv < 10gr2_aix.cpio
    This should work to uncompress the cpio file.

  • How to extract .cpio.gz files

    when i try to extract on linux it is throwing the below error
    gunzip: 10201_database_linux_x86_64.cpio.gz: not in gzip format

    hello here it is
    Directions to extract the files
         1. Run "gunzip <filename>" on all the files. Eg. ship_9204_linux_disk1.cpio.gz
         2. Extract the cpio archives with the command "cpio -idmv < <filename>" Eg. cpio -idmv < ship_9204_linux_disk1.cpio
    means
    # gunzip <your_file_name>.cpio.gz
    # cpio -idmv < your_archive.cpio
    means make it first cpio then -idmv
    HTH
    these is from
    http://www.oracle.com/technology/software/products/oracle9i/htdocs/linuxsoft.html
    i think from here you have downloaded the archive....
    thanks and regards
    VD
    Edited by: vikrant dixit on Jul 23, 2009 12:29 AM
    Edited by: vikrant dixit on Jul 23, 2009 12:30 AM

  • Install oracle9i(9.2.0.4) on Fedora Core3

    Install Oracle9i(9.2.0.4) on Fedora Core 3
    I. Prepare the files
    1. Download ship_9204_linux_disk1.cpio.gz, ship_9204_linux_disk2.cpio.gz ship_9204_linux_disk3.cpio.gz from www.oracle.com to your local disks.Unzip them all.
    gunzip ship_9204_linux_disk1.cpio.gz
    gunzip ship_9204_linux_disk2.cpio.gz
    gunzip ship_9204_linux_disk3.cpio.gz
    cpio -idmv < ship_9204_linux_disk1.cpio
    cpio -idmv < ship_9204_linux_disk2.cpio
    cpio -idmv < ship_9204_linux_disk3.cpio
    there will be three new sub-directories named Disk1,Disk2,Disk3 in the directory.
    2. Copy compat-gcc-7.3-2.96.128.i386.rpm, compat-gcc-c++-7.3-2.96.128.i386.rpm, compat-libstdc++-7.3-2.96.128.i386.rpm, compat-libstdc++-devel-7.3-2.96.128.i386.rpm from Red Hat EL AS3 installation CDs to a temporary directory.
    3. Make a script file named rhel3_pre_install.sh with the following content:
    #!/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
    echo "/etc/libcwait.so" >>/etc/ld.so.preload
    echo "Patch successfully applied"
    Change the file property to executable. Open a terminal, do it as ‘root’ user.
    sh rhel3_pre_install.sh
    II. Prepare the system
    1. Check if the following rpms have been installed.
    rpm –qa | grep compat-db
    rpm –qa | grep openmotif
    rpm –qa | grep setarch
    make sure they are installed exactly.
    2. Install the four rpms copy out from RHEL AS3.Do the following command in the directory which contains them.
    rpm –Uvh com*rpm --force
    check them by rpm –qa | grep compat
    make sure they are installed exactly.
    3. Change the gcc to oracle required
    mv /usr/bin/gcc /usr/bin/gcc34
    mv /usr/bin/g++ /usr/bin/g++34
    ln -s /usr/bin/gcc296 /usr/bin/gcc
    ln -s /usr/bin/g++296 /usr/bin/g++
    4. Modify /etc/sysctl.conf, add the following content:
    kernel.shmmax = 536870912
    kernel.shmmni = 4096
    kernel.shmall = 2097152
    kernel.sem = 250 32000 100 128
    fs.file-max = 65536
    net.ipv4.ip_local_port_range = 1024 65000
    If you have more then 2G ram, you can set kernel.shmmax = 2147483648
    5. Modify /etc/security/limits.conf, add the following content:
         oracle    soft    nofile    65536
         oracle    hard    nofile   65536
         oracle    soft    nproc    16384
         oracle    hard    nproc    16384
    then, restart the computer.
    III. Prepare the user and the directories
    1. Add user and groups
    groupadd oinstall
    groupadd dba
    useradd -g oinstall -G dba oracle
    passwd oracle
    2. Make directories
    mkdir -p /opt/ora9/product/9.2
    mkdir /var/opt/oracle
    chown oracle.dba /var/opt/oracle
    chown -R oracle.oinstall /opt/ora9
    chmod 755 /var/opt/oracle
    3. Change X unlimited to anyone
    xhost +
    4. set the ‘root’ user’s environment
    export ORACLE_BASE=/opt/ora9
    export ORACLE_HOME=/opt/ora9/product/9.2
    5. open a new terminal
    su – oracle
    modify the .bashrc, add the following content:
    #oracle 9i
    export ORACLE_BASE=/opt/ora9
    export ORACLE_HOME=/opt/ora9/product/9.2
    export PATH=$ORACLE_HOME/bin:$ORACLE_HOME/Apache/Apache/bin:$PATH
    export ORACLE_OWNER=oracle
    export ORACLE_SID=ora9
    export ORACLE_TERM=vt100
    export LD_ASSUME_KERNEL=2.4.1
    export THREADS_FLAG=native
    export LD_LIBRARY_PATH=/opt/ora9/product/9.2/lib:$LD_LIBRARY_PATH
    # change this NLS settings to suit your country:
    # example:
    # german_germany.we8iso8859p15, american_america.we8iso8859p2 etc.
    export LANG=en_US
    export LC=en_US
    then refresh the environment: source .bashrc
    check if them take effect. set | more
    6.logout and relogin as ‘oracle’.
    IV. Finish the installation.
    Change the current directory to which you download the oracle9i installation files.
    ./Disk1/runInstaller
    Good luck!
    ======================================================
    any question,u can contact me.my MSN: [email protected]
    u can also down the 'MS word' format file by http://52asp.kmip.net/Install Oracle9i.doc

    OK thank you very much Ivan
    You cookbook was very useful because i encountered exactly errors that you mentionned.
    Thanks !!

  • Unzip problemes with oracle 9.2

    Hi,
    everytime i try to unzip the cpio files with the command:
    cpio -idmv < (path)
    i get an error:
    cpio: read error: Is a directory
    Can somebody help me?
    Thank you

    But when i write, e.g.
    cpio -idmv <ship_9204_linux_disk1.cpio
    i get an error:
    bash: ship_9204_linux_disk1.cpio: No such file or directory
    and when i try it with the whole pathname, i get:
    cpio: read error: Is a directory
    I don't understand this.

  • Installing Oracle9.2.0.4 on Fedora2.6.9-1.667---ERROR Problem

    Hi,
    I am getting the errors while running the installer and the rpm packages.
    Help me to install Oracle.
    [oracle@localhost disk1]$ ls
    Disk1 ship_9204_linux_disk1.cpio
    [oracle@localhost disk1]$ cd D*
    [oracle@localhost Disk1]$ ls
    doc index.htm install lgto response runInstaller stage
    [oracle@localhost Disk1]$ ./runInstaller
    [oracle@localhost Disk1]$ Initializing Java Virtual Machine from /tmp/OraInstall 2006-03-07_09-50-54AM/jre/bin/java. Please wait...
    Error occurred during initialization of VM
    Unable to load native library: /tmp/OraInstall2006-03-07_09-50-54AM/jre/lib/i386 /libjava.so: symbol __libc_wait, version GLIBC_2.0 not defined in file libc.so.6 with link time reference
    while installing gcc_old-2.95.3-175.2.i586
    it shows me the error like
    Unlocatable package Required by
    compat ('gcc_old','2.95.3','175.2')
    While Installing gcc-3.4.4-2.fc3.i386.rpm
    it shows me the error like
    Unlocatable Package Required by
    cpp ('gcc','3.4.4','2.fc3')
    libgcc ('gcc','3.4.4','2.fc3')
    gcc ('gcc-c++','3.4.2','6.fc3')
    gcc ('gcc-g77','3.4.2','6.fc3')
    gcc ('gcc-java','3.4.2','6.fc3')
    Thanks in Advance,
    Raaj

    Hi Ivan Kartik,
    I have installed compat-gcc-7.3-2.96.126.i386.rpm and j2re-1_3_1_17-linux-i586.bin(from Sun Website) and extracted, accepted the license aggrement and moved to /opt directory.
    While running ./runInstaller error shows like
    [oracle@localhost ~]$ ls
    Desktop oracle_setup problem.txt tmp_swap
    [oracle@localhost ~]$ cd o*
    [oracle@localhost oracle_setup]$ ls
    disk1 disk2 disk3
    [oracle@localhost oracle_setup]$ cd d*
    [oracle@localhost disk1]$ ls
    Disk1 ship_9204_linux_disk1.cpio
    [oracle@localhost disk1]$ cd D*
    [oracle@localhost Disk1]$ ls
    doc index.htm install lgto response runInstaller stage
    [oracle@localhost Disk1]$ ./runInstaller
    [oracle@localhost Disk1]$ Initializing Java Virtual Machine from /tmp/OraInstall2006-03-08_11-39-22PM/jre/bin/java. Please wait...
    Error occurred during initialization of VM
    Unable to load native library: /tmp/OraInstall2006-03-08_11-39-22PM/jre/lib/i386/libjava.so: symbol __libc_wait, version GLIBC_2.0 not defined in file libc.so.6 with link time reference
    Check whether compat-gcc-8.3.3.4 or compat-gcc-32-3.2.3 is installed. If so then uninstall it using folowing command:
    rpm -e compat-gcc
    [root@localhost ~]# rpm -e compat-gcc
    error: Failed dependencies:
    compat-gcc = 8-3.3.4.2 is needed by (installed) compat-gcc-c++-8-3.3.4.2.i386
    [root@localhost ~]#
    While Installing gcc-7.3-2.96.126.i386.rpm package error shows like
    [root@localhost ~]# rpm -ivh /root/Desktop/gcc-7.3-2.96.126.i386.rpm
    Preparing... ########################################### [100%]
    package compat-gcc-8-3.3.4.2 (which is newer than compat-gcc-7.3-2.96.126) is already installed
    [root@localhost ~]#
    Help me to Install,
    Raaj

  • Unzip-probleme mit oracle 9.2

    Hi,
    ich würde gerne Oracle 9.2 release 2 auf einen SLES9 Rechner installieren,
    aber immer wenn ich die cpio Dateien (vorher Gzip-Dateien; bei Oracle runtergeladen)
    mit dem Befehl: cpio -idmv < (Dateipfad) entpacken will, kommt die folgende Fehlermeldung:
    cpio: read error: Ist ein Verzeichnis
    Kann mir jemand weiterhelfen??
    Vielen Dank im Voraus
    MfG Daniel
    Message was edited by:
    user450726

    But when i write, e.g.
    cpio -idmv <ship_9204_linux_disk1.cpio
    i get an error:
    bash: ship_9204_linux_disk1.cpio: No such file or directory
    and when i try it with the whole pathname, i get:
    cpio: read error: Is a directory
    I don't understand this.

  • Unable to gunzip database download

    I downloaded 9i database for linux on a machine with XP because I don't have a network card for my Linux machine. I burned the files to cd. Looks like the burn was successful and the files are the right number of bytes. Now I want to gunzip the files on linux and I get an i/o error. I tried cksum too and still get an i/o error. Thanks in advance for your suggestions.

    hi,
    i'm assuming that you downloaded
    ship_9204_linux_disk1.cpio.gz (538,906,295 bytes),
    ship_9204_linux_disk2.cpio.gz (632,756,922 bytes), and
    ship_9204_linux_disk3.cpio.gz (296,127,243 bytes)
    from http://otn.oracle.com/software/products/oracle9i/index.html. if you did, you can try:
    [oracle@oracentral ora92updates]$ file ship_9204_linux_disk1.cpio.gz
    ship_9204_linux_disk1.cpio.gz: ASCII cpio archive (pre-SVR4 or odc)
    from here, it seems that the file is recognized as a cpio file rather than a gzip. so i used
    [oracle@oracentral ora92updates]$ cpio -idmv < ship_9204_linux_disk1.cpio.gz
    an voila! it starts unpacking. what i don't understand is why the chksum is different from that printed on the website. hope this helps.

  • Netconfiguration Assistant error

    I am trying to install Oracle9i 9.2.0.4.0 Client in RedHat 9 Kernel 2.4.20-8 machine in Netfinity 5000 machine.
    I downloaded ship_9204_linux_disk1.cpio.gz, ship_9204_linux_disk2.cpio.gz and ship_9204_linux_disk3.cpio.gz from Oracle Website.
    Configured necessary variables and created user accounts according to installation manual. For client installation selected RunTime option.
    AFter completing installation, while running ./netca to start Netconfiguration assistant, I am getting the following error:
    /opt/u01/app/oracle/jre/1.1.8/bin/../lib/i686/native_threads/libzip.so: symbol errno, version GLIBC_2.0 not defined in file libc.so.6 with link time reference (libzip.so)
    Unable to initialize threads: cannot find class java/lang/Thread
    Could not create Java VM
    Anybody familiar with the above error, please help me..
    Regards,
    Arun

    I resolved this issue by using
    export LD_ASSUME_KERNEL=2.4.1
    Thanks
    Arun

  • How to use VBScript to access a 32bit ODBC System DSN (Excel) on a Windows 7 64bit system?

    What is the correct way to connect to a 32bit System DSN (Excel) on a Windows 7 64bit system?
    I've recently switched from Windows XP Pro x32 to Windows 7 x64.  Now, one of my scripts that uses an ODBC connection will no longer work.  After a bit of searching, I discovered that Windows 7 x64 does not currently have 64bit Excel drivers.  However, you can set up 32-bit connections by running "C:\Windows\SysWOW64\odbcad32.exe".  Unfortunately, my script still won't work even though I set up the System DSN exactly like I did on my old computer.  When I run my script, I get the following error:
    Quote:
    Script:  X\XML_Check.vbs
    Line:  212
    Char:  3
    Error:  [Microsoft][ODBC Driver Manager] The specified DSN contains an architecture mismatch between the Driver and Application.
    Code:  80004005
    Source:  Microsoft OLE DB Provider for ODBC Drivers
    Line 212 contains:
    objConnection.Open "DSN=charge_codes_XLS;"
    It seemed to me that wscript.exe will only communicate properly with an identical environment (x32 to x32 or x64 to x64, but not x64 to x32 or x32 to x64).  With that in mind, I found a way around the error by running my script via the 32bit version of Windows Script Host.  I changed the shortcut path from "X:\XML_CHECK.vbs" to "C:\Windows\SysWOW64\wscript.exe X:\XML_CHECK.vbs" and the script appears to function ok. 
    What I really want to know is if there is a way to run my script via the 64bit version of wscript.exe yet have it connect to the 32bit ODBC subsystem? Is there a specific connection string I can use or am I just out of luck until Microsoft puts out 64bit Excel drivers?

    I faced the same issue recently. There was a 32bit MSOffice installed on the 64bit server and the same visual basic code worked from MS Office script debugger, and did not in the cscript/wscript.
    It seems that 
      - the  cscript/wscript used 64bit ODBC driver
      - the  office used     32bit ODBC driver
    Excel drivers are installed for 32bit ODBC (because of 32 bit office the ODBC manager 32bit was a full hand of drivers).
    Excel drivers are NOT installed for 64bit ODBC manager (because of 32 bit OFFICE) and can not be installed while the 32bit MS OFFICE is installed.
    The SQL drivers are installed for 64bit ODBC (so that is why the SQL connection was established well)
    The solution would be to run .js .vbs scripts in 32 bit environment:
    \windows\SysWOW64\cscript.exe or \windows\SysWOW64\wscript.exe 
    Search for more with: how do i run a vbscript in 32 bit mode on a 64 bit machine

  • Hyperion 11.1.3 supported environment - Windows 2003 64-bit

    We are planning our migration from Windows 2003 SP1 32 bit with Hyperion 9.3.1 to Windows 2003 64bit (and whatever SP is supported) with Hyperion 11.1.3
    In reviewing the oracle support doc I came across exceptions for using Windows 64 bit with 11
    1. NOT SUPPORTED FOR: Data Integration Management, Production Reporting Teradata Engine.
    2. EXCEPTION: Data Relationship Management and FDM do not support Oracle Access Manager, Oracle Application Server Single Sign-On, and Oracle Identity Manager.
    3. 32-BIT BINARIES ONLY FOR: Data Relationship Management, EPM Workspace Services, FDM, Financial Reporting Services, Interactive Reporting Services, Shared Services (embedded Native Directory OpenLDAP service), Smart Search, and Strategic Finance.
    4. FDM and Strategic Finance cannot be deployed on the same computer where Financial Management (64-bit) and Performance Management Architect (64-bit) are deployed.
    I am more concerned with #3. Does this mean that those services cannot run on the 64bit machine OR that they can run on 64bit but in 32bit mode only
    JTS

    Hi,
    It means they are only 32bit binaries but they do work on a 64bit environment.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • WINRM error : The WinRM client cannot complete the operation within the time spe cified

    Dear All
    Please find
    We have developed a management pack on RMS which is analyzing information from linux by using module with calling winrm.
    In mentioned module before calling winrm through netcat , the agent status will be controlled on target host.
    But this error on specific sles host will halt the executing workflow .
    This workflow will working successfully after couple of intervals and again the error coming up.
    Although the workflow is halting by the mentioned error a  task that used the same module is working fine without any error on that host and
    This workflow is running on other instances of the discovered class correctly
    (on SLES hosts sles11 and sles10 64bit) .
    Error :
     The WinRM client cannot complete the operation within the time spe cified. Check if the machine name is valid and is reachable over the network and  firewall
    exception for Windows Remote Management service is enabled. Error number:  -2144108250 
    The WinRM client cannot complete the operation within the time specified. Check if the machine name is valid and is reachable over the network and firewall exce ption for Windows Remote Management
    service is enabled.
     Linux host :
    SLES 10 32 bit
    SP2

    Hi,
    Any error or warning for the operation manager log under event viewer?
    Based on my research,
    Possible Causes for this issue:
    The host is unreachable due to incorrect name resolution, network outage, or
    host outage
    A network or host-based firewall is blocking TCP port 1270 connectivity to the target host
    Resolutions
    Verify that Management Server can ping the agent host by Fully-Qualified
    Domain Name
    Verify that no network firewalls or host firewall is blocking TCP port 1270
    In addition, check whether you have heartbeat failures in your environment for linux, if so, please go through the below link:
    OpsMgr: UNIX/Linux Heartbeat Failures After Applying KB2585542
    http://operatingquadrant.com/2012/01/12/opsmgr-unixlinux-heartbeat-failures-after-applying-kb2585542/
    Hope this helps.
    Regards,
    Yan Li
    Regards, Yan Li

  • Defect:  Sometimes opened sql/txt files are unreadable in worksheet.

    I haven't pinpointed the exact sequence of events yet. Sorry.
    I work on two different machines. One: 64bit running Vista. Two: 32bit running XP.
    They have the same fonts and operating system languages.
    I keep a set of files I'm working on on a usb stick (which appears to be working perfectly).
    Sometimes, but not always, when I open up a one of those files on the key, it shows up as square-box gibberish in the sql worksheet window.
    I can open the same file with notepad just fine, and paste the contents into the same sql worksheet just fine.
    But it's a darned nuisance, not to mention an opportunity to overwrite my work if I forget to close the open file in notepad and save it later.

    I've had a few moments to try to track down more info on this problem.
    I work on a 64bit vista machine at work and a 32bit windows xp machine at home.
    I'm at home, so I'll post what I discovered here, and then post what happens on the 64bit when I get to work tomorrow.
    All the files I'm discussing have only the standard ascii characters in them.
    Both machines have the same fonts and font setup, and the same OS language. I do not believe this is a font or language issue.
    I believe it may be an encoding issue.
    I opened up a .txt file with sql developer. It happened to work fine this time.
    I opened up the same .txt file with notepad, and saved it to a new .sql extension. It opened fine with sql developer.
    I opened up the original .txt file with notepad and saved it to a new .txt filename and chose the unicode encoding instead of the ansi encoding that notepad was defaulting to. I also used notepad to save the file to another .txt file and chose a utf-8 encoding for it.
    I opened up the unicode encoding file using sql developer and got gibberish. Upon closer inspection, I could actually read the code in the file, but each character had a box between it. I'll use [] to represent a box. So, my first line looked like this: [] [] []b[]e[]g[]i[]n[].
    I opened up the utf encoding file using sql developer and got some gibberish, but most of the file looked fine.
    My environment setting had UTF-8 as a setting.
    I changed the environment setting to UTF_16, and re-opened the files.
    The file saved as unicode is now readable and the other files are now complete gibberish.
    I'm guessing that my work machine has a different default encoding scheme at the operating system level, because I believe both are set up with the same settings inside sql developer. (I used the same written instructions for both.)
    I'll post what I find at work tomorrow.
    If this turns out to be correct, it would be nice if sql developer automatically checked the encoding of the file when it was loaded and acted accordingly. That appears to be a possible course of action, because when I open up each of the encoded files in notepad, it (a) displays each of them correctly automatically and (b) when I do a save as, it shows the encoding the file was last saved in as the default value.

  • No drivers for windows 7 64 bit for PI21AG

    I just paid $170 for a Cisco Aironet  802.11a/b/g Wireless PCI Adapter ( AIR-PI21AG-A-K9 ).
    I was suprised to discover that it doesnt have drivers for windows 7 64bit. for the price of one of these it should be able to be supported on windows 7.
    ive tried to run it on compatibility mode for vista and still nothing. this is very fustrating for an expensive product.

    Hello,
    I have the same issue; the Vista drivers don't work for me, the computer hangs; what's worse is that they even hang a computer with Vista.
    What can I do? This is very frustrating
    thanks

  • Adding 32bit vs 64bit  driver

    Hi,
    I've taken the sample psli driver and compiled it both as 32bit and 64bit binaries. The initial phase of the 64bit install goes okay, and the init/probe/attach functions are called (i added cmn_err calls). The binary and conf file are in the /usr/kernel/drv/sparcv9 directory.
    I would also like to be able to build a 32bit binary and load that, but when I put this in the /usr/kernel/drv directory along with its conf file (identical source, identical conf file, identical add_drv parameters), I get the following:
    add_drv -v -m '* 0666 root sys' psli
    exit status = 0
    devfsadm: driver failed to attach: psli
    exit status = 11
    Warning: Driver (xx) successfully added to system but failed ot attach.
    Driver (xx) installed.
    But I also don't get any output from my cmn_err calls that I put in init/probe/ attach, so none of these appear to be called.
    It is not trying to talk to any hardware, and the body of the attach is commented out to return success to test the install.
    Any suggestions on why the 64 bit one can load and not the 32?
    Thanks
    S.

    Hi,
    I am sure you would have taken care of this basic things, still
    1. Is the system booted in 32 bit mode, when you are trying to load 32 bit driver ?
    ( check isainfo -v, isainfo -kv, should not show anything like 64bit or sparcv9 ).
    2. run the "file" command on 32 bit driver and see it really 32 bit.
    # file /usr/kernel/drv/psli
    There may be many more reasons apart from this.
    -Kalpesh

Maybe you are looking for

  • MSSQL Homogeneous System Copy : SAPINST cannot connect to default database

    Hello. We want to perform a homogeneous system copy, following Note 151603. We have attached the source DB (RP1) to the destination DB (RD4) following the above mentioned Note. Now, logged to the server as DOMAIN\rd4adm , we want to execute the SAPIN

  • Feature Request  - Export Available Preview.

    Let's assume you have a library built from many separate Hard Drives, (my library is on a separate small 500g HD) and your heading out on location (cottage/holiday) for a few days and you'd like to do a rough edit of some project, it would be nice to

  • Large Scale Digital Printing Guidelines

    Hi, I'm trying to get a getter handle on the principles and options for creating the best large and very large scale prints from digital files.  I'm more than well versed in the basics of Photoshop and color management but there remain some issues I'

  • IoEO - Conceptual Clarifications

    Hi All, I need few clarifications and perception of everyone who reads this thread. I need to understand the significance or the importance of EO. Per my observation there are very less EOs created actually. The VOs are most of the times built on PL/

  • Graphs in Workbook

    Hi Friends My cleint is asking to design graph for the following requriement in BEx.Can we design graphs in bex or should we go to web reporting only. If we can get the graphs in Bex its self how i can embed the graphs into a workbook. Thanks Sundare