Oracle Enterprise Linux - Installing Oracle

Hi everyone,
I am trying to install Oracle on Oracle Enterprise Linux. I know, I know...it seems silly to install Oracle on Oracle enterprise Linux. What seems even more ridiculous is that the default install does not include everything you'd need to install Oracle. Here's the error...it's all over Google, but none of the solutions are working for me. Looks like I just need a package, but where do I get it?
Preparing to launch Oracle Universal Installer from /tmp/OraInstall2011-05-04_10-53-00AM. Please wait ...oracle@ots-corp-lxtest: lxtest : /u01/orainst/database > Exception in thread "main" java.lang.UnsatisfiedLinkError: /tmp/OraInstall2011-05-04_10-53-00AM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory
     at java.lang.ClassLoader$NativeLibrary.load(Native Method)
     at java.lang.ClassLoader.loadLibrary0(Unknown Source)
     at java.lang.ClassLoader.loadLibrary(Unknown Source)
     at java.lang.Runtime.loadLibrary0(Unknown Source)
     at java.lang.System.loadLibrary(Unknown Source)
     at sun.security.action.LoadLibraryAction.run(Unknown Source)
     at java.security.AccessController.doPrivileged(Native Method)
Thanks in advance!

There was a very similar question a few hours ago. You may want to check the answer:
Packages error while installing Oracle Management Agent.
Please always post the 4 digit version of Oracle you are trying to install and also the Oracle Linux version / distribution you are using.
Since you are using Oracle Linux you can use Oracle public yum. Details are here:
http://public-yum.oracle.com/
Then all you need to do as root or superuser is:
yum install libXp.i386
You may also want to install:
yum install oracle-validated
which will also setup the account, kernel parameters, etc.
Oracle Enterprise Linux is a clone of Red Hat Enterprise Linux, which should explain why it does not include everything you'd need to install Oracle database. As of Oracle Linux 5.5 the product was renamed from OEL to OL and since 5.6 the default kernel is Oracle Linux UEK, which is Oracle customized.

