Oracle Linux - CD or DVD?

Does Oracle/SUN offer a free CD or DVD to try the New Oracle Linux?

I assume you mean the new packages associated with the Unbreakable Enterprise Kernel? It's meant to be run on top of Oracle Enterprise Linux 5. You can achieve this by downloading the CD or DVD ISOs from eDelivery (http://edelivery.oracle.com/linux) and then use the yum configuration file for OL5/EL5 from the Oracle Public Yum Server (http://public-yum.oracle.com). Just follow the easy instructions at the top of the main page there and you should be set.

Similar Messages

  • Oracle Linux 6 - boot.iso file.

    I just downloaded oracle linux 6 - 64b, DVD image, but there's no boot.iso file in /images directory.
    Unfortunatelly I hardly need this file for fresh install, because our HP server has only virtual CD drive connected
    via iLO console, so standard installation is possible from CD images or via boot.iso mounted as CD + network install
    I haven't found boot.iso on edelivery.oracle.com\linux.
    Any idea pls ?

    Preparing the system for an install from hard disk is pretty simple. First do a (minimal) install of EL5. Make sure to review the partitioning, reduce the size of the lvm partition by about 5GB, and add a 5GB partition at the end of the device. Let's assume the iso file is called ol6.iso and the last partition is sda3. Then do:
    mkfs.ext3 /dev/sda3
    mount /dev/sda3 /mnt
    cd /mnt
    wget http://.../ol6.iso
    mkdir iso
    mkdir images
    mount -o loop,ro ol6.iso iso
    cp iso/images/install.img images
    cp iso/isolinux/vmlinuz /boot
    cp iso/isolinux/initrd.img /boot
    cd /
    umount /mnt/iso
    umount /mnt
    cat >>/boot/grub/grub.conf <<EOF
    title install ol6
        root (hd0,0)
        kernel /vmlinuz askmethod
        initrd /initrd.img
    EOFYou need to select custom partitioning for the OL6 installation, and make sure not to delete sda3. Once the installation is done, you can delete the extra partition, or use it for swap or something else.

  • Problem Installing Oracle Linux 6.3 - 'Disc not found message box'

    I'm trying to install Oracle linux on a old laptop. Single disk drive.
    I downloaded V33412-01Oracle Linux Release 6 Update 3 Boot iso image for x86_64 (64 bit)
    burned it as an ISO image on a CD.
    Inserted the CD,started the system, cd booted and the installation started.
    Skipped the verify media (I verifed it during another installation try)
    selected English
    selected US
    When prompted for installation method, I tried selecting 'LOCAL CD/DVD' since that's where my CD is at. I get a 'Disc not found message box'.
    I've also tried to select the /dev/sda1, which the installation accepted, only to fail later saying it can't find the ISO image.
    I also tried putting the ISO image and unzipping the contents of the file onto a USB stick and selcting this during the install - same error.
    I tried putting V33413-01 onto the USB stick and selcting that - its too big to burn on a CD, that didn't work..
    Any ideas here? Though this was a easy installation but I'm scratching my head as to how to continue?

    Not very clearly - for me at least.
    Not sure - and not sure where to find instructions on how to do this.
    It mentions that you don't need the source CDs
    Oracle Linux Release 6 Update 3 source DVD 1 V33413-01 3.1G
    Oracle Linux Release 6 Update 3 source DVD 2 V33414-01 1.7G
    Not sure what to do with these anyway.
    Installation
    To install Oracle Linux 6.3 from DVD media, follow the following steps:
    1. Download the compressed binary DVD images
    Download Oracle Linux 6.3 DVD from the Oracle Software Delivery Cloud.
    You do not need to download source DVDs to install Oracle Linux.
    2. Verify the downloaded media
    Verify the downloaded file by comparing its sha1sum or md5sum with the published
    sha1sum or md5sum.
    3. Write the DVD image to DVD
    Use your favorite cd burning software to write these images directly to DVD.
    You should not simply copy the files onto the DVD. You must use a DVD burner
    that can accept an ISO image as input, and which can create a bootable DVD
    from it. To test if you have burned the images correctly, insert a burned
    DVD and ensure that multiple files and directories are visible.
    6. Insert the DVD, and boot
    Insert the DVD into your system, boot from DVD, and follow the on-screen instructions
    to deploy Oracle Linux!

  • Oracle Linux Server DVD found...or not

    Hi,
    I'm using Microsoft's SVCMM to install Oracle Linux Server 5.7 on a 64-bit virtual machine; I'm using the text mode installer.
    The first thing the installer tries to do is verify the DVD. It shows a progress bar that completes, then I see the message:
    [Media Check Result]
    The media check PASSED for the image:
    Oracle Linux Server 5.7 DVD
    It is OK to install from this media.
    I then press "OK" and the next dialog box, immediately, says:
    [Error]
    The Oracle Linux Server CD was not
    found in any of your CDROM drives.
    Please insert the Oracle Linux
    Server CD and press OK to retry.
    How does this make sense?

    I experienced the same problem in a different type of setup and remember the fix was to use the "skip" button to bypass media verification.

  • URL for Free Oracle Linux DVD ?

    hi,
    can you provide me the URL where i can request for Free Oracle Linux DVD ? i am new to oracle /unix
    thanks in advance

    Hi,
    See http://www.oracle.com/webapps/dialogue/dlgpage.jsp?p_ext=Y&p_dlg_id=5659298&src=5634329&Act=44 for form to request free Oracle Unbreakable Linux DVD.
    Regards,
    ...

  • How to configure Oracle Linux 6.5 to request ip address from dhcp server

    I have installed Oracle Linux 6.5 (minimal installation) on a virtual machine created on VMware vSphere 5.5.   I have tried to configure dhcp during the installation by editing IPv4 Settings of System eth0 to use Automatic (DHCP) but somehow it does not work.
    Then I changed the ifcfg-eth0 to use static ip address and that works.
    Here is the content of /etc/sysconfig/network:
    NETWORKING=yes
    HOSTNAME=TESTOL
    Here is the content of /etc/sysconfig/network-scripts/ifcfg-eth0 using static ip address:
    DEVICE=eth0
    TYPE=Ethernet
    UUID=xxxxxxxx.xxxx-xxxx-xxxxxxxxxxxx
    ONBOOT=yes
    NM_CONTROLLED=yes
    BOOTPROTO=none
    HWADDR=xx:xx:xx:xx:xx:xx
    IPADDR:##.##.###.###
    PREFIX=24
    GATEWAY=##.##.###.###
    DNS1=##.##.###.###
    DOMAIN:test.com
    DEFROUTE=yes
    PEERDNS=yes
    PEERROUTES=yes
    IPV4_FAILURE_FATAL=yes
    IPV6INIT=no
    NAME="System eth0"
    Based on my understanding, I should able to use dhcp by changing ifcfg-eth0 (I commented the parameters not needed for dhcp by adding #) but I have tried the following ifcfg-eth0 and it does not work:
    DEVICE=eth0
    TYPE=Ethernet
    UUID=xxxxxxxx.xxxx-xxxx-xxxxxxxxxxxx
    ONBOOT=yes
    NM_CONTROLLED=yes
    #BOOTPROTO=no
    BOOTPROTO=dhcp
    HWADDR=xx:xx:xx:xx:xx:xx
    #IPADDR:##.##.###.###
    #PREFIX=24
    #GATEWAY=##.##.###.###
    DNS1=##.##.###.###
    #DOMAIN:test.com
    DEFROUTE=yes
    PEERDNS=yes
    PEERROUTES=yes
    IPV4_FAILURE_FATAL=yes
    IPV6INIT=no
    NAME="System eth0"
    I have also tried to add GATEWAY=##.##.###.### to /etc/sysconfig/network but that does not help.
    I have checked that dhclient package is installed by using rpm -qa dhclient.
    I'm new to Linux.
    Thanks for any help

    If this is your first experience with Oracle Linux, I recommend you perform a default installation instead of going minimal, which is just going to make things more difficult for no good reason. Enterprise Linux is not MS Windows and the difference between default and minimal installations do not compare.
    You also do not want to use the rpm utility to install any software and use yum instead. The yum utility is standard. Rpm does not resolve software dependencies.
    Your ifcfg-eth0 script is missing the line that specifies to use DHCP:
    BOOTPROTO=dhcp
    You can also use the network configuration utility, even in text mode, by typing the following at the command prompt of root:
    system-config-network
    If the above utility is not installed:
    yum install system-config-network-tui
    You will have to configure an appropriate yum repository file. The process is explained in the Oracle Linux release notes:
    https://oss.oracle.com/el6/docs/RELEASE-NOTES-U5-en.html
    See 3.2.3. About Oracle Linux Installation Media
    Then insert the DVD or attach the DVD iso image to your virtual machine and mount it as following:
    mkdir -p /media/ISOimage
    mount /dev/cdrom /media/ISOimage
    The path "/media/ISOimage" should be the same as you specified in the yum repository file.
    After that you can use the yum utility to list or install software.

  • How to compile Oracle Linux source?

    I accidentally downloaded source DVD "Oracle Linux Release 5 Update 2 source - DVD" instead of installable ISO image. Is there anyway I can compile it to make bootable ISO image?
    I tried to search this forum as well as other places but couldn't find any information hence thought of opening a thread before I proceed to download correct file which will again take 10+ hrs with my Internet speed :(
    Any help is highly appreciated. Also I need to know which packages are required to be installed for compiling the source if at all that is possible. I am using Ubuntu 11.10 Desktop.
    Thanks in advance for any help and hope to get a reply soon :) I need to urgently install Oracle 11gR2 on it.
    Edited by: user6582219 on Apr 12, 2012 1:10 AM
    While browsing the forum for any possible solution I came to a thread that discuss installation of a package oracle-rdbms-server-11gR2-preinstall. When searched through search engine I came to know about recent certification Oracle 11gR2 on Oracle Linux 6, here is the link https://blogs.oracle.com/linux/entry/announcing_oracle_database_11g_r2
    https://blogs.oracle.com/linux/entry/announcing_oracle_database_11g_r2
    Thing is I already have Oracle Linux 6 Update 2 (the latest) installed on my machine in dual boot mode so I dropped the idea of installing version 5.2. As per the documentation 11gR2 was not certified earlier on Linux 6.2 so I thought of installing 5.2 but it is not necessary now.
    I would still appreciate if someone could answer my question just for knowing the procedure compiling source. May be it can help someone else trying to achieve this.
    I have another couple of important questions and need guidance from the experts over here. I am not sure if it is appropriate to open a new thread but for now I am posting them here.
    Before proceeding here are my environment details:
    Machine: x86 32 bit with 2 GB RAM/250 GB HD.
    OS: Kubuntu 11.10 Desktop and Oracle Linux 6 Update 2 in dual boot mode.
    Here are my partition details for your reference but as I am planning to do the installation from the scratch following new ideal scheme you can jump to last paragraph following the line "*********************************" for my questions.
    Unfortunately my partition plan went wrong and here is what I have now:
    Disk /dev/sda: 250.1 GB, 250059350016 bytes
    255 heads, 63 sectors/track, 30401 cylinders, total 488397168 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x3d5ba9e1
    Device Boot Start End Blocks Id System
    /dev/sda1 * 2048 1002047 500000 83 Linux
    /dev/sda2 151525080 361253654 104864287+ 7 HPFS/NTFS/exFAT
    /dev/sda4 1003518 151001087 74998785 5 Extended
    /dev/sda5 1003520 7002111 2999296 82 Linux swap / Solaris
    /dev/sda6 7004160 11001855 1998848 83 Linux
    /dev/sda7 11003904 51001343 19998720 83 Linux
    /dev/sda8 51003392 110041087 29518848 83 Linux
    Partition table entries are not in disk order
    /dev/sda1 here is /tmp, /dev/sda2 is my data partition, I have separate /home / (root) partition for Kubuntu and remianing around 20 GB in extended partition is used for Oracle Linux 6.2 with default Oracle suggested LVM partition. I also have separate /boot for Kubuntu and I chose not to install grub while installing Oracle Linux. I later modified grub.cfg to add entries for Oracle Linux and now I can boot both OSs successfully.
    My issue now is I cannot extend 20 GB space (in extended partition) that I have given to Oracle though I have around 40 GB space available. This is because I alreay have 4 primary partitions (one for /boot others for "data" and one extended partition). So I have to make primary partition out of free space and install Oracle in a single partition without following recommended partition layout scheme.
    Now I want to do the installation of both the OS from the scratch and really need an advice on partition layout scheme. Here is summary of what I wan to achieve:
    1. Keep the "data" partition (primary) intact and carve an ideal partition layout for both the OS with separate /boot, /tmp, /home, swap (and may be for /usr???). Also may be I can share swap?
    2. How do I go about using LVM and is it recommended for this case? What would be ideal locations for each partitions and sizes? I already used 100 GB for "data" so now I want to keep 60 GB for Oracle Linux (and Oracle DB for which I will again make few sub-partitions) and remaining will be for Kubuntu.
    Well, I am not sure if this is the right place to ask these questions but since I can see very knowlegeable top contributors here that are willing to help novice users I thought of posting these questions.
    I would really really appreciate if someone can provide me rough draft of partition scheme in my case considering the sub-partitions needed for Oracle DB. I went thorugh number of forums and documentations to come up with solutuion and finally thought of getting help after much confusion.
    I really need to carefully plan this time because it's third time I am doing reinstallation from the scratch because of poor plan I followed previously.
    Thank you very much in advance and please let me know in case more information is needed from my side.
    Regards,
    Ramesh

    I accidentally downloaded source DVD "Oracle Linux Release 5 Update 2 source - DVD" instead of installable ISO image. Is there anyway I can compile it to make bootable ISO image?Google will be your best friend for such a question, for instance, "Creating a Custom centos Linux bootable ISO Image". There is no need to duplicate the effort. I recommend you download the correct installation DVD, e.g. 5.8
    Thing is I already have Oracle Linux 6 Update 2 (the latest) installed on my machine in dual boot mode so I dropped the idea of installing version 5.2. As per the documentation 11gR2 was not certified earlier on Linux 6.2 so I thought of installing 5.2 but it is not necessary now.So you don't need to install 5.2 anymore, but you want the information how to compile a installation DVD from the 5.2 source anyway?!
    I have another couple of important questions and need guidance from the experts over here. I am not sure if it is appropriate to open a new thread but for now I am posting them here.Questions may be important for you, but not necessarily for others. No one will complain if you create a new thread for particular questions or subjects. It is better to separate your topics and questions rather than creating a multi-mega thread, which does little to help anyone else but you. It means more work on your end, but it will be easier for anyone to participate or answer your questions, and it will allow you to better award answers.
    Regarding your partitioning questions: It is generally difficult to address such topics in a forum. You are asking for a book of information. My advice is to drop the old fashioned concepts of dual or triple boot options and install Oracle VirtualBox instead. It will make all of these questions obsolete and you can use whatever defaults when installing your virtual machine guest OS. Its a far more superior way of dealing with multiple operating systems on one and the same computer.
    I am using Ubuntu 11.10 Desktop.
    I need to urgently install Oracle 11gR2 on it.For what it's worth, if you can combine the two source below you should be able to install and run 11gR2 on Ubuntu 11.10.
    Install Oracle 11gR2 on Ubuntu Linux 11.04 (64-bit) Howto
    Install Oracle 11gR2 on Ubuntu Linux 11.04 (64-bit) Howto
    Oracle 11gR2 Express Edition on Linux Ubuntu 11.10 howto
    Oracle 11gR2 Express Edition on Linux Ubuntu 11.10 howto
    However, check out VirtualBox.

  • How to install oracle 11g on oracle linux 6.1.

    Hello everyone here at oracle forum.!
    I'm new on using the linux and i badly need to learn it including the Oracle Database for making PHP website.
    Because of this i downloaded all the packages of Oracle Linux Release 6 Update 1 Media Pack for x86 (32 bit) at E-Delivery.
    Now i was having a hard time figuring out how to install all the 4 ISO images. the only one that worked was was the boot.iso that installed the Oracle Linux 6 without the DB.
    So what would i do to use the 3 updates?
    I burnt them all one by one on different DVD but it wont look for the other packages.
    So please guys bare with me and help me figure out how to use the other 3 packages for i know it has the Oracle Database.
    Oracle Linux Release 6 Update 1 source DVD 1 V26570-01
    Oracle Linux Release 6 Update 1 source DVD 2 V26571-01
    Oracle Linux Release 6 Update 1 Boot iso image for x86 (32 bit) V26573-01

    Oracle Linux does not install any Oracle Database. You don't need the source and boot.iso DVD. You can boot and install the system from the Oracle Linux 6.1 installation DVD. The boot.iso is useful for a network install and the source DVD if you want to compile everything yourself.
    As far as I know, Oracle Database has not been certified for Oracle Linux 6 yet. That does not necessarily mean you cannot install Oracle Database on Oracle Linux 6 yet, but you will run into problems with software requirements, package dependencies and perhaps incompatibilities, i.e. ext4 file system.
    I think your best option is to install Oracle Linux 5 and certainly use Oracle VirtualBox. If you are new to Linux you probably cannot use Linux as your primary OS yet, and VirtualBox will allow you to install and re-install without jeopardizing your primary host OS. You can also download pre-build virtual machines for Virtualbox from http://www.oracle.com/technetwork/community/developer-vm/index.html which might have everything you need installed and ready to use.

  • How to install GCC and DKMS on Oracle Linux?

    Hello,
    I am a newbie to Oracle Linux. I installed Oracle Linux on a virtual machine using Oracle VirtualBox. Now I need to install the packages DKMS and GCC in order to share drives between the host and the ghost.
    Here is what is happening:
    # yum install dkms
    Setting up Install Process
    Setting up repositories
    No Repositories Available to Set Up
    Reading repository metadata in from local files
    Parsing paskage install arguments
    No Match for afgument: dkms
    Nothing to do
    Please, advice what to do.
    Thanks in advance.

    Here is what you need to install under Oracle Linux or Red Hat Enterprise Linux to install the VirtualBox Guest Additions:
    <pre>yum -y install gcc kernel-uek-devel-$(uname -r)</pre>
    The packages are available from the Oracle public yum repository as already mentioned, or on the installation DVD in the server directory.

  • "Bad page state in process swapper" with Oracle Linux 5.9

    Dear All,
    We got "localhost kernel: BUG: Bad page state in process swapper  pfn:5e13c2e" when booting Oracle Linux 5.9.
    The system is installed with -
    1. CPU: 2 x Xeon E5-2690
    2. Mem: 384 GB
    3. QLE 2562 FC
    4. Oracle Linux 5.9 (64-bit) (2.6.39-300.26.1.el5uek)
    5. mutlipath enabled
    6. kernel created with (mkinitrd -v -f --with=sd-mod with=dm-multipath /boot/initrd-2.6.39-300.06.1.el5uek.img $(uname -r))
    Below is part of the log file.
    Did you have the idea what cause the issue?
    Regards,
    CL
    Nov  1 11:03:04 localhost syslogd 1.4.1: restart.
    Nov  1 11:03:04 localhost kernel: klogd 1.4.1, log source = /proc/kmsg started.
    Nov  1 11:03:04 localhost kernel: Initializing cgroup subsys cpuset
    Nov  1 11:03:04 localhost kernel: Initializing cgroup subsys cpu
    Nov  1 11:03:04 localhost kernel: Linux version 2.6.39-300.26.1.el5uek ([email protected]) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-52)) #1 SMP Thu Jan 3 18:31:38 PST 2013
    Nov  1 11:03:04 localhost kernel: Command line: ro root=/dev/mapper/lun_osp3 rhgb  quiet numa=off
    Nov  1 11:03:04 localhost kernel: BIOS-provided physical RAM map:
    Nov  1 11:03:04 localhost kernel:  BIOS-e820: 0000000000000000 - 000000000009a400 (usable)
    Nov  1 11:03:04 localhost kernel:  BIOS-e820: 000000000009a400 - 00000000000a0000 (reserved)
    Nov  1 11:03:04 localhost kernel:  BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    Nov  1 11:03:04 localhost kernel:  BIOS-e820: 0000000000100000 - 000000007df4c000 (usable)
    Nov  1 11:03:04 localhost kernel:  BIOS-e820: 000000007df4c000 - 000000007df89000 (reserved)
    Nov  1 11:03:04 localhost kernel:  BIOS-e820: 000000007df89000 - 000000007e01c000 (ACPI data)
    Nov  1 11:03:04 localhost kernel:  BIOS-e820: 000000007e01c000 - 000000007e240000 (ACPI NVS)
    Nov  1 11:03:05 localhost kernel:  BIOS-e820: 000000007e240000 - 000000007f34c000 (reserved)
    Nov  1 11:03:05 localhost cpuspeed: Enabling ondemand cpu frequency scaling governor
    Nov  1 11:03:05 localhost kernel:  BIOS-e820: 000000007f34c000 - 000000007f800000 (ACPI NVS)
    Nov  1 11:03:05 localhost kernel:  BIOS-e820: 0000000080000000 - 0000000090000000 (reserved)
    Nov  1 11:03:05 localhost kernel:  BIOS-e820: 00000000fed1c000 - 00000000fed40000 (reserved)
    Nov  1 11:03:05 localhost kernel:  BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved)
    Nov  1 11:03:05 localhost kernel:  BIOS-e820: 0000000100000000 - 0000006080000000 (usable)
    Nov  1 11:03:06 localhost kernel: NX (Execute Disable) protection: active
    Nov  1 11:03:06 localhost kernel: SMBIOS 2.7 present.
    Nov  1 11:03:06 localhost rpc.statd[5742]: Version 1.0.9 Starting
    Nov  1 11:03:06 localhost kernel: No AGP bridge found
    Nov  1 11:03:06 localhost kernel: last_pfn = 0x6080000 max_arch_pfn = 0x400000000
    Nov  1 11:03:07 localhost hcid[5810]: Bluetooth HCI daemon
    Nov  1 11:03:07 localhost hcid[5810]: Register path:/org/bluez fallback:1
    Nov  1 11:03:07 localhost sdpd[5814]: Bluetooth SDP daemon
    Nov  1 11:03:07 localhost kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Nov  1 11:03:07 localhost kernel: total RAM covered: 393216M
    Nov  1 11:03:07 localhost kernel: Found optimal setting for mtrr clean up
    Nov  1 11:03:07 localhost kernel:  gran_size: 64K chunk_size: 64K num_reg: 9   lose cover RAM: 0G
    Nov  1 11:03:07 localhost kernel: last_pfn = 0x7df4c max_arch_pfn = 0x400000000
    Nov  1 11:03:07 localhost pcscd: pcscdaemon.c:507:main() pcsc-lite 1.4.4 daemon ready.
    Nov  1 11:03:07 localhost kernel: found SMP MP-table at [ffff8800000fdb60] fdb60
    Nov  1 11:03:07 localhost kernel: Using GB pages for direct mapping
    Nov  1 11:03:07 localhost kernel: init_memory_mapping: 0000000000000000-000000007df4c000
    Nov  1 11:03:07 localhost kernel: init_memory_mapping: 0000000100000000-0000006080000000
    Nov  1 11:03:08 localhost pcscd: hotplug_libusb.c:402:HPEstablishUSBNotifications() Driver ifd-egate.bundle does not support IFD_GENERATE_HOTPLUG. Using active polling instead.
    Nov  1 11:03:08 localhost pcscd: hotplug_libusb.c:411:HPEstablishUSBNotifications() Polling forced every 1 second(s)
    Nov  1 11:03:07 localhost kernel: RAMDISK: 3795a000 - 37ff0000
    Nov  1 11:03:08 localhost kernel: ACPI: RSDP 00000000000f0490 00024 (v02 ACRSYS)
    Nov  1 11:03:08 localhost kernel: ACPI: XSDT 000000007dfa6090 0009C (v01 ACRSYS ACRPRDCT 00000001 AMI  00010013)
    Nov  1 11:03:08 localhost kernel: ACPI: FACP 000000007dfafb10 000F4 (v04 ACRSYS ACRPRDCT 00000001 AMI  00010013)
    Nov  1 11:03:08 localhost kernel: ACPI: DSDT 000000007dfa61b8 09956 (v02 ACRSYS ACRPRDCT 00000000 INTL 20091112)
    Nov  1 11:03:08 localhost kernel: ACPI: FACS 000000007e23df80 00040
    Nov  1 11:03:08 localhost kernel: ACPI: APIC 000000007dfafc08 00224 (v03 ACRSYS ACRPRDCT 00000001 AMI  00010013)
    Nov  1 11:03:08 localhost kernel: ACPI: FPDT 000000007dfafe30 00044 (v01 ACRSYS ACRPRDCT 00000001 AMI  00010013)
    Nov  1 11:03:08 localhost kernel: ACPI: SRAT 000000007dfafe78 004B0 (v01 A M I  AMI SRAT 00000001 AMI. 00000000)
    Nov  1 11:03:08 localhost kernel: ACPI: SLIT 000000007dfb0328 00030 (v01 A M I  AMI SLIT 00000000 AMI. 00000000)
    Nov  1 11:03:08 localhost kernel: ACPI: HPET 000000007dfb0358 00038 (v01 ACRSYS ACRPRDCT 00000001 AMI. 00000005)
    Nov  1 11:03:08 localhost kernel: ACPI: PRAD 000000007dfb0390 000BE (v02 PRADID  PRADTID 00000001 MSFT 04000000)
    Nov  1 11:03:08 localhost kernel: ACPI: SPMI 000000007dfb0450 00040 (v05 A M I   OEMSPMI 00000000 AMI. 00000000)
    Nov  1 11:03:08 localhost kernel: ACPI: SSDT 000000007dfb0490 6B344 (v02  INTEL    CpuPm 00004000 INTL 20091112)
    Nov  1 11:03:08 localhost kernel: ACPI: EINJ 000000007e01b7d8 00130 (v01    AMI AMI EINJ 00000000      00000000)
    Nov  1 11:03:08 localhost kernel: ACPI: ERST 000000007e01b908 00230 (v01  AMIER AMI ERST 00000000      00000000)
    Nov  1 11:03:08 localhost kernel: ACPI: HEST 000000007e01bb38 000A8 (v01    AMI AMI HEST 00000000      00000000)
    Nov  1 11:03:08 localhost kernel: ACPI: BERT 000000007e01bbe0 00030 (v01    AMI AMI BERT 00000000      00000000)
    Nov  1 11:03:08 localhost kernel: ACPI: DMAR 000000007e01bc10 00178 (v01 A M I   OEMDMAR 00000001 INTL 00000001)
    Nov  1 11:03:08 localhost kernel: ACPI: MCFG 000000007e01bd88 0003C (v01 ACRSYS ACRPRDCT 00000001 MSFT 00000097)
    Nov  1 11:03:08 localhost kernel: NUMA turned off
    Nov  1 11:03:09 localhost kernel: Faking a node at 0000000000000000-0000006080000000
    Nov  1 11:03:09 localhost kernel: Initmem setup node 0 0000000000000000-0000006080000000
    Nov  1 11:03:09 localhost kernel:   NODE_DATA [000000607ffd9000 - 000000607fffffff]
    Nov  1 11:03:09 localhost kernel: Zone PFN ranges:
    Nov  1 11:03:09 localhost kernel:   DMA      0x00000010 -> 0x00001000
    Nov  1 11:03:09 localhost kernel:   DMA32    0x00001000 -> 0x00100000
    Nov  1 11:03:09 localhost kernel:   Normal   0x00100000 -> 0x06080000
    Nov  1 11:03:09 localhost kernel: Movable zone start PFN for each node
    Nov  1 11:03:09 localhost kernel: early_node_map[3] active PFN ranges
    Nov  1 11:03:09 localhost kernel:     0: 0x00000010 -> 0x0000009a
    Nov  1 11:03:09 localhost kernel:     0: 0x00000100 -> 0x0007df4c
    Nov  1 11:03:09 localhost kernel:     0: 0x00100000 -> 0x06080000
    Nov  1 11:03:10 localhost kernel: ACPI: PM-Timer IO Port: 0x408
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x04] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x06] lapic_id[0x06] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x08] lapic_id[0x08] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x0a] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x0c] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x0e] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x10] lapic_id[0x20] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x12] lapic_id[0x22] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x14] lapic_id[0x24] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x16] lapic_id[0x26] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x18] lapic_id[0x28] enabled)
    Nov  1 11:03:11 localhost kernel: ACPI: LAPIC (acpi_id[0x1a] lapic_id[0x2a] enabled)
    Nov  1 11:03:11 localhost kernel: ACPI: LAPIC (acpi_id[0x1c] lapic_id[0x2c] enabled)
    Nov  1 11:03:11 localhost kernel: ACPI: LAPIC (acpi_id[0x1e] lapic_id[0x2e] enabled)
    Nov  1 11:03:11 localhost kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    Nov  1 11:03:11 localhost kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
    Nov  1 11:03:11 localhost kernel: ACPI: LAPIC (acpi_id[0x05] lapic_id[0x05] enabled)
    Nov  1 11:03:12 localhost kernel: ACPI: LAPIC (acpi_id[0x07] lapic_id[0x07] enabled)
    Nov  1 11:03:12 localhost kernel: ACPI: LAPIC (acpi_id[0x09] lapic_id[0x09] enabled)
    Nov  1 11:03:12 localhost kernel: ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x0b] enabled)
    Nov  1 11:03:12 localhost kernel: ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x0d] enabled)
    Nov  1 11:03:12 localhost kernel: ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x0f] enabled)
    Nov  1 11:03:12 localhost kernel: ACPI: LAPIC (acpi_id[0x11] lapic_id[0x21] enabled)
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC (acpi_id[0x13] lapic_id[0x23] enabled)
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC (acpi_id[0x15] lapic_id[0x25] enabled)
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC (acpi_id[0x17] lapic_id[0x27] enabled)
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC (acpi_id[0x19] lapic_id[0x29] enabled)
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC (acpi_id[0x1b] lapic_id[0x2b] enabled)
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC (acpi_id[0x1d] lapic_id[0x2d] enabled)
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC (acpi_id[0x1f] lapic_id[0x2f] enabled)
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
    Nov  1 11:03:15 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
    Nov  1 11:03:15 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
    Nov  1 11:03:15 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
    Nov  1 11:03:15 localhost hidd[5960]: Bluetooth HID daemon
    Nov  1 11:03:15 localhost kernel: ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
    Nov  1 11:03:15 localhost kernel: IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
    Nov  1 11:03:15 localhost kernel: ACPI: IOAPIC (id[0x02] address[0xfec01000] gsi_base[24])
    Nov  1 11:03:15 localhost kernel: IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
    Nov  1 11:03:15 localhost kernel: ACPI: IOAPIC (id[0x03] address[0xfec40000] gsi_base[48])
    Nov  1 11:03:15 localhost kernel: IOAPIC[2]: apic_id 3, version 32, address 0xfec40000, GSI 48-71
    Nov  1 11:03:15 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Nov  1 11:03:15 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Nov  1 11:03:15 localhost kernel: Using ACPI (MADT) for SMP configuration information
    Nov  1 11:03:15 localhost kernel: ACPI: HPET id: 0x8086a701 base: 0xfed00000
    Nov  1 11:03:15 localhost kernel: SMP: Allowing 32 CPUs, 0 hotplug CPUs
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 000000000009a000 - 000000000009b000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 000000000009b000 - 00000000000a0000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 000000007df4c000 - 000000007df89000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 000000007df89000 - 000000007e01c000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 000000007e01c000 - 000000007e240000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 000000007e240000 - 000000007f34c000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 000000007f34c000 - 000000007f800000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 000000007f800000 - 0000000080000000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 0000000080000000 - 0000000090000000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 0000000090000000 - 00000000fed1c000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 00000000fed1c000 - 00000000fed40000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 00000000fed40000 - 00000000ff000000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 00000000ff000000 - 0000000100000000
    Nov  1 11:03:16 localhost automount[5994]: lookup_read_master: lookup(nisplus): couldn't locate nis+ table auto.master
    Nov  1 11:03:16 localhost kernel: Allocating PCI resources starting at 90000000 (gap: 90000000:6ed1c000)
    Nov  1 11:03:16 localhost kernel: Booting paravirtualized kernel on bare hardware
    Nov  1 11:03:17 localhost kernel: setup_percpu: NR_CPUS:4096 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:1
    Nov  1 11:03:17 localhost kernel: PERCPU: Embedded 26 pages/cpu @ffff88607f200000 s77440 r8192 d20864 u131072
    Nov  1 11:03:17 localhost kernel: Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 99271377
    Nov  1 11:03:17 localhost kernel: Policy zone: Normal
    Nov  1 11:03:17 localhost kernel: Kernel command line: ro root=/dev/mapper/lun_osp3 rhgb  quiet numa=off
    Nov  1 11:03:17 localhost kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Nov  1 11:03:17 localhost kernel: xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340
    Nov  1 11:03:17 localhost kernel: Checking aperture...
    Nov  1 11:03:17 localhost kernel: No AGP bridge found
    Nov  1 11:03:17 localhost kernel: Queued invalidation will be enabled to support x2apic and Intr-remapping.
    Nov  1 11:03:17 localhost kernel: BUG: Bad page state in process swapper  pfn:5e13c2e
    Nov  1 11:03:18 localhost kernel: page:ffffea0149452a10 count:0 mapcount:0 mapping:          (null) index:0x0
    Nov  1 11:03:18 localhost kernel: page flags: 0x20000000000080(slab)
    Nov  1 11:03:18 localhost kernel: Pid: 0, comm: swapper Not tainted 2.6.39-300.26.1.el5uek #1
    Nov  1 11:03:19 localhost kernel: Call Trace:
    Nov  1 11:03:19 localhost kernel:  [<ffffffff811147dd>] bad_page+0x9d/0x120
    Nov  1 11:03:19 localhost gpm[6080]: *** info [startup.c(95)]:
    Nov  1 11:03:19 localhost kernel:  [<ffffffff81114923>] free_pages_prepare+0xc3/0x100
    Nov  1 11:03:19 localhost gpm[6080]: Started gpm successfully. Entered daemon mode.
    Nov  1 11:03:19 localhost kernel:  [<ffffffff81118a82>] __free_pages_ok+0x32/0xf0
    Nov  1 11:03:19 localhost kernel:  [<ffffffff81118b60>] __free_pages+0x20/0x30
    Nov  1 11:03:19 localhost kernel:  [<ffffffff815045b6>] __free_pages_bootmem+0x66/0x90
    Nov  1 11:03:19 localhost kernel:  [<ffffffff819f13c1>] __free_pages_memory+0x101/0x170
    Nov  1 11:03:19 localhost kernel:  [<ffffffff819f1487>] free_all_memory_core_early+0x57/0x70
    Nov  1 11:03:19 localhost kernel:  [<ffffffff81514605>] ? bad_to_user+0x76f/0x76f
    Nov  1 11:03:19 localhost avahi-daemon[6171]: Found user 'avahi' (UID 70) and group 'avahi' (GID 70).
    Nov  1 11:03:19 localhost kernel:  [<ffffffff819e41a7>] numa_free_all_bootmem+0x87/0xa0
    Nov  1 11:03:19 localhost avahi-daemon[6171]: Successfully dropped root privileges.
    Nov  1 11:03:20 localhost kernel:  [<ffffffff819e227b>] mem_init+0x3b/0x110
    Nov  1 11:03:20 localhost avahi-daemon[6171]: avahi-daemon 0.6.16 starting up.
    Nov  1 11:03:20 localhost kernel:  [<ffffffff819c4140>] ? early_idt_handlers+0x140/0x140
    Nov  1 11:03:20 localhost avahi-daemon[6171]: WARNING: No NSS support for mDNS detected, consider installing nss-mdns!
    Nov  1 11:03:20 localhost kernel:  [<ffffffff819c4140>] ? early_idt_handlers+0x140/0x140
    Nov  1 11:03:20 localhost kernel:  [<ffffffff819c4779>] mm_init+0x9/0x20
    Nov  1 11:03:20 localhost avahi-daemon[6171]: Successfully called chroot().
    Nov  1 11:03:20 localhost kernel:  [<ffffffff819c4ec5>] start_kernel+0x145/0x390

    It could be a hardware issue. I suggest to run Memtest. You can download a free stand-alone disk image, which you can burn to CD from here:
    http://www.memtest86.com/download.htm
    Then burn the iso disk image and restart the computer from the appropriate media. Be sure to follow the instructions of your CD/DVD software to properly burn .ISO images. There is plenty of info on the web.

  • Where to download and how to install X Window System for Oracle Linux 5 ?

    Folks,
    Hello. I am using Oracle Linux 5 and Oracle Database 11g for PIA.
    Before install Oracle DB 11g into Oracle Linux 5, we need to install X Window System according to the document page 2 http://download.oracle.com/docs/cd/B28359_01/install.111/b32285.pdf
    But I don't know where to download and how to install X Window System for Oracle Linux 5.
    Can any folk provide a link to download X Window System and tutorial to install it for Oracle Linux 5 ?

    You can address the problem in a number of different ways.
    You can install X-windows from the installation DVD or setup access to the Oracle public software repository as described in http://public-yum.oracle.com. In which case, the command to install X-windows is: yum groupinstall "X Window System"
    Or, you login remotely and and use SSH with X-forwarding, in which case the software on the server will use the X-Windows server on your client system. This is probably the preferred way since you do not have X-windows installed on the server. For more details about SSH forwarding and howto, please see Install Oracle 11gR2 on Ubuntu Linux 11.04 (64-bit) Howto part 2 Oracle Universal Installer.

  • Oracle Linux versioning

    Hi Avi, i'm quiet confuse if the release and distributions:
    uname -a on my server show me 2.6.32-200.13.1.el5uek, that mean that it's a Entreprise Linux 5 ?
    what the diff betwenn OEL5, OEL6 EL5UEK, EL6UEK, i'm lost.
    Oracle Linux kernel appear as UEK ?
    I just go to edelivery and found theses download :
    1) Oracle Linux Release 6 Update 4 for x86_64 (64 Bit)     V37084-01     3.5G
    2) Oracle Linux Release 6 Update 4 Boot iso image for x86_64 (64 bit)     V37088-01     197M
    3) Oracle Linux Release 6 Update 4 UEK Boot ISO image for x86_64 (64 bit)     V37090-01     196M
    4) Oracle Linux Release 6 Update 4 source DVD 1     V37086-01     3.1G
    5) Oracle Linux Release 6 Update 4 source DVD 2     V37087-01     1.9G
    If I build a server with the 1) what will be the result of a uname -a ?
    What the purpose of the number 2 and 3 ?
    So many questions ....
    Edited by: 952690 on 24 mai 2013 08:02

    952690 wrote:
    uname -a on my server show me 2.6.32-200.13.1.el5uek, that mean that it's a Entreprise Linux 5 ?Yes.
    what the diff betwenn OEL5, OEL6 EL5UEK, EL6UEK, i'm lost.There is no OEL, just OL. :) Oracle Linux 5 (OL5) and Oracle Linux 6 (OL6) are completely different major versions of Oracle Linux. Each of those has two kernels, the Red Hat Compatible Kernel (RHCK) or the Unbreakable Enterprise Kernel (UEK).
    Oracle Linux kernel appear as UEK ?Yes.
    I just go to edelivery and found theses download :
    1) Oracle Linux Release 6 Update 4 for x86_64 (64 Bit)     V37084-01     3.5GThis is the complete install DVD, which includes both the RHCK and UEK as well as most of the packages available for OL6.
    2) Oracle Linux Release 6 Update 4 Boot iso image for x86_64 (64 bit)     V37088-01     197MThis is a small bootable image that uses the RHCK during install but only contains the installation program, but none of the packages. You need to have the contents of the ISO from (1) available somewhere on your network.
    3) Oracle Linux Release 6 Update 4 UEK Boot ISO image for x86_64 (64 bit)     V37090-01     196MThis is a small bootable image that uses the UEK Release 2 kernel during install but only contains the installation program, but none of the packages. You need to have the contents of the ISO from (1) available somewhere on your network. This image also has btrfs support during installation, something that (1) and (2) do not.
    If I build a server with the 1) what will be the result of a uname -a ?The default kernel is 2.6.39-400.17.1.el6uek, but it will also install the RHCK 2.6.32-358.el6.

  • Oracle-Linux-Doubts

    I have installed Oracle linux 6.2. I need GUI mode. What should i do to get that?
    Also i dont have internet connnection on my server for accessing yum repo(online). So where can i download the repository image(offline) for oracle linux 6.2
    Please clarify my questions. Its very urgent...
    Thanks,
    Veijar

    In addition to the previous reply, the following will configure YUM to use your local installation DVD:
    Login as root and paste the following to the system command prompt:
    <pre>
    cat > /etc/yum.repos.d/dvd.repo <<EOF
    [Install_DVD_base]
    name=Install DVD
    baseurl=file:///mnt/Server
    gpgcheck=0
    enabled=1
    skip_if_unavailable=True
    EOF
    </pre>
    To use the yum software repository of the OS installation DVD, it will be necessary to mount it:
    <pre>
    cd /
    umount /dev/cdrom
    mount -o loop -t iso9660 /dev/cdrom /mnt
    yum clean all
    yum repolist
    </pre>
    Note: The oracle-rdbms-server-11gR2-preinstall package is not on the installation DVD, unless you use Oracle Linux 6.3.

  • Idiot needs help!  Setup Home Oracle Linux Server

    I'm trying to setup a Linux server using an old PC. I can download Oracle Linux in a zipped file from Oracle. Then, I'm suppose to unzip using an Oracle supplied utility and burn the extracted files to a DVD. My client PC is running Vista Home. I'm a little confused on how I unzip the "Linux" files and burn them to a DVD. I would think this should all be done in a Linux environment/(or on a Linux box) - this is what I'm trying to setup. How do I get the ISO IMG files extracted and burned for a Linux boot cd? If it sounds like I don't know what I'm talking about, you're right - I don't.
    HELP!
    Edited by: 899355 on Nov 27, 2011 11:38 AM

    Most PC's come with DVD/CD authoring software installed, like Nero or MagicISO maker, etc. What software do you have available? There is plenty of information available in Google about how to burn an iso image to dvd. Or you could check http://www.wikihow.com/Burn-ISO-Files-to-DVD. Whatever you choose, make sure to burn the raw ISO image and NOT the disk of the "mounted" .ISO image. I would also recommend 7-zip to unzip the downloaded files.
    In case you are installing this for educational or development purpose and your PC has at least 4 GB of RAM you may consider to use free Oracle VirutalBox from http://www.virtualbox.org. It can boot and use saved .iso files without the need to burn media. This option will not jeopardize your Windows installation and allow you to run Linux as a Guest OS under your current Windows OS, when you need it. Don't fumble around with old fashioned dual-boot options - it's better to get some more cheap RAM and bigger disk if necessary. There are also pre-build virtual machines available at http://www.oracle.com/technetwork/community/developer-vm/index.html

  • Oracle linux 6.3: (yum update)  [Errno 14] PYCURL ERROR 22

    Hi all,
    i get this error when i try to update a new fresh instalation of OL 6.3
    yum update
    Downloading Packages:
    http://public-yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/apr-1.3.9-5.el6_2.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 403"
    Trying other mirror.
    http://public-yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/bind-libs-9.8.2-0.10.rc1.el6_3.2.x86_64.rpm: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 403"
    Trying other mirror.
    http://public-yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/bind-utils-9.8.2-0.10.rc1.el6_3.2.x86_64.rpm: *[Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 403"*
    Trying other mirror.
    it's the firts update after install from dvd.
    also i get the same error with wget:
    wget http://public-yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/apr-1.3.9-5.el6_2.x86_64.rpm
    --2012-08-02 15:43:39-- http://public-yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/getPackage/apr-1.3.9-5.el6_2.x86_64.rpm
    Resolviendo public-yum.oracle.com... 141.146.44.34
    Connecting to public-yum.oracle.com|141.146.44.34|:80... conectado.
    Petición HTTP enviada, esperando respuesta... 403 Forbidden: header 'Content-Type' value denied
    *2012-08-02 15:43:39 ERROR 403: Forbidden: header 'Content-Type' value denied.*
    it's only yum problem:
    wget google.cl
    --2012-08-02 15:44:44-- http://google.cl/
    Resolviendo google.cl... 173.194.42.31, 173.194.42.23, 173.194.42.24, ...
    Connecting to google.cl|173.194.42.31|:80... conectado.
    Petición HTTP enviada, esperando respuesta... 301 Moved Permanently
    Localización: http://www.google.cl/ [siguiendo]
    --2012-08-02 15:44:45-- http://www.google.cl/
    Resolviendo www.google.cl... 173.194.42.31, 173.194.42.23, 173.194.42.24, ...
    Reusing existing connection to google.cl:80.
    Petición HTTP enviada, esperando respuesta... 200 OK
    Longitud: no especificado [text/html]
    Saving to: `index.html.1'
    [ <=>                                                                                                       ] 13.012 --.-K/s in 0s
    2012-08-02 15:44:45 (77,6 MB/s) - `index.html.1' saved [13012]
    Please really need help here!
    thansk
    Edited by: 950590 on 02-ago-2012 13:43

    i think so,
    just installed from DVD on default options
    this is the */etc/yum.repo.d/public-yum-ol6.repo* (with no modification)
    [ol6_latest]
    name=Oracle Linux $releasever Latest ($basearch)
    baseurl=http://public-yum.oracle.com/repo/OracleLinux/OL6/latest/$basearch/
    gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-ol6
    gpgcheck=1
    enabled=1
    [ol6_ga_base]
    name=Oracle Linux $releasever GA installation media copy ($basearch)
    baseurl=http://public-yum.oracle.com/repo/OracleLinux/OL6/0/base/$basearch/
    gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-ol6
    gpgcheck=1
    enabled=0
    [ol6_u1_base]
    name=Oracle Linux $releasever Update 1 installation media copy ($basearch)
    baseurl=http://public-yum.oracle.com/repo/OracleLinux/OL6/1/base/$basearch/
    gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-ol6
    gpgcheck=1
    enabled=0
    [ol6_u2_base]
    name=Oracle Linux $releasever Update 2 installation media copy ($basearch)
    baseurl=http://public-yum.oracle.com/repo/OracleLinux/OL6/2/base/$basearch/
    gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-ol6
    gpgcheck=1
    enabled=0
    [ol6_u3_base]
    name=Oracle Linux $releasever Update 3 installation media copy ($basearch)
    baseurl=http://public-yum.oracle.com/repo/OracleLinux/OL6/3/base/$basearch/
    gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-ol6
    gpgcheck=1
    enabled=0
    [ol6_UEK_latest]
    name=Latest Unbreakable Enterprise Kernel for Oracle Linux $releasever ($basearch)
    baseurl=http://public-yum.oracle.com/repo/OracleLinux/OL6/UEK/latest/$basearch/
    gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-ol6
    gpgcheck=1
    enabled=1
    [ol6_UEK_base]
    name=Unbreakable Enterprise Kernel for Oracle Linux $releasever ($basearch)
    baseurl=http://public-yum.oracle.com/repo/OracleLinux/OL6/UEK/base/$basearch/
    gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-ol6
    gpgcheck=1
    enabled=0

Maybe you are looking for