9i install on RedHat 7.1 from technet download

I am trying to install on a RedHat 7.1 system ORACLE 9i
downloaded from technet. I cannot gunzip the first file though -
I get:
gunzip: Linux9i_Disk1.cpio.gz: invalid compressed data--format
violated
The file seems to be incomplete. Anyone has any idea of where I
could get the right archive? Oracle should also know about this,
but I don't know how to contact them.

Maybe your file is incoplete. if you try ls -l, the size of the
Linux9i_Disk1.cpio.gz should be 412092424

Similar Messages

  • Error installing Acrobat Pro 7.0 from CS2 downloads

    While attempting to install Acrobat Pro 7.0 from the CS2 downloads I am able to enter the serial number and launch the install but the install stops with an error 1310 which I can choose to ignore but then I get an error 1304 where I need to cancel the install.
    Why?

    Re: Error 1310: my monthslong nightmare, my scourge, my nemesis

  • Forms Server Install on Redhat Linux 7.0

    I am attempting to install Forms6i/Reports6i/Graphics6i on my Linux Box.
    I already have a 8.1.6 Database configured and running.
    After downloading the tar file and extracting it I am having trouble with the installation of the software. The Guide refers to running the orainstal shell script in the orinstall directory. Well when I execute the script I get a Character Installer and I was expecting the Java based Gui Installer such as the one with Oracle 8i DB. I cannot get the oraviewer program to work either for I wanted to see if there were some other setting I am not executing correctly.
    When I continue with the Char Installer it has trouble finding a lib called X11m.a or something (Motif related).
    Does Forms 6i require Motif? If so where and how do I get it for my Linux box? Are there any work arounds for this.
    Any help is greatly apprecicated.
    Thanks

    Hello Shawn,
    Yes, you need motif libraries. You can obtain it for free from: http://www.metrolink.com/products/Motif/download.html
    I installed both runtime and development packages.
    Aditionally you may ned to have X-devel packages installed.
    After struggling with Forms installation on my linux machine I managed to do this, but let me tell you that it's not so simple. First of all please excuse my bad English, I'm not a native speaker. Anyway that's how I did it.
    I assume that you downloaded the file d2k6irelease2.tar from technet. This file includes Forms 6i rel. 2 Server and Developer.
    I managed to install this on my RedHat 7.1 machine having already installed Oracle 8.1.7 database Server.
    First of I created a separate user which owns Forms Server software. I set this user as belonging to the same group ("dba" in my case) as the oracle database software owner. (On my machine I have "oracle" user which owns databse server belonging to the "dba" group and "forms" user belonging also to the "dba" group). You must set your environment like this (in ".bash-profile" in my case):
    -- Begin .bash_profile file
    # .bash_profile
    # Get the aliases and functions
    if [ -f ~/.bashrc ]; then
    . ~/.bashrc
    fi
    # User specific environment and startup programs
    unset LANG
    PATH=$PATH:$HOME/bin
    BASH_ENV=$HOME/.bashrc
    ORACLE_BASE=/oracle
    ORACLE_HOME=$ORACLE_BASE/product/forms
    ORACLE_SID=forms
    ORACLE_AUTOREG=$ORACLE_HOME/guicommon/tk60/admin
    TNS_ADMIN=$ORACLE_HOME/network/admin/tnsnames.ora
    ORACLE_TERM=vt220
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib
    TWO_TASK=oratest
    MMTK_AVIPLAYER="xanim %s &"
    PATH=$PATH:$ORACLE_HOME/bin
    DISPLAY=TEST_MACHINE:0.0
    export ORACLE_BASE ORACLE_HOME LD_LIBRARY_PATH TWO_TASK MMTK_AVIPLAYER
    export TNS_ADMIN DISPLAY ORACLE_AUTOREG ORACLE_TERM ORACLE_SID
    export BASH_ENV PATH
    unset USERNAME
    -- End .bash_profile file
    As you can see I set up ORACLE_BASE to the same ORACLE_BASE as database software ORACLE_BASE, a new ORACLE_HOME, a dummy ORACLE_SID, TWO_TASK to the sid of your 8.1.6 server instance, TNS_ADMIN pointing to a directory which I created manually before starting the installer (see below my "tnsnames.ora" file under this manually created directory), ORACLE_AUTOREG, ORACLE_TERM, DISPLAY set to your_hostname:0.0, LD_LIBRARY_PATH as seen, MMTK_AVIPLAYER is for playing ".avi' files (I didn't tried this). You may need to "chmod 775" on your $ORACLE_HOME directory from the database user account.
    -- Begin "tnsnames.ora" file
    ORATEST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = TEST_MACHINE)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = oratest)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    -- End "tnsnames.ora" file
    I untared d2k6irelease2.tar under a subdirectory created under "forms" home directory. In "unixdoc/Server" directory you will find linux_svr.pdf instructions for installation of Forms server and under "unixdoc/Developer" you will find linux_dev.pdf instructions for Developer Server. "oraview" didn't worked for me either. GUI installer didn't worked for me either. Chnaging to orainst you may issue ./orainst command and start the installation in character mode (I did not even started an X session). I choosed default install, do not create database objects (I think you will be able to install later this objects by running some sql scripts, I didn't). And I choosed all components presented and all options and default port parameters. You will also be prompted to confirm locations of the motif libraries. I choosed http mode for forms server. Do not install Reports security feature (I've heard that it's not working, this option will be presented to you somewhere at the end of installation). After finishing you may need to edit "forms60_server" file and some other files. For example I had to change my "host_name.domain_name" (in my case was "TEST_MACHINE.(none)") to my IP address as I don't have a DNS server here.
    That's what I did to test forms server:
    I wanted to test my Forms server by running Apache web server (the one that is installed by default by linux). (in the documetation you will find references to the WebDB listener which as far as I know is no longer installed in release 2, so the documentation is obsolete regarding this module). For this you will have to edit /etc/httpd/conf/httpd.conf file. Look for the section "Alias" and "AliasScript". under your forms $ORACLE_HOME/orainst you will find two files "forms6iconfig.txt" and "reports6iconfig.txt". You will find there actions to be performed by you manually. in "forms6iconfig.txt" file you will find virtual mappings for physical directories. You have to put this entries in "httpd.conf" file. You must edit this file as "root". For example 'Alias /dev60temp/ "/oracle/product/forms/tools/web60/temp/"'. The exception I made was for "/dev60cgi" virtaul mapping which I've put under ScriptAlias section 'ScriptAlias /dev60cgi/ "/oracle/product/forms/tools/web60/cgi/"'.
    After succesfully editing the file you will ned to restart http server:
    #/etc/rc.d/init.d/httpd restart
    Login again as "forms" user.
    In $ORACLE_HOME directory isuue:
    $./forms60_server start
    This will start your forms server listener.
    After that you can test your forms server running from an external machine by entering: http://ip_addres_of_linux_machine/dev60html/runform.htm
    and after completing parameters you will see "text.fmx" form applet saying that Forms server is installed corectlly or directly: http://ip_addres_of_linux_machine/dev60cgi/f60cgi
    You have to install Jinitiator to view the applet. It will be prompted for you to download it when accessing the above address.
    To be honest I was disapointed to see that forms server is very slow. And I mean very slow.
    In the end please let me excuse if I wasn't clear in some points. If you have any questions please post them on the list. I'm not an expert and I may have made mistakes, but in the same time I hope this will help you setting up forms server on your linux box.
    I forgot to mention that you will probably see a message saying that "formsweb.cfg was not found" when accesing "http://..../f60cgi". If you see this you have to options: either make a symlink "forms60" in the root directory to $ORACLE_HOME/forms60 directory or add a line in your "httpd.conf" file (I put this lines the last ones):
    #Include 6iserver configuration file for setting formsweb.cfg path
    include "/developer_home/conf/6iserver.conf"
    And in $ORACLE_HOME create a directory named "conf". In this directory create a file named "6iserver.conf" and put the following line in it:
    SetEnv FORMS60_WEB_CONFIG_FILE /developer_home/forms60/server/formsweb.cfg
    This will set your environment correctly and you will be able to see the test form. Don't forget to restart apache web server and forms listener.
    Kindly,
    Codrut Octavian Popescu

  • URGENT - Installing 817 - redhat 7.1 Gives Error in invoking target ntcontab.o

    Hi All,
    I have installed Redhat 7.1 and I am trying to install oracle 817 ee over it.
    after finishing all pre install requirments I succedded to start the installer
    - I installed jdk 118 v3
    - I added the Display and assume_kernel parameters to bash file
    but at the middle of setup it is giving the following error
    "Error in invoking target ntcontab.o of makefile
    /boot/u01/app/oracle/product/8.1.7/network/lib/ins_net_client.mk" and I tried to reply but it comes again
    here is the install log file
    "Starting install link phase of component Net8 Required Support Files
    Calling action unixActions1.7.1.5.0 registerForMake
    installMakePath = /usr/bin/make
    installMakeFileName =
    /boot/u01/app/oracle/product/8.1.7/network/lib/ins_net_client.mk
    installTarget = mkldflags
    installArguments = ORACLE_HOME=/boot/u01/app/oracle/product/8.1.7,
    undoMakeFileName = null
    undoTarget = null
    undoArguments = null
    logFile = /boot/u01/app/oracle/product/8.1.7/install/make.log
    progMsg = Linking ldflags
    Calling action unixActions1.7.1.5.0 make
    installMakePath = /usr/bin/make
    installMakeFileName =
    /boot/u01/app/oracle/product/8.1.7/network/lib/ins_net_client.mk
    installTarget = ntcontab.o
    installArguments = ORACLE_HOME=/boot/u01/app/oracle/product/8.1.7,
    undoMakeFileName = null
    undoTarget = null
    undoArguments = null
    logFile = /boot/u01/app/oracle/product/8.1.7/install/make.log
    Exception thrown from action: make
    Exception Name: MakefileException
    Exception String: Error in invoking target ntcontab.o of makefile
    /boot/u01/app/oracle/product/8.1.7/network/lib/ins_net_client.mk
    Exception Severity: 1
    Exception handling set to prompt user with options to RETRY IGNORE"
    please tell me what can I do to overcome this taking into consideration that I have downloaded and executed oracle patch published at otn.oracle.com
    waiting for your reply

    check these
    rpm -q compat-libs
    rpm -q compat-glibc
    rpm -q compat-egcs

  • Where do I find 64bit Itanium 10.2.0.1 - it has dissappeared from technet?

    Where do I find 64bit Itanium 10.2.0.1 - it has dissapeared from technet? What is the naviagation path to the old 10.2.0.1 64 bit itanium database base install? Thanx

    Hi;
    There is only 11.2 version avaliable for download at OTN. You may check e-delivery site. If you can not find also there you need to rise SR or conctact to oracle local office.
    PS:Please dont forget to change thread status to answered if it possible when u belive your thread has been answered, it pretend to lose time of other forums user while they are searching open question which is not answered,thanks for understanding
    Regard
    Helios

  • Install linux redhat for oracle 10g2

    Hi Friends,
    I will install linux redhat linux 5 for oracle 10g 2. How to created correct partition of linux to match oracle 10g 2.
    I install linux as server style. any advice?
    Thanks
    JIm

    Hi JIm
    It is true that for us DBA the OFA is the standard by excellence. You have also the quite good document on that gives you also a lot of examples.
    http://www.ss64.com/orasyntax/ofa.html
    What is a style server? Do you mean as a template server?
    Please note also that if you need to do more than 1 installation you can clone your binaries from your first installation. Ideally you should patch it to he latest release and then make your clone.
    1. tar your current binaries under /oracle/product/10.2.0/db_1
    2. copy the tar file on the target server under /export/home/oracle and then untar it.
    3. cd to new_oracle_home/oui
    4. ./runInstaller -clone -silent ORACLE_HOME="<new_oracle_home>" ORACLE_HOME_NAME="<unique_home_name>"
    read more on http://download.oracle.com/docs/cd/B19306_01/install.102/b15660/app_cloning.htm
    You can also clone your database to other targets
    1 Duplicate from source to your targets     
    1.1 Perform a database backup including archive log
    1.2 Create an Oracle password file for the auxiliary instance
    1.3 Establish Oracle Net connectivity to the auxiliary instance
    1.4 Create an initialization parameter file for the auxiliary instance
    1.5 Start the auxiliary instance in NOMOUNT mode
    1.6 Mount or open the target database
    1.7 Ensure that backups and archived redo log files are available
    1.8 Allocate auxiliary channels if needed
    1.9 Execute the DUPLICATE script
    Hope this will help you to get the templates installed.
    Cheers
    Hubert
    Edited by: Hub on Oct 25, 2008 1:52 PM

  • I just installed LV2011 and one dll from my vi won't load with the error "application configuration is incorrect"

    I just installed LV2011 and one dll from my vi won't load with the error "application configuration is incorrect", which is Windows lingo for "missing package dependencies".  All the computers at my company with 2010 loaded seem to do OK.  When I do a Dependencies Walk I get missing Visual C debug dll's missing plus IEshims and wer which both have a whole tree of dependencies missing on my machine.  The Windows install is the same "Windows XP version 2002 Service Pack 3" on my PC and the working PC's. So I'm thinking I have to uninstall 2011 and go back to 2010.  Is this correct?  Those VC debug dll's were installed on the machines with 2010 in them but were not installed in mine.
    I've heard the advice to recompile the dll with debug turned off but I don't have access to the source code.
    Thanks in advance.

    u87 wrote:
    Thanks for the reply.  This at least tells me that going back to LV2010 is not likely to solve the problem.  The missing dll's are:
    MFC90D.dll
    MSVCR90D.dll
    IESHMS.dll
    WER.dll
    And, once again, IESHMS and WER have other dependencies.  So perhaps i need to install the Visual C++ development environment.
    IESHIMS.dll is an Internet Explorer DLL that gets usually delay loaded by shdocvw.dll. As delay load it can not cause DLL load errors but only runtime errors. Maybe your DLL has it as direct dependency but that is unlikely since it does not have a documented interface.
    WER.dll is Windows error reporting for Vista/Win7.
    MFC90D.dll is the Microsoft Foundation classes and MSVCR90D.dll is the MS C runtime library, both as debug variant.
    So all the DLLs you mention are actually MS DLLs! You haven't identified the DLL that you try to access in LabVIEW that causes these error messages. IESHIMS and WER are usually delay loaded by any component that needs it and should not likely be used by non MS code.
    What is the DLL you try to load into LabVIEW and by whom? Get the provider of that DLL to provide you a non Debug build of the DLL. Installing Visual C on all the machines just to make the DLL load is not a solution, besides that it is likely not legal since I doubt you have that many licenses.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • I wanted to know how to unlock my iphone, since I had to restore it and when it restarted, it appeared this message: "The SIM card que you currently have installed in this iphone is from a carrier that is not supported under the Currently actuvation polic

    I wanted to know how to unlock my iphone, since I had to restore it and when it restarted, it appeared this message: "The SIM card que you currently have installed in this iphone is from a carrier that is not supported under the Currently actuvation policy that is assigned by the server activion. this is not a hardware issue with the iPhone. Please insert another SIM card from a supported carrier or request que this iphone be unlocked by your carrier. Please contact Apple for more information. "
    I need help, I use my phone for everything enclusive to work. I appreciate if you can help. I'm from Brazil. My name and giullia.

    Did you purchase this device from Apple or an authorized reseller? It sounds as if you had a device that was jailbroken/hacked to operate on your carrier. Upon updating the iOS, it is now locked back to the original carrier the device was locked to.
    Only the carrier the device is locked to can authorize an unlock. You will need to make contact with that carrier and see if they provide unlocking services, and if they do, if you qualify for an unlock. Otherwise, you are out of luck. One that carrier can take care of the unlocking.

  • I am trying to update ITunes from 10.4 to 10.5 I have tried from both the program, and from a download on Apple's website. Regardless, I get the following error messages: (1) Installation package for iTunes cannot be found. Try installing to find the inst

    I am trying to update ITunes from 10.4 to 10.5 I have tried from both the program, and from a download on Apple's website. Regardless, I get the following error messages: (1) Installation package for iTunes cannot be found. Try installing to find the installation package 'iTunes.msi' in a folder from which you can install iTunes.  I can't find this folder. I have tried to completely unistall iTunes through the Control Panel, but it wouldn't let me: I tried going directly to the files themselves, but cannot uninstall. Any help would be greatly appreciated. System OS: Win XP SP 3.

    Set the permissions for Everyone in the folder in which CCPackager created, to "Read/Write" enabled. This is strange since there is only an administrator account on the Mac (and that account already has read/write), but it seems to resolve the issue.

  • Error message when I try to download new iTunes as follows iPhoto 7.1.5 is already installed and was not purchased from the Mac App Store

    I am trying to download new version of iTunes from App store having purchased it on my laptop.  When I try to download on my iMac I get the following message:
    Error message when I try to download new iTunes as follows:  iPhoto 7.1.5 is already installed and was not purchased from the Mac App Store - and then I am asked if I want to buy it again. I don't understand the error message and I don't want to purchase the new version again.
    Also, since upgrading to Lion my videos (from Sanyo Xacti camera) do not play on iTunes. I can only open photos.
    Thank you.

    Make a back up of your Library. Now you can update without fear.
    Regards
    TD

  • IMac (27-inch, Mid 2011) 2.7 GHz Intel Core i5 4 GB 1333 MHz DDR3 running10.10.2 (14C1514). Trying to install Windows 7 64 bit from an install disc. When attempting to create an ISO image I can save the file in disk utility but can convert cdr to iso

    iMac (27-inch, Mid 2011) 2.7 GHz Intel Core i5 4 GB 1333 MHz DDR3 running10.10.2 (14C1514). Trying to install Windows 7 64 bit from an install disc. When attempting to create an ISO image I can save the file in disk utility but can convert cdr to iso. I select the file and the hit return as in step 8 of the Creating an
    iSO image document but the box that should open to select use iso does not open. How should I proceed?

    The Mac SuperDrive built into your Mac is the Optical drive.
    1. Insert your Windows DVD in Optical drive. Disconnect any external storage.
    2. Insert a USB2 Flash drive. This will be used to hold the BC drivers.
    3. Start BCA. Check the options to download software and Install Windows. You do not need to download Windows. The BCA will download the BC drivers to the USB.
    4. Partition your drive.
    5. You can see the Windows installer screens at https://help.apple.com/bootcamp/mac/5.0/help/#/bcmp173b3bf2.

  • Still trying to install CS2 on Windows 7 from download

    This is my third or forth post.  I have:
    Downloaded CS2 from the downloads page.  I installed it using the serial number on that page.  When I try to start Photoshop, it loads but then up pops a message saying "your user name, organaization or serial number are invalid", and then it quits.
    It was suggested that I probably have a file somewhere on my computer with info in it from my original attempt to install from my disks.  I have read the Adobe writeup about uninstalling files manually and followed all the directions.  I could not find any of those files on my machine.  It's true, I did try to install CS2 from my disks first and then unistalled it when I was told I could no longer activate that serial number.  I unistalled using the Windows "remove/repair" option.  I agree that there is probably a file lurking somewhere on my computer that has the old info in it but WHERE IS IT??  What's worse is the instructions for manual uninstall use directory names that Windows 7 doesn't use, but I did a search on every file name and didn't find anything.
    I have spent so many hours on this, it's getting depressing.
    Now what??
    All I need is Photoshop.   I don't really need the rest of the Suite.

    If you just want photoshop cs2 then use the single installer for photoshop cs2 instead of the suite installer.
    Unistall what you installed and then use the single installer for photoshop cs2.

  • How do I do a clean install from Lion download

    how do I do a clean install from Lion download ?
    My old tower will only stretch to Lion which I have had to download and installed it following the instructions.
    My local Applestore genius has told me to do a clean install but I don't have or can't find a copy of the Lion osX to use.
    Applegadge

    Welcome to the Apple Support Communities
    If you are already using OS X Lion, use OS X Recovery to reinstall OS X and erase the disk. See > http://support.apple.com/kb/HT4718
    Follow these steps:
    1. Make a backup of the data you don't want to lose after erasing the hard disk.
    2. Start your computer holding Command and R keys to start in OS X Recovery, and open Disk Utility.
    3. Choose "Macintosh HD" or the OS X partition in the sidebar, go to the Erase tab and erase the disk.
    4. Close Disk Utility and reinstall OS X

  • I have 10.6.8 and am just installing logic pro 9. I am downloading the extra 20gig of material. I am installing Logic on my laptop as well and dont want to download the extra 20 gig again. How do i go about transferring it from the computer to the laptop?

    Hi
    I am using OS 10.6.8 and just installing logic pro 9. I am downloading the extra 20gig of material - the additional content packages. I am installing Logic on my laptop as well and dont want to download the extra 20 gig again. How do i go about transferring it from the computer to the laptop?
    Thanks

    And now a second newbie question. I have downloaded the additional content and booted up logic for the first time, but the apple loops have not installed and logic is asking me to reinstall the apple loops. But how do I do that? I can see they are in the libray so have downloaded.
    Thanks

  • Using Windows 8.1 with Directx11, when I lauch Photoshop Elements Organizer, I see the error message "DirectX could not be initialized. Please be sure that it is installed on your system. You can download the latest DirectX installer from:[URL] I have the

    Using Windows 8.1 with Directx11, when I lauch Photoshop Elements 12 Organizer, I see the error message "DirectX could not be initialized. Please be sure that it is installed on your system. You can download the latest DirectX installer from:[URL] I have the latest version, Directx11, as verified by running dxdiag.

    Maybe you need to enable Direct Play under Legacy Components in the Turn Windows Features on or off dialog.
    1. Right click on the windows start Logo on the taskbar, select Control Panel and click on Programs
    2. Under Programs and Features click on Turn Windows Features on or off and then under Legacy Components enable Direct Play

Maybe you are looking for