Similar Messages

  • Can't Ping, SSH or HTTP to my Oracle Enterprise Linux install

    Hi All,
    I've got a 'brandnew' install of OEL running GridControl 10.2.0.3.
    I've attempted to ping my new system and I get :
    matt@Brutus:~$ ping stimpy
    PING stimpy.us.oracle.com (192.168.0.4) 56(84) bytes of data.
    From Brutus.local (192.168.0.10) icmp_seq=2 Destination Host Unreachable
    From Brutus.local (192.168.0.10) icmp_seq=3 Destination Host Unreachable
    From Brutus.local (192.168.0.10) icmp_seq=4 Destination Host Unreachable
    And I've attempted to connect to the GridControl website and I get:
    Firefox can't establish a connection to the server at stimpy.us.oracle.com:4889
    I've disabled all the SELinux stuff but I still can not ssh, ping, etc...
    Does OEL have any additional security lockdown measures that I can 'tweak' and disable?
    Thanks,
    Matt

    there is no special, undocumented security implementation in EL
    what is the file /etc/sysconfig/network-scripts/ifcfg-eth<*> containing?
    what is ifconfig -a telling?
    what is route -eev telling?
    guido

  • Installing AS 10.1.3 on Enterprise Linux

    Hi,
    I got Enterprise Linux installed and running on a new quad core server.
    Now I'm trying to install Oracle SOA Suite 10.1.3.x on this server.
    Whenever I run the /opt/oracle/runInstaller it errors...
    The Java RunTime Environment was not found at /bin/java. Hence, the Oracle Universal Installer cannot be run.
    Please visit http://www.javasoft.com and install JRE version 1.3.1 or higher an try again.
    : No such file or directory
    I did downlad and install a newer version of JRE, and also tried installing the j2sdk on the linux server - still, it doesn't seem to find it.
    Any suggestions?
    here's my env:
    PATH=/usr/kerb.........etc.....:/usr/java/j2re1.4.2_16
    JAVA_HOME=/usr/java/j2re1.4.2_16
    Thanks,
    Botzy

    try logging into you server and call: which java . Next create a symbolic link to /bin/java using "ln -s path_to_java /bin/java" and you should be ok.

  • 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

  • Oracle 8.1.7 install fails on RH Enterprise Linux  3

    Hi!
    I've been desperately trying to install Oracle 8i database to RedHat Enterprise Linux 3 (actually it's Whitebox 3.0 that is exactly the same as RH but the logos and other RH stuff stripped), with no luck. I tried to follow the numerous instructions I've found on the net for RH 7.x versions.
    I've installed the glibc compat rpm's and jdk 1.1.8 from blackdown.org and the installer itself starts fine. First problem is that the installer can't detect the ip address of the host. After ignoring that, the install part goes fine but I get a lot of errors about makefiles during the linking. After ignoring the errors and fixing the buggy root.sh script, the Net8 assistant starts, and stops giving out error about missing java .so file in $ORACLE_HOME/lib directory. I checked it, but I can't find the .so file anywhere.
    I've tried to exit the installer, apply the stub patch from oracle and the run dbassist which starts fine but quits after a java error.
    Any ideas what should I do?

    This web site can help you:
    http://www.puschitz.com/
    Joel Pèrez

  • 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

  • Error after installing Oracle Enterprise Linux (Release 5) on Dell T 110

    eth0      Link encap:Ethernet  HWaddr 00:15:17:F7:81:53 
              inet addr:192.1.1.11  Bcast:192.1.1.255  Mask:255.255.255.0
              inet6 addr: fe80::215:17ff:fef7:8153/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:220 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:100
              RX bytes:0 (0.0 b)  TX bytes:15868 (15.4 KiB)
              Memory:dfcc0000-dfce0000
    eth1      Link encap:Ethernet  HWaddr B8:AC:6F:92:C2:0C 
              inet addr:192.1.1.9  Bcast:192.1.1.255  Mask:255.255.255.0
              inet6 addr: fe80::baac:6fff:fe92:c20c/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:263812 errors:0 dropped:0 overruns:0 frame:0
              TX packets:58 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:18959341 (18.0 MiB)  TX bytes:9476 (9.2 KiB)
              Interrupt:169 Memory:dfbf0000-dfc00000
    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:1393 errors:0 dropped:0 overruns:0 frame:0
              TX packets:1393 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0
              RX bytes:4035655 (3.8 MiB)  TX bytes:4035655 (3.8 MiB)Any help please. I am a first time Linux user.
    Thanks
    A/A

    This looks like a follow up of Re: Error after installing Oracle Enterprise Linux (Release 5) on Dell T 110
    Can you give more details what you are trying to do or trying to accomplish. Where are you trying to ping to?
    It could be that you have not defined your gateway or DNS server for name to IP mapping. What is the output of
    # netstat -rn
    # cat /etc/resolv.conf

  • How to install and use the Gnome-DO application in oracle enterprise Linux

    My Oracle Enterprise linux is 5.3,
    I want to install and use the Gnome-Do(http://do.davebsd.com) in my box.
    Please help me regarding this.
    With Regards
    DSK

    According to Google, Gnome-Do has known issues about CPU bugs and hogs and the latest incarnation does not seem to be available for RHEL and clones. You should have more luck with Linux Desktop distributions like Fedora and Ubuntu. Or you could try to build from source using the info at: http://do.davebsd.com/wiki/Installing_Do. Good luck - I wouldn't bother.

  • Installing Oracle 10g on Enterprise Linux 4 Update 5 Media Pack for x86_64

    Hello everyone,
    I'm trying to determine whether the required rpm packages are installed on the new EL 4, and it seems after running the query using the # rpm -q there are packages missing.
    According to the install section from the Doc Library these packages must exist in Red Hat Enterprise Linux 4.0 for 10g to install successfully. My guess is, if RHEL 4 needs to have it, then Oracles Unbreakable should too... right?
    binutils-2.15.92.0.2-10.EL4
    compat-db-4.1.25-9
    control-center-2.8.0-12
    gcc-3.4.3-9.EL4
    gcc-c++-3.4.3-9.EL4
    glibc-2.3.4-2
    glibc-common-2.3.4-2
    gnome-libs-1.4.1.2.90-44.1
    libstdc++-3.4.3-9.EL4
    libstdc++-devel-3.4.3-9.EL4
    make-3.80-5
    pdksh-5.2.14-30
    sysstat-5.0.5-1
    xscreensaver-4.18-5.rhel4.2
    Has anyone had experience doing such an installation, and if so, what exactly is missing from Oracle's EL4 and where can I get it.

    Thanks Terry and Jason for your responses. I've come along on this install but ran into a little snag. Hope you two and other members can help. Here's my output from the xterm:
    [root@localhost database]# ./runInstaller
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system versions: 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 /u01/tmp/OraInstall2007-05-22_10-52-09PM. Please wait ...
    The user is root. Oracle Universal Installer cannot continue installion if the user is root.
    : No such file or directory
    [root@localhost database]#
    I don't know what to do, and weren't able to run it as user_oracle. Could you make a recommendation on how to resolve this error? Also, will I also need to make any clean-up efforts before beginning a new install?
    Many thanks.

  • Patches for Installing Oracle 9i on Red Hat Enterprise LINUX 3.0 AS

    I recently purchased An Oracle Database Enterprise Edition � Trial License.
    I am attempting to install Oracle 9i on Red Hat Enterprise Linux Advanced Server 3 (RHEL AS 3).
    After several unsuccessful attempts and consultation with the FAQs available on the Oracle site I have discovered
    that it can not be installed without the following patches.
    P3095277_9204_LINUX.zip
    P3238244_9204_LINUX.zip
    P2617419_210_GENERIC.zip
    P3006854_9204_LINUX.zip
    P3119415_9204_LINUX.zip
    Can anyone tell me how I can aquire these patches?
    This is for an eval of the product on the platform mentioned above. If I can not complete a successful install,
    there is no way for my company to evaluate the product
    and eventually purchase it.
    You can contact me at this email address [email protected]

    Daer suneetkapoor:
    I am looking for P3006854_9204_LINUX.zip in order that can be properly able to install oracle9i on Linux AS 3. And I saw you to reply the message on forum that you can share the patch. Would you mind if you can send an email with the patch for me immediately, I will greatly appreciate it.
    thanks you
    regards
    ellery
    PS: My email address is [email protected]

  • Installing Oracle 10g in Enterprise Linux 4

    Hi friends,
    I dont know how to install oracle 10g express edition in Enterprise linux 4.
    Am new to linux environment.
    And i have downloaded the rpm file from oracle website.
    Please help me...
    thanks in advance....

    Hi Sunil
    Please find the below link
    http://www.oracle.com/technology/pub/articles/smiley_10gdb_install.html
    you can install by these steps.
    Regards
    Khan

  • Problem in Installing oracle 11g in enterprise linux

    Hello all,
    Iam new to linux and oracle .... I had downloaded enterprise linux from oraclewebsite, My question is i was not able to install oracle 11g in enterprise linux...
    And when i am trying to install ./runInstaller
    iam getting error message (permission denied).
    is that necessary to install oracle vm server or manager .. if so how to do it .. Please give me clear idea how and where to start..

    Hi,
    The error message which iam getting is
    [root@Karthik database]# ls -la
    total 48
    drwxr-xr-x 8 root root 4096 Sep 10 15:42 .
    drwxr-xr-x 3 root root 4096 Sep 10 15:40 ..
    drwxr-xr-x 12 root root 4096 Sep 10 15:42 doc
    drwxr-xr-x 4 root root 4096 Sep 10 15:42 install
    drwxr-xr-x 2 root root 4096 Sep 10 15:42 response
    drwxr-xr-x 2 root root 4096 Sep 10 15:42 rpm
    -rwxrwxrwx 1 root root 4352 Aug 13 23:56 runInstaller
    drwxr-xr-x 2 root root 4096 Sep 10 15:42 sshsetup
    drwxr-xr-x 14 root root 4096 Sep 10 15:46 stage
    -rw-r--r-- 1 root root 5400 Aug 17 12:25 welcome.html
    [root@Karthik database]# ./runInstaller
    ./runInstaller: line 137: /root/Desktop/linux_11gR2_database_1of2/database/install/.oui: Permission denied
    The command
    bash ./runInstaller.sh didnt helped. again got the error of bash: ./runInstaller.sh: No such file or directory
    Thanks,
    karthik

  • Installing Oracle 11g R 2 on Oracle Enterprise Linux 5.0 32 bit

    Hello All,
    I am installing the oracle 11g on Oracle Enterprise Linux 5.0 32 bit, when i modified the bash_profile. i am facing the below error:
    Please can you help to solve the issue
    the error i am facing while trying to switch to oracle user (su - oracle) is
    -bash: ulimit: open files: cannot modify limit: Operation not permitted
    new bash_profile:
    # .bash_profile
    # Get the aliases and functions
    if [ -f ~/.bashrc ]; then
         . ~/.bashrc
    fi
    # User specific environment and startup programs
    # Oracle Settings
    TMP=/tmp; export TMP
    TMPDIR=$TMP; export TMPDIR
    ORACLE_BASE=/u01/app/oracle; export ORACLE_BASE
    ORACLE_HOME=$ORACLE_BASE/product/11.2.0/db_1; export ORACLE_HOME
    ORACLE_SID=DB11G; export ORACLE_SID
    ORACLE_TERM=xterm; export ORACLE_TERM
    PATH=/usr/sbin:$PATH; export PATH
    PATH=$ORACLE_HOME/bin:$PATH; export PATH
    # Oracle Settings
    #TMP=/tmp; export TMP
    #TMPDIR=$TMP; export TMPDIR
    #ORACLE_BASE=/u01/app/oracle; export ORACLE_BASE
    #ORACLE_HOME=$ORACLE_BASE/product/11.2.0/db_1; export ORACLE_HOME
    #ORACLE_SID=TSH1; export ORACLE_SID
    #ORACLE_TERM=xterm; export ORACLE_TERM
    #PATH=/usr/sbin:$PATH; export PATH
    #PATH=$ORACLE_HOME/bin:$PATH; export PATH
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib; export LD_LIBRARY_PATH
    CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib;
    export CLASSPATH
    if [ $USER = "oracle" ]; then
    if [ $SHELL = "/bin/ksh" ]; then
    ulimit -p 16384
    ulimit -n 65536
    else
    ulimit -u 16384 -n 65536
    fi
    fi
    export PATH

    Hi;
    Please check below link, and compare your steps wiht it
    http://www.oracle-base.com/articles/11g/OracleDB11gR2InstallationOnEnterpriseLinux5.php
    By the way did you try to put only this to your .bash_profile
    # Oracle Settings
    TMP=/tmp; export TMP
    TMPDIR=$TMP; export TMPDIR
    ORACLE_HOSTNAME=oel5-11gr2.localdomain; export ORACLE_HOSTNAME
    ORACLE_UNQNAME=DB11G; export ORACLE_UNQNAME
    ORACLE_BASE=/u01/app/oracle; export ORACLE_BASE
    ORACLE_HOME=$ORACLE_BASE/product/11.2.0/db_1; export ORACLE_HOME
    ORACLE_SID=DB11G; export ORACLE_SID
    ORACLE_TERM=xterm; export ORACLE_TERM
    PATH=/usr/sbin:$PATH; export PATH
    PATH=$ORACLE_HOME/bin:$PATH; export PATH
    Regard
    Helios

  • Installing 9.2.0.4 x86_x64 on oracle Enterprise linux 4.8 x86_x64

    Hi ,
    I am installing only clinet from Oracle database 9.2.0.4 x86_x64 software on Enterprise linux 4.8 x86_x64 but when i am trying to open oemapp console return error
    Command not found.
    oracle@ilooop bin] oemapp console
    bash : oemapp : command not found
    [oracle@ilooop~] cd /oracle/db/product/9.2.0/db_1/bin
    [oracle@ilooop bin] find oemapp console
    find : oemaapp : no such file or directory
    oemapp doest not exist in $ORACLE_HOME/bin
    Thanks in advance.

    Hi;
    Please see:
    http://dba.5341.com/msg/48198.html
    Regard
    Helios

  • Oracle Enterprise Linux 5u5 install issue

    Please help.
    I'm trying to install Oracle Enterprise Linux 5u5 on a desktop computer.
    In GUI mode, after the network adapter settings screen i press Next, and the system hangs.
    In Text mode, after the network adapter settings screen i press Next, and the following error is displayed.
    ------------------| Exception Occurred |------------------
    Traceback (most recent call first):
    File
    "/usr/lib/anaconda/textw/timezone_text.py",
    line 33, in getTimezoneList
    zt = zonetab.ZoneTab()
    File
    "/usr/lib/anaconda/textw/timezone_text.py",
    line 61, in __call__
    timezones = self.getTimesoneList()
    File "/usr/lib/anaconda/text.py", line
    582, in run
    rc = win(self.screen, instance)
    File "/usr/bin/anaconda", line 955, in
    <module>
    anaconda.intf.run(anaconda)
    AttributeError: 'module' object has no attribute 'ZoneTab'
    I've tried different languages and different network adapter settings, but I don't think it has something to do with the problem.
    Can anyone tell me what to do to continue the installation?
    Thanks in advance

    Can you provide more information, like what is your desktop system?
    Besides, Enterprise Linux is not designed to work on Desktop or other portable computers. Your Ethernet may not be the only issue.
    You may check the following link:
    https://bugzilla.redhat.com/show_bug.cgi?id=247399
    " I am seeing this behaviour as well on installing Fedora 9 Beta on an older Dell Latitude C840 laptop. I was able to get this error in a subsequent install by skipping the network
    configuration."
    "This really seems like something that could be caused by errors reading the CD media. Could someone who is seeing this take a look at tty4 or /tmp/syslog and see if there are kernel read error messages?"
    Edited by: waldorfm on Nov 1, 2010 11:27 AM

Maybe you are looking for