Oracle on Linux - opinions ?

I'm after a source of info relating to the pro's and con's of running Oracle 8i on a Linux platform. If anyone can suggest a suitable Website or independant White paper that would be great ! Thanks.

For the record, we support Oracle 8i and Oracle Applications 11i on a number of platforms including Sun, NT/2000, Linux and HP-UX so I have no bones to pick with any vendor (or rather, I have bones to pick with nearly all).
For my money, Sun is hands down the most stable platform for Oracle but you pay up front for not having to pull your hair out, later. In stark contrast, the Linux du jour will be cheap on startup costs but better hope that you aren't paying your dba/system admininstrator by the hour (more, later).
Somewhere in the middle (muddle) is NT/2000 which seems to install fairly easily and provides a GUI interface to almost everything which keeps you from having to know what you are doing, but, NT/2000 seems to hang, inexplicably, from time to time, even on a fresh install, so I could not rate it the most reliable platform. Also, the 8i/Active Directory integration stinks. Better to scrap it and get a real-life LDAP server if you are going to use LDAP for authentication.
Now, to Linux. The problem, here, is complicated. First of all, you have a couple of kernels to choose from (not RedHat/Corel, rather, 2.2.x versus 2.4.x) each of which has strengths and weaknesses. Then, you have what the vendors have done to Linux, which frequently makes it worse. For example, RedHat decided to release 7.0 with a developmental version of the C compiler (2.96) which they probably thought that they could do because they now own Cygnus, but I ended up having to strip it down and build a Linux From Scratch (LFS) system, just so I had some purity.
You could go to RedHat 6.0/6.1/6.2 but then make sure that your Linux box isn't on the Internet because you have enough holes in the OS to walk a flock of cattle through.
To my mind, Oracle should skip the various vendor implementations of Linux and, instead, release a reference implementation on an LFS system. It would be far cleaner and vendor neutral and besides, if you want Oracle you probably don't want most of the garbage that comes from commercial Unix vendors, anyway, so LFS makes sense.
In any event, don't expect the Oracle on Linux install to be easy unless you get the vendor (e.g. RedHat) release, and then you have to deal with the vendor quirks in the OS. If you want a cheap platform, spend a few extra bucks and get 2000/Intel or, get a cheap Sun on eBay and get a near bullet-proof implementation where at least you won't have to worry about whether it is a Service Pack or libc version issue.

