Setup udev rules with Red Hat 5/6 on VMware
May 16, 2013 Leave a Comment
[root@rhel59dra ~]# /sbin/scsi_id -g -u -s /block/sdc
Note:
[root@rhel59dra ~]# ls -l /dev/ASM*
Oracle ACE Director: Charles Kim
May 16, 2013 Leave a Comment
[root@rhel59dra ~]# /sbin/scsi_id -g -u -s /block/sdc
[root@rhel59dra ~]# ls -l /dev/ASM*
May 10, 2013 Leave a Comment
Here’s a simple stored procedure that I’ve been using for about a decade. From the application or from database triggers, if I want to record anything to the alert log, I can simply invoke this stored procedure and write error messages to the alert log.
Most of the DBAs have implemented alert log scanners and will send alert notifications if new ORA- error messages pop up in the alert log file.
create or replace procedure edba_write_alert
( p_message varchar2,p_oranum NUMBER default 20001)isbegindbms_system.ksdddt;dbms_system.ksdwrt(2, ‘ORA-’||to_char(p_oranum)||’: ‘||p_message);end;/grant execute on edba_write_alert to public;
May 10, 2013 Leave a Comment
Prior to 11.2, the following set of init.ora parameters were recommended:
*.db_cache_size=64m
*.large_pool_size=12M
*.shared_pool_size=128M
*.processes=300
Going forward with 11.2 and higher, oracle recommends setting memory_target to approximately 1.5 GB. Also, you will notice that we are leveraging memory_target versus sga_target which insinuates that we are not using huge pages for ASM memory structures:
alter system set memory_target=1536m scope=spfile;
The equation for the process parameters is:
Processes=25 + (10 + max number of concurrent database file creations, and file extend operations possible) * n.
Where n is the number of databases connecting to ASM.
Posted by Charles Kim, Oracle ACE Director
May 8, 2013 Leave a Comment
Download the latest ZFS Storage Appliance with the Exadata
This presentation was delivered at Collaborate 2013 and Dallas Oracle User Group 2013 by Charles Kim, Oracle ACE Director
May 8, 2013 Leave a Comment
Basic instructions for adding a new node to the RAC cluster:
2. On the target node, make sure /u01/app/11.2.0 directory is created and empty. This directory needs to be owned as: oracle:dba
3. Run addnode.ksh (shown below) on an existing RAC node with parameters replaced as oracle
4. As instructed, execute root.sh on target node as root
Here’s all the caveats:
1. It is still buggy on the cluvfy side for 11.2.0.3. It had bugs in 11.2.0.2 also. I recall we had to set IGNORE_PREADDNODE_CHECKS to Y back then, and it looks like we still have to.
2. /u01/app/oraInventory has to be pre-created and owned by oracle:dba and has to be completely empty
3. /u01/app/11.2.0 needs to be owned by oracle:dba. The /u01/app/11.2.0/grid directory cannot exist … even as an empty directory. The addnode.sh script attempts to do a “mkdir grid” as oracle, and if it fails, it dies.
4. It died on me twice at “crsctl start listener -n “target_node” … have to create default listener first
5. I did not leverage the -noCopy method. This working example will copy the Grid Home from source RAC node to the new RAC node via scp/ssh. I don’t think it is a big deal … added about 5 minutes to the overall time (see below).
Copying to remote nodes (Saturday, May 4, 2013 8:52:50 PM CDT)………………………………………………………………………………….. 96% Done.Home copied to new nodesSaving inventory on nodes (Saturday, May 4, 2013 8:56:03 PM CDT)
rhel59dra:/u01/app/oracle/deploy_rac
[root@rhel59drb db_backup]# tail -f /u01/app/11.2.0/grid/install/root_rhel59drb_2013-05-04_21-18-28.log
Configure Oracle Grid Infrastructure for a Cluster … succeeded
+ASM1 > crs_stat -t -v
April 26, 2013 Leave a Comment
Mount the CD/DVD: mount /dev/cdrom /mnt/cdrom
Then trick the baseurl directives to point to the file instead of Oracle’s public yum server in the /etc/yum.repos.d/public-yum-ol6.repo/public-yum-el5.repo or /etc/yum.repos.d/public-yum-ol6.repo file:
[root@ovmanager media]# mount /dev/cdrom /mnt
mount: block device /dev/sr0 is write-protected, mounting read-only[oracle@ovmanager yum.repos.d]$ pwd/etc/yum.repos.d[oracle@ovmanager yum.repos.d]$ vi public-yum-el5.repo
[ol5_u8_base]
name=Oracle Linux $releasever Update 8 installation media copy ($basearch)#baseurl=http://public-yum.oracle.com/repo/OracleLinux/OL5/8/base/$basearch/baseurl=file:///mnt/OL5.8/Server/gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-el5gpgcheck=0enabled=1
Now you are ready to install packages from your local yum repository
By Charles Kim, Oracle ACE Director
April 26, 2013 Leave a Comment
RIght click on Server Pools and select Discover Servers