Similar Messages

  • Newbie wants to install Oracle on Linux

    Hello there
    As a novice, I'm keen to get cracking on installing Oracle on
    Linux.
    As yet I have not purchased a copy of Linux. I intend running my
    setup on an IBM 560E Thinkpad with 80 Meg of RAM.
    I'm interested to hear opinions on which versions of Linux
    would result in the least hassle and / or most functionality etc.
    Thanks in advance
    John
    null

    Hi John,
    I'm also quite new to linux/"free OS". The first thing you will
    need to do is get a Linux distribution. I personnaly tried 3
    different ways : Slackware, Red Hat and FreeBSD (which is not
    linux, but is in some ways compatible with linux binaries).
    The best I can say is : If you are new to linux, take Red Hat as
    it is most simple and straight forward to install. Drawback : you
    need 450 MB disk space for installation as Red Hat install you
    everything you need (and perhaps more than that) to have a
    running workstation (including a running X Window GUI and lots
    of programs). And that is also the + point of Red Hat. To give
    you an idea, I felt Red Hat easier to install on my Compaq
    Presario than any Windows...
    On the other hand Slackware is far more flexible if you know what
    you are doing... (so was FreeBSD a year ago when I tested it).
    Finally, you mention that you will be installing on a laptop. I'm
    not sure that the best idea since laptops are not among the
    easyest to configure. Be sure to check www.linux.org (in the
    material compatibility section) where the could have some good
    tips to get you up and running.
    I haven't installed Oracle yet so I cannot say much on this.
    Cheers
    Paul
    John (guest) wrote:
    : Hello there
    : As a novice, I'm keen to get cracking on installing Oracle on
    : Linux.
    : As yet I have not purchased a copy of Linux. I intend running
    my
    : setup on an IBM 560E Thinkpad with 80 Meg of RAM.
    : I'm interested to hear opinions on which versions of Linux
    : would result in the least hassle and / or most functionality
    etc.
    : Thanks in advance
    : John
    null

  • Problems dual booting Windows Vista with Oracle Enterprise Linux 4

    I tried dual booting my sony laptop which came pre installed with windows Vista,After a successful installation,windows Vista boots fine,but Oracle enterprise linux just stops booting at this point " Starting Udev...................................................(OK)
    Initializing hardware....Storage network"
    It's posibly a hardware compatibility problem but I dont know why I get stuck at this point.Can anyone help please?

    hi,
    r u getting this error while installing oel or after installation?
    which version of oel u r installing?
    u may get this error probably due to hard disk (usually sata) compatility with linux.
    --Regards
    Xaheer

  • Question regarding Oracle and Linux on VMware

    Hello,
    I carefuly read the paper on Oracle and Linux on Your Own VMware and I'm missing a point.
    The paper explains how to start a cluster on a single host in a single Linux VM on VMware.
    So, there are 2 instances of Oracle 10g DB on the same Linux VM inside VMware. What does allow that?
    Is it possible to run 2 instances on any (single) Linux box, or is VMware required? If VMware is not required, why this complication in that paper? If VMware is required, what does it bring that make running 2 cluster instances on the same host possible?
    Many thanks for your help.

    userLynx wrote:
    I have an oracle database (10.2) and I have a query that needs to compare data on the Oracle database to data on a MS SQL server DB. I'm using a DB Link between the two databases.
    How would I compare the date fields?
    I have a table that has a date as one of the fields and I need to restrict the records where the date is equal to the date on SQL, however the formats are different:
    My query is as follows:
    SELECT mkt_css_name,
    pmv_rqst_corp_id,
    pmv_rqst_source,
    'G',
    pmv_css_acct_no,
    eq.start_date
    FROM power_move@cmdt,
    enroll_que@tcis eq,
    marketer@cmdt
    WHERE eq.css_account_number = pmv_css_acct_no
    AND eq.requestor_type = 'P'
    AND eq.status IN ('A','P','G','S')
    AND eq.marketer_id = mkt_seq_no
    AND pmv_service_type IN ('G','D')
    And Pmv_Gas_Mktr_No = Eq.Marketer_Id
    AND pmv_received_timestamp= eq.enroll_date ;
    The problem is that the date is stored in Oracle in the following format: DD-MON-YYYY and in SQL as 'YYYY-DD-MM HH:MI:SSSSSS'
    for example: Data in Oracle would be 27-JAN-2012 and in SQL as 2012-01-27 00:00:00.000
    I get an error when I compile.
    How do you reconcile the formats when the syntax is different between databases?
    Thanks, SeanDATE datatypes do NOT have any "format"
    DATE datatype is stored in internal binary notation.
    use TO_CHAR to display, present & compare the DATE datatypes

  • Yast installation problem on Oracle Enterprise Linux Rel 5 Upd 2

    Hi,
    I installed Oracle Enterprise Linux Rel 5 Upd 2 on a new server (Intel 64 bit) with the downloads from oracle
    (Enterprise-R5-U2-Server-x86_64-disc1.iso till Enterprise-R5-U2-Server-x86_64-disc6.iso).
    Then I wanted to install Yast for administering my machine and downloaded yast_el5_x86_64.tar, again from Oracle. Running the Yast install routine it required the perl-Digest-SHA package. I downloaded that from Oracle ULN and installed it.
    Now, running the Yast install routine again, I get a bunch of warnings and errors about failed dependencies and NOKEY's.
    Here I copied a part of it:
    warning: liby2util-2.13.8-0.12.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 1e5e0159
    warning: blocxx-1.0.0-17.2.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 1e5e0159
    warning: libxcrypt-2.4-12.2.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 1e5e0159
    warning: testutf8-1.0-1.2.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 1e5e0159
    warning: yast2-core-2.13.39-0.3.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 1e5e0159
    warning: hwinfo-13.57-2.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 1e5e0159
    warning: yast2-hardware-detection-2.13.7-0.9.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 1e5e0159
    warning: libzypp-2.15.10-0.4.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 1e5e0159
    error: Failed dependencies
    +     libboost_filesystem.so.2()(64bit) is needed by libzypp-2.15.10-0.4.x86_64+
    +     libboost_regex.so.2()(64bit) is needed by libzypp-2.15.10-0.4.x86_64+
    warning: yast2-pkg-bindings-2.13.117-0.13.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 1e5e0159
    error: Failed dependencies:
    +     libzypp >= 2.4.0 is needed by yast2-pkg-bindings-2.13.117-0.13.x86_64+
    +     libzypp.so.215()(64bit) is needed by yast2-pkg-bindings-2.13.117-0.13.x86_64+
    warning: yast2-2.13.104-1.0.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 1e5e0159
    error: Failed dependencies:
    +     yast2-pkg-bindings >= 2.13.111 is needed by yast2-2.13.104-1.0.x86_64+
    warning: yast2-network-2.13.98-0.7.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 1e5e0159
    error: Failed dependencies:
    +     yast2 >= 2.13.90 is needed by yast2-network-2.13.98-0.7.x86_64+
    warning: perl-Parse-RecDescent-1.80-259.2.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 1e5e0159
    warning: perl-gettext-1.05-13.2.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 1e5e0159
    warning: perl-X500-DN-0.28-133.2.x86_64.rpm: Header V3 DSA signature: NOKEY, key ID 1e5e0159
    warning: yast2-pam-2.13.5-0.11.noarch.rpm: Header V3 DSA signature: NOKEY, key ID 1e5e0159
    error: Failed dependencies:
    +     yast2 is needed by yast2-pam-2.13.5-0.11.noarch+
    warning: yast2-mail-aliases-2.13.8-0.11.noarch.rpm: Header V3 DSA signature: NOKEY, key ID 1e5e0159
    error: Failed dependencies:
    +     libzypp.so.215()(64bit) is needed by yast2-perl-bindings-2.13.11-0.17.x86_64+
    +     yast2 is needed by yast2-security-2.13.7-0.11.noarch+
    +     yast2-pam is needed by yast2-security-2.13.7-0.11.noarch+
    +     yast2 is needed by yast2-ldap-client-2.13.27-0.11.noarch+
    +     yast2-network is needed by yast2-ldap-client-2.13.27-0.11.noarch+
    +     yast2-pam >= 2.13.5 is needed by yast2-ldap-client-2.13.27-0.11.noarch+
    +     yast2 >= 2.13.70 is needed by yast2-country-2.13.52-0.9.x86_64+
    +     yast2 >= 2.13.85 is needed by yast2-installation-2.13.192-0.4.noarch+
    +     yast2-network is needed by yast2-installation-2.13.192-0.4.noarch+
    +     yast2-pkg-bindings >= 2.13.101 is needed by yast2-installation-2.13.192-0.4.noarch+
    +     yast2 is needed by yast2-users-2.13.55-0.4.x86_64+
    +     yast2-pam is needed by yast2-users-2.13.55-0.4.x86_64+
    What's wrong here and what is to do?
    I only installed packages from Oracle on a newly installed machine. And I didn't find documentation regarding these problems.
    Any help would be greatly appreciated,
    Roger

    error: Failed dependencies
    + libboost_filesystem.so.2()(64bit) is needed by libzypp-2.15.10-0.4.x86_64+
    + libboost_regex.so.2()(64bit) is needed by libzypp-2.15.10-0.4.x86_64+As error message clearly states you need to install additional OS packages (included in installation media or in online repository) to solve the dependencies.

  • Unable to auto start database/listener/EM on Oracle Enterprise Linux 5

    All Experts
    I have install oracle 11g on Oracle Enterprize Linux 5 successfully.
    done all post installating steps, but when i restart server oracle listener/database/EM not automatically start.
    Please guide what is wron (server dbora error: /bin/sh: :No such file or directory).
    1. Log in as the root user
    2. Edit the oratab file (SID=Y)
    3. Create a file called dbora
    4.Run chmod and chgrp on the dbor file
    # chgrp dba dbora
    # chmod 750 dbora
    6.Creat symbolic links to the dbora script
    # ln -s /etc/init.d/dbora /etc/rc.d/rc0.d/K01dbora
    # ln -s /etc/init.d/dbora /etc/rc.d/rc3.d/S99dbora
    # ln -s /etc/init.d/dbora /etc/rc.d/rc5.d/S99dbora
    7. add service
    # chkconfig --add dbora
    # chkconfig –list dbora
    0:off 1:off 2:off 3:on 4:off 5:on 6:off
    # ls -l /etc/rc*.d/*dbora
    # !/bin/sh -X
    # chkconfig: 35 99 10
    # description: Start and stop the Oracle database, listener, EM, and iSQLPlus
    # Change the value of ORACLE_HOMe to specify the correct Oracle Home Firectory for your installation.
    # Change the value of ORACLE to the login name of the oracle owner at your site
    ORACLE_HOME=/oradisk/app/oracle/product/11.1.0/db
    ORACLE=oracle
    PATH=${PATH}:$ORACLE_HOME/bin
    HOST="hostname"
    PLATFORM="uname"
    export ORACLE_HOME PATH
    if [ ! -f $ORACLE_HOME/bin/dbstart ]
    then
    echo "Oracle startup: cannot start"
    exit
    fi
    case $1 in
    'start')
    su - $ORACLE -c "$ORACLE_HOME/bin/dbstart $ORACLE_HOME"
    'stop')
    su - $ORACLE -c "$ORACLE_HOME/bin/dbshut $ORACLE_HOME"
    echo "usage: $0 {start|stop}"
    exit
    esac
    exit

    does the script work when you log on to your freshly started system, logon as root and execute /etc/init.d/dbora start?
    the script does not have to have group membership of the dba group.
    also, do not create symlinks yourself.
    by adding the service using chkconfig the script is started and stopped as indicated by chkconfig --list, no need to do additional steps like creating symlinks.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Installation problem oracle 11g R2 on oracle enterprise linux 5 update 5

    hello support,
    i've installation problems with oracle 11g R2 on oracle enterprise linux 5 update 5. In the section "ORACLE Net-Konfigurationsassisten" the failure "[INS-20802] Oracle NET-Konfigurationsassistent not success". What's wrong? I've followed the instructions on http://www.oracle.com/technology/pub/articles/smiley-11gr1-install.html
    I've heard the problem can occur with problems in /etc/hosts? My /etc/hosts is configured:
    # Do not remove the following line, or various programs
    # that require network functionality will fail.
    127.0.0.1          oracle localhost.localdomain localhost
    ::1          localhost6.localdomain6 localhost6
    is this ok? what can I do to bring the database-installation to success?
    Thank's for help ;-)
    Edited by: user5782904 on 09.05.2010 14:06

    Here I paste you the configuration of my latest linux box which has a similar environment like yours.
    # hostname
    vmrhel6032.quist.ch
    # domainname
    (none)
    # cat /etc/hosts
    192.168.1.205 vmrhel6032 vmrhel6032.quist.ch
    127.0.0.1     localhost  localhost.localdomain localhost4 localhost4.localdomain4
    ::1           localhost  localhost.localdomain localhost6 localhost6.localdomain6
    # cat /etc/sysconfig/network
    NETWORKING=yes
    HOSTNAME=vmrhel6032.quist.ch
    # cat /etc/sysconfig/network-scripts/ifcfg-eth0
    # Advanced Micro Devices [AMD] 79c970 [PCnet32 LANCE]
    DEVICE=eth0
    HWADDR=00:0C:29:6A:98:70
    ONBOOT=yes
    NETWORK=192.168.1.0
    NETMASK=255.255.255.0
    IPADDR=192.168.1.205
    #Thanks to your post I noted that the hostname consist already of my domain entry. Try your configuration first without domain entry. It should look like:
    # hostname
    vmrhel6032
    # domainname
    (none)
    # cat /etc/hosts
    192.168.1.205 vmrhel6032
    127.0.0.1     localhost  localhost.localdomain localhost4 localhost4.localdomain4
    ::1           localhost  localhost.localdomain localhost6 localhost6.localdomain6
    # cat /etc/sysconfig/network
    NETWORKING=yes
    HOSTNAME=vmrhel6032
    # cat /etc/sysconfig/network-scripts/ifcfg-eth0
    # Advanced Micro Devices [AMD] 79c970 [PCnet32 LANCE]
    DEVICE=eth0
    HWADDR=00:0C:29:6A:98:70
    ONBOOT=yes
    NETWORK=192.168.1.0
    NETMASK=255.255.255.0
    IPADDR=192.168.1.205
    #Otherwise use the first example and don't forget to restart your server resp. the network service. ;)

  • Installation problem with Siebel8.0 on Oracle Enterprise Linux 4 system

    We are having installation problem with Siebel8.0 on Oracle Enterprise Linux 4 system.
    Using interface, when installation come up to “Installing Wizard” window where Gateway Name Server Configuration window should take place, everything just freeze up
    Using console, after installation we obtain following errors:
    Installing Siebel Enterprise Server. Please wait...
    unable to launch: "ksh export
    LD_LIBRARY_PATH=/siebel/gtwysrvr/lib;PATH=${PATH}:.;/root/istemp8058094162222/_bundledJRE_/bin/java
    -Dtemp.dir=/root -cp /siebel/gtwysrvr/bin/setup.jar run -args LANG=ENU
    MODE=LIVE MODEL_FILE=/siebel/gtwysrvr/admin/enterprise_console.scm" error code:
    "236"(SBL-STJ-00152)
    LD_LIBRARY_PATH=/siebel/siebsrvr/lib;PATH=${PATH}:.;/root/istemp8058094162222/_bundledJRE_/bin/java
    -Dtemp.dir=/root -cp /siebel/siebsrvr/bin/setup.jar run -args LANG=ENU
    REPEAT=FALSE MODE=LIVE MODEL_FILE=/siebel/siebsrvr/admin/siebel_server.scm"
    error code: "236"(SBL-STJ-00152)
    LD_LIBRARY_PATH=/siebel/siebsrvr/mgmtagent/lib;PATH=${PATH}:.;/root/istemp8058094162222/_bundledJRE_/bin/java
    -Dtemp.dir=/root -cp /siebel/siebsrvr/mgmtagent/bin/setup.jar run -args
    LANG=ENU MODE=LIVE
    MODEL_FILE=/siebel/siebsrvr/mgmtagent/admin/mgmtagent_ses.scm" error code:
    "236"(SBL-STJ-00152)
    Running command :
    ./ssincfgw -is:javaconsole -console -args LANG=ENU MODE=LIVE MODEL_FILE=/siebel/gtwysrvr/admin/enterprise_console.scm
    Infinite loop of following error pops out:
    An error occurred during wizard bean change notification:
    java.lang.NoClassDefFoundError
    at ConfigInitialize.execute(ConfigInitialize.java:21)
    at com.installshield.wizard.StandardWizardListener.execute(StandardWizardListener.java:123)
    Is there any clue how this error can be solved??
    Thanks in advance!!
    Gordon
    Message was edited by:
    user605023

    I'm facing the same error message while install Siebel 8.0 on OEL. But before I had this ksh problem, it complains about disc space first, and I actually has plenty of disk space under the directory (it needs only 0.7 G and I have 17G free). Anybody has encountered such problem before?
    /net/sdcnas05/vol/engfs01/v_sia/8.0SIA[20405|http://forums.oracle.com/forums/]/Release/Linux/Server/Siebel_Enterprise_Server
    -bash-3.00$ ./setuplinux -is:javaconsole -console
    Initializing InstallShield Wizard........
    Initializing InstallShield Wizard........
    Launching InstallShield Wizard........
    0% 25% 50% 75% 100%
    Welcome to the InstallShield Wizard for Siebel Enterprise Server
    The InstallShield Wizard will install Siebel Enterprise Server on your
    computer.
    To continue, choose Next.
    Siebel Enterprise Server
    Siebel Systems
    Press 1 for Next, 3 to Cancel or 4 to Redisplay [1]
    Siebel Enterprise Server Install Location
    Please specify a directory or press Enter to accept the default directory.
    Directory Name: [siebel] /slot/ems1115/appmgr/20405
    Press 1 for Next, 2 for Previous, 3 to Cancel or 4 to Redisplay [1]
    Please select the products you wish to install.
    [ ] 1 - Gateway Name Server
    [ ] 2 - Siebel Server
    [ ] 3 - Database Configuration Utilities
    [ ] 4 - EAI Connectors
    To select an item enter its number, or 0 when you are finished: [0]: 1
    [X] 1 - Gateway Name Server
    [ ] 2 - Siebel Server
    [ ] 3 - Database Configuration Utilities
    [ ] 4 - EAI Connectors
    To select an item enter its number, or 0 when you are finished: [0]: 2
    [X] 1 - Gateway Name Server
    [X] 2 - Siebel Server
    [ ] 3 - Database Configuration Utilities
    [ ] 4 - EAI Connectors
    To select an item enter its number, or 0 when you are finished: [0]:
    Press 1 for Next, 2 for Previous, 3 to Cancel or 4 to Redisplay [1]
    Configuring uninstallers. Please wait...
    0% 25% 50% 75% 100%
    Choose the setup type that best suits your needs.
    [X] 1 - Typical
    [ ] 2 - Compact
    [ ] 3 - Custom
    To select an item enter its number, or 0 when you are finished: [0]
    Press 1 for Next, 2 for Previous, 3 to Cancel or 4 to Redisplay [1]
    Please select the languages you wish to install.
    [X] 1 - enu - English (American)
    [ ] 2 - fin - Finnish
    [ ] 3 - kor - Korean
    [ ] 4 - cht - Chinese (Traditional)
    [ ] 5 - ita - Italian (Standard)
    [ ] 6 - esn - Spanish (Modern)
    [ ] 7 - deu - German (Standard)
    [ ] 8 - chs - Chinese (Simplified)
    [ ] 9 - tha - Thai
    [ ] 10 - dan - Danish
    [ ] 11 - heb - Hebrew
    [ ] 12 - fra - French (Standard)
    [ ] 13 - nld - Dutch (Standard)
    [ ] 14 - ptb - Portuguese (Brazilian)
    [ ] 15 - csy - Czech
    [ ] 16 - jpn - Japanese
    [ ] 17 - ptg - Portuguese (Standard)
    [ ] 18 - ara - Arabic (Sa`udi)
    [ ] 19 - sve - Swedish
    To select an item enter its number, or 0 when you are finished: [0]
    Press 1 for Next, 2 for Previous, 3 to Cancel or 4 to Redisplay [1]
    {color:#ff0000}*Drive "/slot/ems1115/appmgr/20405" does not have enough space to install the*
    selected configuration. Please free up "766446" KB on drive
    *"/slot/ems1115/appmgr/20405" before continuing.*{color}
    -bash-3.00$ pwd
    /slot/ems1115/appmgr/20405
    -bash-3.00$ df -h .
    Filesystem Size Used Avail Use% Mounted on
    sdc1002nap-vlan1:/vol/ems_39426_1115
    71G 55G 17G 77% /slot/ems1115

  • Oracle Application Server 10g R2 installation on Oracle Enterprise Linux 5

    Hi there ...
    I want to install Oracle Application Server 10g R2 on Oracle Enterprise Linux 5. Can I get an installation instructions (or steps) for that?
    Oracle installation guide mentions Suse 9 & 8 and Red hat 3 & 2. There is nothing related to Oracle Enterprise Linux 5 or 4?
    Thanks

    Yes there is one for 10gR3 too:
    Note:465159.1 Oracle Application Server 10g (10.1.3) Requirements for Linux OEL 5 and RHEL 5
    Thanks
    Shail

  • Oracle Enterprise Linux 6.1 Installation Fails during Disk Partitioning

    Hi,
    I've tried to install Oracle Enterprise Linux 6.1 by creating a Virtual Machine using Oracle VM Virtual Box in my laptop with Window XP host OS (NTFS filesystem), by following the below steps.
    1) Installed Oracle VM Virtual Box
    2) Created a new Virtual machine using a virtual box by specifying the two .iso images i.e OracleLinux-R6-U1-Server-i386-dvd.iso and boot.iso as the boot device and by specifying the following Disk files (.vdi) as follows.
    2.1) Oracle_Enterprise_Linux_6_1_Root_Disk_1.vdi - For the / (i.e Root) partition - Dynamically expanded storage - 10 GB - ext4
    2.2) Oracle_Enterprise_Linux_6_1_Swap_Disk_1.vdi - For the swap partition - Dynamically expanded storage - 10 GB - swap
    2.3) Oracle_Enterprise_Linux_6_1_User_Disk_1.vdi - For the /usr partition - Dynamically expanded storage - 20 GB - ext4
    2.4) Oracle_Enterprise_Linux_6_1_Home_Disk_1.vdi - For the /home partition - Dynamically expanded storage - 10 GB - ext4
    But while installing OEL 6.1 after specifying the partitions, the installer get hung and throws an error as bug while creating the ext4 filesystem on /dev/sda1.
    I tried to specify the default 8 GB for all the above four partitions, the installer successfully continues without any issues. But if i specify any partition more than 8 GB, it fails.
    Is there anyway I can solve this problem by creating the above specified partitions with the above size ? Why does it fail if i specify any size more than 8 GB ?
    Thanks
    Harish

    8 GB is a common limit for systems were the boot loader or system BIOS imposes an addressable space limit for the boot partition. In such situations, the system boot partition has to fit within the first 8 GB physical boundary of the harddrive.
    Your setup seems a bit unusual. Why do you create separate disks for each Linux partition?
    Normally the Linux installer creates necessary partitions on the disk, including a /boot partition that is usually only 100 MB in size.
    What are you doing with boot.iso? You should be able to start the system from the main installation DVD or .iso image. You might also want to install x86_64 Linux, unless your hardware is really very old and does not support the 64-bit extension. You can run 32-bit software on a n 64-bit OS, but not the other way around and you will limit your software to 32-bit only.

  • Error during Oracle installation in Oracle Enterprise Linux

    Hi All,
    I was trying to install Oracle 10g in Oracle Enterprise Linux, and I'm getting the following error when I give the command *./runInstall*.
    [oracle@localhost database]$ ./runInstaller -responseFile /home/oracle/database/response/enterprise1.rsp -nowelcome
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be redhat-3, SuSE-9, redhat-4, UnitedLinux-1.0, asianux-1 or asianux-2
    Passed
    All installer requirements met.
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2012-04-05_12-58-11AM. Please wait ...[oracle@localhost database]$ Oracle Universal Installer, Version 10.2.0.1.0 Production
    Copyright (C) 1999, 2005, Oracle. All rights reserved.
    Can't connect to X11 window server using '127.0.0.1:0.0' as the value of the DISPLAY variable.
    127.0.0.1:0.0
    127.0.0.1:0.0
    OUI-10025:Unable to start an interactive install session because of the following error:Can't connect to X11 window server using '127.0.0.1:0.0' as the value of the DISPLAY variable. The DISPLAY environment variable should be set to <hostname or IP address>:<screen>, where the <screen> is usually '0.0'.
    OUI-10026:Depending on the Unix Shell, you can use one of the following commands as examples to set the DISPLAY environment variable:
    - For csh: % setenv DISPLAY 192.168.1.128:0.0
    - For sh, ksh and bash: $ DISPLAY=192.168.1.128:0.0; export DISPLAY
    Use the following command to see what shell is being used:
    echo $SHELL
    Use the following command to view the current DISPLAY environment variable setting:
    echo $DISPLAY
    - Make sure that client users are authorized to connect to the X Server.
    OUI-10027:To enable client users to access the X Server, open an xterm, dtterm or xconsole as the user that started the session and type the following command:
    % xhost +
    To test that the DISPLAY environment variable is set correctly, run a X11 based program that comes with the native operating system such as 'xclock':
    % <full path to xclock... see below>
    If you are not able to run xclock successfully, please refer to your PC-X Server or OS vendor for further assistance.
    Typical path for 'xclock': '/usr/X11R6/bin/xclock'
    I have tried to set the DISPLAY variable to my IP address, but it still gives the same issue.
    Please find the logs for the same:
    [oracle@localhost database]$ /sbin/ifconfig
    eth0 Link encap:Ethernet HWaddr 00:0C:29:95:3B:4F
    inet addr:192.168.64.128 Bcast:192.168.64.255 Mask:255.255.255.0
    inet6 addr: fe80::20c:29ff:fe95:3b4f/64 Scope:Link
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:532694 errors:0 dropped:0 overruns:0 frame:0
    TX packets:288167 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:792077163 (755.3 MiB) TX bytes:16147337 (15.3 MiB)
    Interrupt:193 Base address:0x2024
    lo Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    inet6 addr: ::1/128 Scope:Host
    UP LOOPBACK RUNNING MTU:16436 Metric:1
    RX packets:3280 errors:0 dropped:0 overruns:0 frame:0
    TX packets:3280 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:1739143 (1.6 MiB) TX bytes:1739143 (1.6 MiB)
    [oracle@localhost database]$ export DISPLAY=192.168.64.128:0.0
    [oracle@localhost database]$ echo $DISPLAY
    192.168.64.128:0.0
    Please suggest on what can be done as this is the last step for the Oracle installation which I'm unable to complete.
    Let me know for any more details needed.
    Thanks
    Ravi
    Ph: +919583750774

    Hi,
    Thanks for the immediate response.
    Now I'm getting the following error:
    [oracle@scondw01 database]$ ./runInstaller -force -responseFile /u01/database/response/enterprise1.rsp -silent -nowelcome
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be redhat-3, SuSE-9, redhat-4, UnitedLinux-1.0, asianux-1 or asianux-2
    Passed
    All installer requirements met.
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2012-04-05_09-10-03PM. Please wait ...[oracle@scondw01 database]$ Oracle Universal Installer, Version 10.2.0.1.0 Production
    Copyright (C) 1999, 2005, Oracle. All rights reserved.
    Unexpected Signal : 11 occurred at PC=0xB7C297CE
    Function=(null)
    Library=/tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/i386/client/libjvm.so
    NOTE: We are unable to locate the function name symbol for the error
    just occurred. Please refer to release documentation for possible
    reason and solutions.
    Current Java thread:
    at oracle.sysman.oii.oiip.osd.unix.OiipuUnixOps.chgrp(Native Method)
    at oracle.sysman.oii.oiip.oiipg.OiipgBootstrap.changeGroup(OiipgBootstrap.java:1206)
    at oracle.sysman.oii.oiip.oiipg.OiipgBootstrap.writeInvLoc(OiipgBootstrap.java:900)
    at oracle.sysman.oii.oiip.oiipg.OiipgBootstrap.updateInventoryLoc(OiipgBootstrap.java:408)
    at oracle.sysman.oii.oiic.OiicSessionInterfaceManager.doInvSetupOperations(OiicSessionInterfaceManager.java:400)
    at oracle.sysman.oii.oiic.OiicSilentInterfaceManager.doInvSetupOperations(OiicSilentInterfaceManager.java:679)
    at oracle.sysman.oii.oiic.OiicInvSetupWCCE.doOperation(OiicInvSetupWCCE.java:217)
    at oracle.sysman.oii.oiif.oiifb.OiifbCondIterator.iterate(OiifbCondIterator.java:171)
    at oracle.sysman.oii.oiic.OiicPullSession.doOperation(OiicPullSession.java:1273)
    at oracle.sysman.oii.oiic.OiicSessionWrapper.doOperation(OiicSessionWrapper.java:289)
    at oracle.sysman.oii.oiic.OiicInstaller.run(OiicInstaller.java:546)
    at oracle.sysman.oii.oiic.OiicInstaller.runInstaller(OiicInstaller.java:929)
    at oracle.sysman.oii.oiic.OiicInstaller.main(OiicInstaller.java:866)
    Dynamic libraries:
    08048000-08056000 r-xp 00000000 08:01 511751 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/bin/java
    08056000-08059000 rwxp 0000d000 08:01 511751 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/bin/java
    a4d43000-a4d4a000 r-xp 00000000 08:01 659354 /tmp/OraInstall2012-04-05_09-10-03PM/oui/lib/linux/liboraInstaller.so
    a4d4a000-a4d4b000 rwxp 00006000 08:01 659354 /tmp/OraInstall2012-04-05_09-10-03PM/oui/lib/linux/liboraInstaller.so
    a4d4b000-a4d88000 r-xs 00000000 08:01 659257 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/jewt4-nls.jar
    a4d88000-a4f2f000 r-xs 00000000 08:01 659256 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/jewt4.jar
    a4f2f000-a4f67000 r-xs 00000000 08:01 659275 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/OraPrereq.jar
    a4f67000-a5085000 r-xs 00000000 08:01 659274 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/classes12.jar
    a5085000-a508d000 r-xs 00000000 08:01 659272 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/swingaccess.jar
    a508d000-a50da000 r-xs 00000000 08:01 659255 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/ewt3-nls.jar
    a50da000-a50e0000 r-xs 00000000 08:01 659273 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/ewt3-swingaccess.jar
    a50e0000-a5365000 r-xs 00000000 08:01 659254 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/ewt3.jar
    a5365000-a538c000 r-xs 00000000 08:01 659259 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/help4-nls.jar
    a538c000-a53f1000 r-xs 00000000 08:01 659258 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/help4.jar
    a53f1000-a54a6000 r-xs 00000000 08:01 659271 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/oracle_ice.jar
    a54a6000-a54c3000 r-xs 00000000 08:01 659269 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/InstHelp_zh_TW.jar
    a54c3000-a54e0000 r-xs 00000000 08:01 659268 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/InstHelp_zh_CN.jar
    a54e0000-a54fe000 r-xs 00000000 08:01 659267 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/InstHelp_pt_BR.jar
    a54fe000-a551b000 r-xs 00000000 08:01 659266 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/InstHelp_ko.jar
    a551b000-a5537000 r-xs 00000000 08:01 659265 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/InstHelp_ja.jar
    a5537000-a5554000 r-xs 00000000 08:01 659264 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/InstHelp_it.jar
    a5554000-a5571000 r-xs 00000000 08:01 659263 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/InstHelp_fr.jar
    a5571000-a558e000 r-xs 00000000 08:01 659262 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/InstHelp_es.jar
    a558e000-a55ad000 r-xs 00000000 08:01 659261 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/InstHelp_de.jar
    a55ad000-a55c9000 r-xs 00000000 08:01 659260 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/InstHelp.jar
    a55c9000-a55ea000 r-xs 00000000 08:01 659270 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/InstImages.jar
    a55ea000-a55f0000 r-xs 00000000 08:01 659345 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/ojmisc.jar
    a55f0000-a56ce000 r-xs 00000000 08:01 659342 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/emCfg.jar
    a56ce000-a56e1000 r-xs 00000000 08:01 659344 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/orai18n-mapping.jar
    a56e1000-a57e1000 r-xs 00000000 08:01 659343 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/orai18n-collation.jar
    a57e1000-a5866000 r-xs 00000000 08:01 659341 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/xml.jar
    a5866000-a5868000 r-xs 00000000 08:01 659349 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/OraInstallerNet.jar
    a5868000-a5876000 r-xs 00000000 08:01 659350 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/share.jar
    a5876000-a593d000 r-xs 00000000 08:01 659347 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/srvm.jar
    a593d000-a5a65000 r-xs 00000000 08:01 659346 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/xmlparserv2.jar
    a5a65000-a5a72000 r-xs 00000000 08:01 659351 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/oneclick.jar
    a5a72000-a5e0f000 r-xs 00000000 08:01 659348 /tmp/OraInstall2012-04-05_09-10-03PM/oui/jlib/OraInstaller.jar
    a5e0f000-a5e2b000 r-xs 00000000 08:01 642421 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/ext/sunjce_provider.jar
    a5e2b000-a5ee6000 r-xs 00000000 08:01 642420 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/ext/localedata.jar
    a5ee6000-a5ef3000 r-xs 00000000 08:01 642419 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/ext/ldapsec.jar
    a5ef3000-a5ef6000 r-xs 00000000 08:01 642418 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/ext/dnsns.jar
    a60fa000-a62fa000 r-xp 00000000 08:01 330503 /usr/lib/locale/locale-archive
    b5bfb000-b618a000 r-xs 00000000 08:01 511764 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/charsets.jar
    b618a000-b619b000 r-xs 00000000 08:01 511802 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/jce.jar
    b619b000-b6274000 r-xs 00000000 08:01 511803 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/jsse.jar
    b6274000-b628a000 r-xs 00000000 08:01 196225 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/sunrsasign.jar
    b62d4000-b79c2000 r-xs 00000000 08:01 511810 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/rt.jar
    b79c2000-b79d6000 r-xp 00000000 08:01 659151 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/i386/libzip.so
    b79d6000-b79d9000 rwxp 00013000 08:01 659151 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/i386/libzip.so
    b79d9000-b79f9000 r-xp 00000000 08:01 659136 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/i386/libjava.so
    b79f9000-b79fb000 rwxp 0001f000 08:01 659136 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/i386/libjava.so
    b79fb000-b7a0b000 r-xp 00000000 08:01 659150 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/i386/libverify.so
    b7a0b000-b7a0d000 rwxp 0000f000 08:01 659150 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/i386/libverify.so
    b7a0d000-b7a16000 r-xp 00000000 08:01 344676 /lib/libnss_files-2.3.4.so
    b7a16000-b7a17000 r-xp 00008000 08:01 344676 /lib/libnss_files-2.3.4.so
    b7a17000-b7a18000 rwxp 00009000 08:01 344676 /lib/libnss_files-2.3.4.so
    b7a1f000-b7a23000 rwxs 00000000 08:01 249425 /tmp/hsperfdata_oracle/5761
    b7a23000-b7a44000 r-xp 00000000 08:01 344698 /lib/tls/libm-2.3.4.so
    b7a44000-b7a45000 r-xp 00020000 08:01 344698 /lib/tls/libm-2.3.4.so
    b7a45000-b7a46000 rwxp 00021000 08:01 344698 /lib/tls/libm-2.3.4.so
    b7a46000-b7a58000 r-xp 00000000 08:01 344660 /lib/libnsl-2.3.4.so
    b7a58000-b7a59000 r-xp 00011000 08:01 344660 /lib/libnsl-2.3.4.so
    b7a59000-b7a5a000 rwxp 00012000 08:01 344660 /lib/libnsl-2.3.4.so
    b7a5e000-b7a66000 r-xp 00000000 08:01 659161 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/i386/native_threads/libhpi.so
    b7a66000-b7a67000 rwxp 00007000 08:01 659161 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/i386/native_threads/libhpi.so
    b7a67000-b7e6d000 r-xp 00000000 08:01 659159 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/i386/client/libjvm.so
    b7e6d000-b7e88000 rwxp 00405000 08:01 659159 /tmp/OraInstall2012-04-05_09-10-03PM/jre/1.4.2/lib/i386/client/libjvm.so
    b7e9c000-b7fc1000 r-xp 00000000 08:01 344696 /lib/tls/libc-2.3.4.so
    b7fc1000-b7fc3000 r-xp 00124000 08:01 344696 /lib/tls/libc-2.3.4.so
    b7fc3000-b7fc5000 rwxp 00126000 08:01 344696 /lib/tls/libc-2.3.4.so
    b7fc7000-b7fc9000 r-xp 00000000 08:01 344656 /lib/libdl-2.3.4.so
    b7fc9000-b7fca000 r-xp 00001000 08:01 344656 /lib/libdl-2.3.4.so
    b7fca000-b7fcb000 rwxp 00002000 08:01 344656 /lib/libdl-2.3.4.so
    b7fcc000-b7fda000 r-xp 00000000 08:01 344700 /lib/tls/libpthread-2.3.4.so
    b7fda000-b7fdb000 r-xp 0000d000 08:01 344700 /lib/tls/libpthread-2.3.4.so
    b7fdb000-b7fdc000 rwxp 0000e000 08:01 344700 /lib/tls/libpthread-2.3.4.so
    b7fe9000-b7ffe000 r-xp 00000000 08:01 344641 /lib/ld-2.3.4.so
    b7ffe000-b7fff000 r-xp 00015000 08:01 344641 /lib/ld-2.3.4.so
    b7fff000-b8000000 rwxp 00016000 08:01 344641 /lib/ld-2.3.4.so
    Heap at VM Abort:
    Heap
    def new generation total 576K, used 387K [0xa6550000, 0xa65f0000, 0xa70d0000)
    eden space 512K, 69% used [0xa6550000, 0xa65a8f48, 0xa65d0000)
    from space 64K, 50% used [0xa65d0000, 0xa65d8080, 0xa65e0000)
    to space 64K, 0% used [0xa65e0000, 0xa65e0000, 0xa65f0000)
    tenured generation total 1408K, used 1090K [0xa70d0000, 0xa7230000, 0xafb50000)
    the space 1408K, 77% used [0xa70d0000, 0xa71e0938, 0xa71e0a00, 0xa7230000)
    compacting perm gen total 4864K, used 4693K [0xafb50000, 0xb0010000, 0xb3b50000)
    the space 4864K, 96% used [0xafb50000, 0xaffe5698, 0xaffe5800, 0xb0010000)
    Local Time = Thu Apr 5 21:10:05 2012
    Elapsed Time = 0
    # HotSpot Virtual Machine Error : 11
    # Error ID : 4F530E43505002EF
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_08-b03 mixed mode)
    # An error report file has been saved as hs_err_pid5761.log.
    # Please refer to the file for further information.
    Please let me know what can be the solution.
    thanks
    Ravikanth

  • Driver issue for Oracle Enterprise Linux

    Hi All,
    I have just installed Oracle Enterprise Linux. I was not able to access network. After doing lspci -- i found that my ethernet conrtoller : Atheros Communications AR8151 Gigabit Ethernet.
    Can any one tell how to install driver for this ?

    What is your output of:
    <pre>
    lsb_release -d
    uname -r
    </pre>
    What kernel driver is in use or loaded regarding your Ethernet card when you check the output of lspci -v"?
    Note that Oracle Linux just like any other Red Hat Enterprise Linux is not designed for typical consumer grade Laptops and Desktop systems.
    Does your computer vendor provide any driver software for Enterprise Linux? You might be able to find 3rd party driver support using http://elrepo.org/tiki/tiki-index.php as a temporary yum software repository. Probably kmod-atl1 or similar.

  • Stuck while installation of oracle in linux

    Hi guru's
    i am stuck with a problem while installation of oracle in linux please help me
    i am getting following error
      [root@localhost etc]# groupadd oinstall
    groupadd: group oinstall exists
    [root@localhost etc]# useradd -m -g oinstall-G dba-d/home/oracle-s/bin/bash-c"oracle software Owner" oracle
    useradd: unknown group oinstall-G
    [root@localhost etc]# Thanks in advance

    Brian while keeping that space getting this error actually
    [root@localhost etc]# useradd -m -g oinstall -G dba -d /home/oracle -s /bin/bash-c “Oracle Software Owner” oracle
    Usage: useradd [options] LOGIN
    Options:
      -b, --base-dir BASE_DIR       base directory for the new user account
                                    home directory
      -c, --comment COMMENT         set the GECOS field for the new user account
      -d, --home-dir HOME_DIR       home directory for the new user account
      -D, --defaults                print or save modified default useradd
                                    configuration
      -e, --expiredate EXPIRE_DATE  set account expiration date to EXPIRE_DATE
      -f, --inactive INACTIVE       set password inactive after expiration
                                    to INACTIVE
      -g, --gid GROUP               force use GROUP for the new user account
      -G, --groups GROUPS           list of supplementary groups for the new
                                    user account
      -h, --help                    display this help message and exit
      -k, --skel SKEL_DIR           specify an alternative skel directory
      -K, --key KEY=VALUE           overrides /etc/login.defs defaults
      -m, --create-home             create home directory for the new user
                                    account
      -l,                       do not add user to lastlog database file
      -M,                       do not create user's home directory(overrides /etc/login.defs)
      -r,                       create system account
      -o, --non-unique              allow create user with duplicate
                                    (non-unique) UID
      -p, --password PASSWORD       use encrypted password for the new user
                                    account
      -s, --shell SHELL             the login shell for the new user account
      -u, --uid UID                 force use the UID for the new user account
      -Z, --selinux-user SEUSER     use a specific SEUSER for the SELinux user mapping

  • Guide to installing XE and Apex on Oracle Enterprise Linux 5.3 (64 bit)

    I have just been through a time consuming and frustrating process of installing Oracle XE 10gR2 on Oracle Enterprise Linux 5.3 x86-64 and I want to share my experience so that others can benefit from it and overcome the same problems more quickly.
    Prior to starting I had installed OEL 5.3 and been using it for a few days. The system I am using is a home built box with an AMD Phenom X4 955 Black Edition, 8 Gb RAM, Highpoint RR2680 RAID controller with 4 1TB disks in a RAID5 array and an additional 320Gb HDD storing the OS. I am using KDE3.5 on the desktop.
    The main problem I encountered was with SELinux. As I eventually intend to have this system exposed on the Internet I was reluctant to switch it off despite having read extensively about the issues surrounding it and Oracle. I had several failed attempts at the installation process before succumbing to the reality that SELinux and Oracle are not happy bedfellows. I decided to switch SELinux to permissive mode having followed the advice here.
    I found a very helpful guide to installing XE on Linux here as part of the installation of an application called Spacewalk. Note that you do not need to complete the whole Spacewalk installation, but just follow the instructions in the linked page.
    Before you start you need to ensure that the UID of your oracle user is less than 500. Mine was 500, so I used the following commands to fix this:
    usermod -u 250 oracle
    find / -uid 500 -exec chown oracle {} \;
    These change the oracle UID to 250 (but check that isn't already used first!) and the find command searches for all files that were owned by oracle (but weren't after the usermod cmd) and changes them back to oracle's ownership.
    Now follow the Spacewalk instructions until you reach the Server Setup section. Before you do this you need to make a couple of changes to the script /etc/init.d/oracle-xe. I found these changes in various places, such as [link(1)|http://forums.oracle.com/forums/thread.jspa?messageID=1345771&#1345771] and [link(2)|http://dbataj.blogspot.com/2008/08/lblibrarypath-is-not-set-on-startup.html].
    Note that in link(1) the oracle-xe-selinux packages installed have the same effect as the chcon command on the shared libraries so it isn't necessary to perform this step.
    Open /etc/init.d/oracle-xe in vi (or your favourite editor) and do the following:
    line 49: change /bin/su to /sbin/runuser
    after line 52 (export PATH...) add the following lines:
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
    export LD_LIBRARY_PATH
    There are further changes recommended to /etc/init.d/oracle-xe in [this post|http://forums.oracle.com/forums/thread.jspa?messageID=3201491&#3201491] but I haven't done them yet.
    Having done the above changes you can now configure Oracle XE by running /etc/init.d/oracle-xe configure (as root!). As I have Apache Tomcat running on port 8080 I changed the default HTTP port to 8500 but kept the listener on its default port of 1521. Once the confuration script is done you will need to change the ports SELinux uses for Oracle as follows:
    semanage port -d -t oracle_port_t -p tcp 9000 - deletes port 9000, which is the SELinux default port for Apex
    semanage port -a -t oracle_port_t -p tcp 1521 - ensure that listener port is OK (assuming you used default of 1521, change accordingly if you didn't)
    semanage port -a -t oracle_port_t -p tcp 8500 - add the new Apex HTTP port to SELinux
    After all this running:
    semanage port -l | grep oracle
    should show you:
    oracle_port_t tcp 1521, 8500
    I ignored the TNSNAMES.ORA part of the Spacewalk instructions and proceeded with the 'Client setup on 64bit platform' and 'Configuring sqlplus' sections.
    For the latter I created a bash script which I have made available in the oracle user and my own user's home directories:
    cat > configure_oracle_10g_xe.sh
    ORACLE_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server
    PATH=$PATH:$ORACLE_HOME/bin
    ORACLE_SID=XE
    export ORACLE_HOME ORACLE_SID PATH
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
    export LD_LIBRARY_PATH
    I did this as I intend to install other Oracle databases, e.g. 11gR2, on this box later so I didn't want to put the above in .bashrc.
    Having done the above you should be able to log into the database using sqlplus and the XE setup is complete.
    The upgrade of Apex 2.2 to Apex 3.2.1 was fairly painless so I won't go into much detail about it - just follow the instructions provided by Oracle.
    The only issue I had was right at the end of the process and is documented and answered in [this thread|http://forums.oracle.com/forums/thread.jspa?threadID=958611&tstart=0].
    That's it - I hope somebody will find this useful.

    On Oracle Metalink site, there are many documents which says that Oracle 32 bit software works on 32 bits OS and 64 bits software works on 64 bits OS. Official support is only in those combination....
    So there is no good way to help you in your case-XE is 32 bit application with hard codded compiled libraries which most of them would not work on 64 bit OS.
    Sorry
    8(
    Hope this helps

  • How to install Oracle Enterprised Linux on VMware PLayer 4

    Hi Everyone,
    My name is John and I've a small issue which I would like to share with you and hopefully, you are able to assist.
    My laptop is installed with a Window 7 Home Edition operating system and I've installed VMware-player-4.0.2. After reboot, I've also downloaded the file - V29609-01 which is the ISO file of Oracle Enterprise Linux 6.2.
    After that, I've tried to create a Virtual Machine - Oracle Enterprise Linux using the VMware Player by specifying the path and file name of the V29609-01.iso file on my local c:\ drive. I've tried it several times, but every time it just returns the message - 'pxe-e53 no boot filename received' and it just hangs there without proceeding further. Please let me know what I've done wrong and the correct steps and procedures to solve this problem as this is my first time installing a Linux operating system. Thank you for your assistance.
    Regards,
    John

    Hi,
    Can you clarify and explain what is your exact meaning of 'Are you sure you've added the ISO to the VM to boot from?'? Because the following is what I did:
    1.) Click the Create A New Virtual Machine.
    2.) Select the 'Install disc image file (iso):' option and enter the full path of the V29609-01.iso (Oracle Enterprise Linux 6.2) file that I've downloaded from https://edelivery.oracle.com/. But underneath it, that is a message saying - 'Could not detect which operating systems is in this dsic image. You will need to specify which operating system will be installed.'
    3.) Click 'Next'.
    4.) I chose "Linux' under the Guest operating system and chose 'Oracle Enterprise Linux' under the Version drop down.
    5.) Click 'Next'.
    6.) I left the Virtual machine name as 'Oracle Enterprise Linux' and click 'Next'.
    7.) I set the Maximum disk size to 300 GB and have the 'Split virtual disk into multiple files' option selected and click 'Next'.
    8.) I have the 'Power on this virtual machine after creation' checked and click 'Finish'.
    9.) A black screen displayed inside the VMware Player saying:
    'CLIENT MAC ADDR: 00 0C 289 ......
    PXE-E53: No Boot filename received
    PXE-M0F: Exiting Intel PXE ROM.
    Operating System not found
    10.) And the process just hangs there.
    Regards,
    John

Maybe you are looking for

  • Not able to get Essbase Server list in Office with Smart View 11.1.2.1

    Anybody tried Shared Connection in Smart View 11.1.2.1? I am able to connect to but it does not show any servers in the non editable drop-down box. I tried this with Office 2003 sp3, Office 2007 and office 2010 but none of them is working. Also i tri

  • Aluminum Keyboard spill

    After much web browsing searching for solutions, I think I found an answer to the sticky keys leftover from (literally) the drops of fine ale that found its way onto my keyboard. First, take the keys off as described here: http://skeltoac.com/2007/10

  • Javac = "cannot find symbol" when compiling class referencing other classes

    I have several Java files in a directory which is declared as a package at the start of the files package filemanager; This program works perfectly in an IDE, however I'm having problems with compiling in command line. I have set the classpath as I u

  • LR 4, Fotobuch bei Blurb bestellen

    Wenn die Dateien hochgeladen sind, erhalte ich die Meldung: Der Datei ist kein Programm zum Ausführen dieser Aktion zugeordnet. Installieren Sie ein entsprechendes Programm, oder erstellen Sie in der Systemsteuerung unter "Standardprogramme" eine Zuo

  • Mac OS 10.6.8 keeps crashing

    Would going to Moutain Lion help with this? Evertime I try to back up my Mac Using CronosSync or try copying large file (ie.iTunes music) it freeze my Mac.