In the Discover Servers window, provide the agent password and list of hostnames or IP addresses:

Click on OK and you can check the status column as the servers are added to the pool. Click on Details for additional information especially if you encounter issues.

Like Magic, you will see the list of servers you just added:

April 26, 2013 Leave a Comment
April 26, 2013 Leave a Comment
First task performed was to install RPMs, set kernel params and other OS configurations leveraging oracle’s oracle-rdbms-server-11gR2-preinstall package.
Second, we need to change the security limits for soft files to 8192 from 1024
# oracle-rdbms-server-11gR2-preinstall setting for nofile soft limit is 1024
oracle soft nofile 8192
Then perform the installation:
[root@ovmanager mnt]# ./runInstaller.sh
Oracle VM Manager Release 3.2.1 Installer
Oracle VM Manager Installer log file:
/tmp/ovm-manager-3-install-2013-04-25-205559.log
Please select an installation type:
1: Simple (includes database if necessary)
2: Custom (using existing Oracle database)
3: Uninstall
4: Help
Select Number (1-4): 1
Starting production with local database installation …
Verifying installation prerequisites …
*** WARNING: Recommended memory for the Oracle VM Manager server installation using Local MySql DB is 7680 MB RAM
One password is used for all users created and used during the installation.
Enter a password for all logins used during the installation:
Invalid password.
Passwords need to be between 8 and 16 characters in length.
Passwords must contain at least 1 lower case and 1 upper case letter.
Passwords must contain at least 1 numeric value.
Enter a password for all logins used during the installation:
Enter a password for all logins used during the installation (confirm):
Verifying configuration …
Start installing the configured components:
1: Continue
2: Abort
Select Number (1-2): 1
Step 1 of 9 : Database Software…
Installing Database Software…
Retrieving MySQL Database 5.5 …
Unzipping MySQL RPM File …
Installing MySQL 5.5 RPM package …
Configuring MySQL Database 5.5 …
Installing MySQL backup RPM package …
Step 2 of 9 : Java …
Installing Java …
Step 3 of 9 : Database schema …
Creating database ‘ovs’ …
Creating user ‘ovs’ for database ‘ovs’…
Step 4 of 9 : WebLogic …
Retrieving Oracle WebLogic Server 11g …
Installing Oracle WebLogic Server 11g …
Step 5 of 9 : ADF …
Retrieving Oracle Application Development Framework (ADF) …
Unzipping Oracle ADF …
Installing Oracle ADF …
Installing Oracle ADF Patch…
Step 6 of 9 : Oracle VM …
Retrieving Oracle VM Manager Application …
Extracting Oracle VM Manager Application …
Installing Oracle VM Manager Core …
Step 7 of 9 : Domain creation …
Creating Oracle WebLogic Server domain …
Starting Oracle WebLogic Server 11g …
Configuring data source ‘OVMDS’ …
Creating Oracle VM Manager user ‘admin’ …
Step 8 of 9 : Deploy …
Deploying Oracle VM Manager Core container …
Deploying Oracle VM Manager UI Console …
Deploying Oracle VM Manager Help …
Granting ovm-admin role to user ‘admin’ …
Set Log Rotation …
Disabling HTTP and enabling HTTPS…
Configuring Https Identity and Trust…
Configuring Weblogic parameters…
Step 9 of 9 : Oracle VM Manager Shell …
Retrieving Oracle VM Manager Shell & API …
Extracting Oracle VM Manager Shell & API …
Installing Oracle VM Manager Shell & API …
Retrieving Oracle VM Manager Upgrade tool …
Extracting Oracle VM Manager Upgrade tool …
Installing Oracle VM Manager Upgrade tool …
Retrieving Oracle VM Manager CLI tool …
Extracting Oracle VM Manager CLI tool…
Installing Oracle VM Manager CLI tool …
Copying Oracle VM Manager shell to ‘/usr/bin/ovm_shell.sh’ …
Installing ovm_admin.sh in ‘/u01/app/oracle/ovm-manager-3/bin’ …
Installing ovm_upgrade.sh in ‘/u01/app/oracle/ovm-manager-3/bin’ …
Enabling Oracle VM Manager service …
Shutting down Oracle VM Manager instance …
Restarting Oracle VM Manager instance …
Waiting for the application to initialize …
Oracle VM Manager is running …
Oracle VM Manager installed.
Please wait while WebLogic configures the applications… This can take up to 5 minutes.
Installation Summary
——————–
Database configuration:
Database type : MySQL
Database host name : localhost
Database name : ovs
Database listener port : 49501
Database user : ovs
Weblogic Server configuration:
Administration username : weblogic
Oracle VM Manager configuration:
Username : admin
Core management port : 54321
UUID : 0004fb0000010000d9377c77e693f5e9
Passwords:
There are no default passwords for any users. The passwords to use for Oracle VM Manager, Database, and Oracle WebLogic Server have been set by you during this installation. In the case of a default install, all passwords are the same.
Oracle VM Manager UI:
https://ovmanager.viscosity-local.com:7002/ovm/console
Log in with the user ‘admin’, and the password you set during the installation.
Please note that you need to install tightvnc-java on this computer to access a virtual machine’s console.
For more information about Oracle Virtualization, please visit:
http://www.oracle.com/virtualization/
Oracle VM Manager installation complete.
Please remove configuration file /tmp/ovm_configIjVxZx.
[root@ovmanager mnt]# rm /tmp/ovm_configIjVxZx
rm: remove regular file `/tmp/ovm_configIjVxZx’? y
Then install tightVNC RPM for java-base console access:
[root@ovmanager ~]# yum install tightvnc
Loaded plugins: security
Setting up Install Process
Resolving Dependencies
–> Running transaction check
—> Package tigervnc.x86_64 0:1.1.0-5.el6 will be installed
–> Finished Dependency Resolution
Dependencies Resolved
========================================================================================================================
Package Arch Version Repository Size
========================================================================================================================
Installing:
tigervnc x86_64 1.1.0-5.el6 ol6_UEK_base 257 k
Transaction Summary
========================================================================================================================
Install 1 Package(s)
Total download size: 257 k
Installed size: 644 k
Is this ok [y/N]: y
Downloading Packages:
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : tigervnc-1.1.0-5.el6.x86_64 1/1
Verifying : tigervnc-1.1.0-5.el6.x86_64 1/1
Installed:
tigervnc.x86_64 0:1.1.0-5.el6
Complete!
Lastly, make sure that you turn off IPTABLES.
[root@ovmanager ~]# service iptables status
Table: filter
Chain INPUT (policy ACCEPT)
num target prot opt source destination
1 ACCEPT all — 0.0.0.0/0 0.0.0.0/0 state RELATED,ESTABLISHED
2 ACCEPT icmp — 0.0.0.0/0 0.0.0.0/0
3 ACCEPT all — 0.0.0.0/0 0.0.0.0/0
4 ACCEPT tcp — 0.0.0.0/0 0.0.0.0/0 state NEW tcp dpt:22
5 REJECT all — 0.0.0.0/0 0.0.0.0/0 reject-with icmp-host-prohibited
Chain FORWARD (policy ACCEPT)
num target prot opt source destination
1 REJECT all — 0.0.0.0/0 0.0.0.0/0 reject-with icmp-host-prohibited
Chain OUTPUT (policy ACCEPT)
num target prot opt source destination
[root@ovmanager ~]# service iptables stop
iptables: Flushing firewall rules: [ OK ]
iptables: Setting chains to policy ACCEPT: filter [ OK ]
iptables: Unloading modules: [ OK ]
By Charles Kim, Oracle ACE Director and Nitin Vengurlekar
April 26, 2013 Leave a Comment
Starting from Oracle Database 11g Release 2, we no longer use the oracle-validated install. Instead, we are supposed to leverage the new oracle-rdbms-server-11gR2-preinstall instead.
[root@ovmanager yum.repos.d]# yum install oracle-rdbms-server-11gR2-preinstall
Loaded plugins: security
ol6_UEK_base | 3.7 kB 00:00 …
ol6_UEK_latest | 3.7 kB 00:00 …
ol6_latest | 3.7 kB 00:00 …
ol6_u4_base | 3.7 kB 00:00 …
Setting up Install Process
Resolving Dependencies
–> Running transaction check
—> Package oracle-rdbms-server-11gR2-preinstall.x86_64 0:1.0-7.el6 will be installed
–> Processing Dependency: glibc-devel for package: oracle-rdbms-server-11gR2-preinstall-1.0-7.el6.x86_64
–> Processing Dependency: compat-libstdc++-33 for package: oracle-rdbms-server-11gR2-preinstall-1.0-7.el6.x86_64
–> Processing Dependency: libstdc++-devel for package: oracle-rdbms-server-11gR2-preinstall-1.0-7.el6.x86_64
–> Processing Dependency: libaio-devel for package: oracle-rdbms-server-11gR2-preinstall-1.0-7.el6.x86_64
–> Processing Dependency: xorg-x11-xauth for package: oracle-rdbms-server-11gR2-preinstall-1.0-7.el6.x86_64
–> Processing Dependency: gcc for package: oracle-rdbms-server-11gR2-preinstall-1.0-7.el6.x86_64
–> Processing Dependency: xorg-x11-utils for package: oracle-rdbms-server-11gR2-preinstall-1.0-7.el6.x86_64
–> Processing Dependency: gcc-c++ for package: oracle-rdbms-server-11gR2-preinstall-1.0-7.el6.x86_64
–> Processing Dependency: compat-libcap1 for package: oracle-rdbms-server-11gR2-preinstall-1.0-7.el6.x86_64
–> Processing Dependency: ksh for package: oracle-rdbms-server-11gR2-preinstall-1.0-7.el6.x86_64
–> Running transaction check
—> Package compat-libcap1.x86_64 0:1.10-1 will be installed
—> Package compat-libstdc++-33.x86_64 0:3.2.3-69.el6 will be installed
—> Package gcc.x86_64 0:4.4.7-3.el6 will be installed
–> Processing Dependency: cpp = 4.4.7-3.el6 for package: gcc-4.4.7-3.el6.x86_64
–> Processing Dependency: cloog-ppl >= 0.15 for package: gcc-4.4.7-3.el6.x86_64
—> Package gcc-c++.x86_64 0:4.4.7-3.el6 will be installed
–> Processing Dependency: libmpfr.so.1()(64bit) for package: gcc-c++-4.4.7-3.el6.x86_64
—> Package glibc-devel.x86_64 0:2.12-1.107.el6 will be installed
–> Processing Dependency: glibc-headers = 2.12-1.107.el6 for package: glibc-devel-2.12-1.107.el6.x86_64
–> Processing Dependency: glibc-headers for package: glibc-devel-2.12-1.107.el6.x86_64
—> Package ksh.x86_64 0:20100621-19.el6 will be installed
—> Package libaio-devel.x86_64 0:0.3.107-10.el6 will be installed
—> Package libstdc++-devel.x86_64 0:4.4.7-3.el6 will be installed
—> Package xorg-x11-utils.x86_64 0:7.5-6.el6 will be installed
–> Processing Dependency: libdmx.so.1()(64bit) for package: xorg-x11-utils-7.5-6.el6.x86_64
–> Processing Dependency: libXxf86dga.so.1()(64bit) for package: xorg-x11-utils-7.5-6.el6.x86_64
–> Processing Dependency: libXxf86misc.so.1()(64bit) for package: xorg-x11-utils-7.5-6.el6.x86_64
—> Package xorg-x11-xauth.x86_64 1:1.0.2-7.1.el6 will be installed
–> Processing Dependency: libXmuu.so.1()(64bit) for package: 1:xorg-x11-xauth-1.0.2-7.1.el6.x86_64
–> Running transaction check
—> Package cloog-ppl.x86_64 0:0.15.7-1.2.el6 will be installed
–> Processing Dependency: libppl.so.7()(64bit) for package: cloog-ppl-0.15.7-1.2.el6.x86_64
–> Processing Dependency: libppl_c.so.2()(64bit) for package: cloog-ppl-0.15.7-1.2.el6.x86_64
—> Package cpp.x86_64 0:4.4.7-3.el6 will be installed
—> Package glibc-headers.x86_64 0:2.12-1.107.el6 will be installed
–> Processing Dependency: kernel-headers >= 2.2.1 for package: glibc-headers-2.12-1.107.el6.x86_64
–> Processing Dependency: kernel-headers for package: glibc-headers-2.12-1.107.el6.x86_64
—> Package libXmu.x86_64 0:1.1.1-2.el6 will be installed
—> Package libXxf86dga.x86_64 0:1.1.3-2.el6 will be installed
—> Package libXxf86misc.x86_64 0:1.0.3-4.el6 will be installed
—> Package libdmx.x86_64 0:1.1.2-2.el6 will be installed
—> Package mpfr.x86_64 0:2.4.1-6.el6 will be installed
–> Running transaction check
—> Package kernel-headers.x86_64 0:2.6.32-358.el6 will be installed
—> Package ppl.x86_64 0:0.10.2-11.el6 will be installed
–> Finished Dependency Resolution
Dependencies Resolved
========================================================================================================================
Package Arch Version Repository Size
========================================================================================================================
Installing:
oracle-rdbms-server-11gR2-preinstall x86_64 1.0-7.el6 ol6_UEK_base 15 k
Installing for dependencies:
cloog-ppl x86_64 0.15.7-1.2.el6 ol6_UEK_base 93 k
compat-libcap1 x86_64 1.10-1 ol6_UEK_base 17 k
compat-libstdc++-33 x86_64 3.2.3-69.el6 ol6_UEK_base 183 k
cpp x86_64 4.4.7-3.el6 ol6_UEK_base 3.7 M
gcc x86_64 4.4.7-3.el6 ol6_UEK_base 10 M
gcc-c++ x86_64 4.4.7-3.el6 ol6_UEK_base 4.7 M
glibc-devel x86_64 2.12-1.107.el6 ol6_UEK_base 973 k
glibc-headers x86_64 2.12-1.107.el6 ol6_UEK_base 604 k
kernel-headers x86_64 2.6.32-358.el6 ol6_UEK_base 2.3 M
ksh x86_64 20100621-19.el6 ol6_UEK_base 686 k
libXmu x86_64 1.1.1-2.el6 ol6_UEK_base 65 k
libXxf86dga x86_64 1.1.3-2.el6 ol6_UEK_base 24 k
libXxf86misc x86_64 1.0.3-4.el6 ol6_UEK_base 17 k
libaio-devel x86_64 0.3.107-10.el6 ol6_UEK_base 13 k
libdmx x86_64 1.1.2-2.el6 ol6_UEK_base 20 k
libstdc++-devel x86_64 4.4.7-3.el6 ol6_UEK_base 1.6 M
mpfr x86_64 2.4.1-6.el6 ol6_UEK_base 156 k
ppl x86_64 0.10.2-11.el6 ol6_UEK_base 1.3 M
xorg-x11-utils x86_64 7.5-6.el6 ol6_UEK_base 94 k
xorg-x11-xauth x86_64 1:1.0.2-7.1.el6 ol6_UEK_base 34 k
Transaction Summary
========================================================================================================================
Install 21 Package(s)
Total download size: 27 M
Installed size: 62 M
Is this ok [y/N]: y
Downloading Packages:
————————————————————————————————————————
Total 119 MB/s | 27 MB 00:00
warning: rpmts_HdrFromFdno: Header V3 RSA/SHA256 Signature, key ID ec551f03: NOKEY
Retrieving key from file:///etc/yum.repos.d/RPM-GPG-KEY-oracle-ol6
Importing GPG key 0xEC551F03:
Userid: “Oracle OSS group (Open Source Software group) <build@oss.oracle.com>”
From : /etc/yum.repos.d/RPM-GPG-KEY-oracle-ol6
Is this ok [y/N]: y
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : libstdc++-devel-4.4.7-3.el6.x86_64 1/21
Installing : mpfr-2.4.1-6.el6.x86_64 2/21
Installing : cpp-4.4.7-3.el6.x86_64 3/21
Installing : libXmu-1.1.1-2.el6.x86_64 4/21
Installing : 1:xorg-x11-xauth-1.0.2-7.1.el6.x86_64 5/21
Installing : libdmx-1.1.2-2.el6.x86_64 6/21
Installing : ksh-20100621-19.el6.x86_64 7/21
Installing : libXxf86dga-1.1.3-2.el6.x86_64 8/21
Installing : compat-libstdc++-33-3.2.3-69.el6.x86_64 9/21
Installing : libXxf86misc-1.0.3-4.el6.x86_64 10/21
Installing : xorg-x11-utils-7.5-6.el6.x86_64 11/21
Installing : libaio-devel-0.3.107-10.el6.x86_64 12/21
Installing : ppl-0.10.2-11.el6.x86_64 13/21
Installing : cloog-ppl-0.15.7-1.2.el6.x86_64 14/21
Installing : kernel-headers-2.6.32-358.el6.x86_64 15/21
Installing : glibc-headers-2.12-1.107.el6.x86_64 16/21
Installing : glibc-devel-2.12-1.107.el6.x86_64 17/21
Installing : gcc-4.4.7-3.el6.x86_64 18/21
Installing : gcc-c++-4.4.7-3.el6.x86_64 19/21
Installing : compat-libcap1-1.10-1.x86_64 20/21
Installing : oracle-rdbms-server-11gR2-preinstall-1.0-7.el6.x86_64 21/21
Verifying : compat-libcap1-1.10-1.x86_64 1/21
Verifying : cpp-4.4.7-3.el6.x86_64 2/21
Verifying : kernel-headers-2.6.32-358.el6.x86_64 3/21
Verifying : xorg-x11-utils-7.5-6.el6.x86_64 4/21
Verifying : glibc-devel-2.12-1.107.el6.x86_64 5/21
Verifying : ppl-0.10.2-11.el6.x86_64 6/21
Verifying : gcc-4.4.7-3.el6.x86_64 7/21
Verifying : libaio-devel-0.3.107-10.el6.x86_64 8/21
Verifying : libXxf86misc-1.0.3-4.el6.x86_64 9/21
Verifying : mpfr-2.4.1-6.el6.x86_64 10/21
Verifying : oracle-rdbms-server-11gR2-preinstall-1.0-7.el6.x86_64 11/21
Verifying : gcc-c++-4.4.7-3.el6.x86_64 12/21
Verifying : compat-libstdc++-33-3.2.3-69.el6.x86_64 13/21
Verifying : libXxf86dga-1.1.3-2.el6.x86_64 14/21
Verifying : 1:xorg-x11-xauth-1.0.2-7.1.el6.x86_64 15/21
Verifying : libstdc++-devel-4.4.7-3.el6.x86_64 16/21
Verifying : ksh-20100621-19.el6.x86_64 17/21
Verifying : libdmx-1.1.2-2.el6.x86_64 18/21
Verifying : libXmu-1.1.1-2.el6.x86_64 19/21
Verifying : cloog-ppl-0.15.7-1.2.el6.x86_64 20/21
Verifying : glibc-headers-2.12-1.107.el6.x86_64 21/21
Installed:
oracle-rdbms-server-11gR2-preinstall.x86_64 0:1.0-7.el6
Dependency Installed:
cloog-ppl.x86_64 0:0.15.7-1.2.el6 compat-libcap1.x86_64 0:1.10-1 compat-libstdc++-33.x86_64 0:3.2.3-69.el6
cpp.x86_64 0:4.4.7-3.el6 gcc.x86_64 0:4.4.7-3.el6 gcc-c++.x86_64 0:4.4.7-3.el6
glibc-devel.x86_64 0:2.12-1.107.el6 glibc-headers.x86_64 0:2.12-1.107.el6 kernel-headers.x86_64 0:2.6.32-358.el6
ksh.x86_64 0:20100621-19.el6 libXmu.x86_64 0:1.1.1-2.el6 libXxf86dga.x86_64 0:1.1.3-2.el6
libXxf86misc.x86_64 0:1.0.3-4.el6 libaio-devel.x86_64 0:0.3.107-10.el6 libdmx.x86_64 0:1.1.2-2.el6
libstdc++-devel.x86_64 0:4.4.7-3.el6 mpfr.x86_64 0:2.4.1-6.el6 ppl.x86_64 0:0.10.2-11.el6
xorg-x11-utils.x86_64 0:7.5-6.el6 xorg-x11-xauth.x86_64 1:1.0.2-7.1.el6
Complete!
By Charles Kim, Oracle ACE Director and Nitin Vengurlekar