<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>deltalounge &#187; Install</title>
	<atom:link href="http://www.deltalounge.net/wpress/tag/install/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.deltalounge.net/wpress</link>
	<description>Service Orientation, Software Development, Oracle, Lean, Agile</description>
	<lastBuildDate>Wed, 08 Feb 2012 08:14:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Installing Oracle Enterprise Repository</title>
		<link>http://www.deltalounge.net/wpress/2011/09/installing-oracle-enterprise-repository/</link>
		<comments>http://www.deltalounge.net/wpress/2011/09/installing-oracle-enterprise-repository/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 13:19:34 +0000</pubDate>
		<dc:creator>PeterPaul</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[SOA Suite]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[WLS]]></category>
		<category><![CDATA[11g]]></category>
		<category><![CDATA[Fusion Middleware]]></category>
		<category><![CDATA[governance]]></category>
		<category><![CDATA[Install]]></category>
		<category><![CDATA[OER]]></category>

		<guid isPermaLink="false">http://www.deltalounge.net/wpress/?p=1498</guid>
		<description><![CDATA[This blog post will show you how to install Oracle Enterprise Repository, or OER in short. The assumptions is that you have a running WebLogic Server (with SOA Suite on top of it) and a database. Prepare &#8211; database The most important part of the preparation for the installation of Oracle Enterprise Repository is the [...]]]></description>
			<content:encoded><![CDATA[<p>This blog post will show you how to install Oracle Enterprise Repository, or OER in short. The assumptions is that you have a running WebLogic Server (with SOA Suite on top of it) and a database.</p>
<h3>Prepare &#8211; database</h3>
<p>The most important part of the preparation for the installation of Oracle Enterprise Repository is the creation of tablespaces and the user that will hold the database objects.<br />
<strong>Create the required tablespaces</strong><br />
You can change the names of the tablespaces and alter the path and names of the data files according to your needs. The example is based on an installation on the Windows OS. If your on Linux/Unix you probably know what to do to make it work on your platform&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">CREATE</span> TABLESPACE OER_DATA
    DATAFILE <span style="color: #ff0000;">'D:<span style="color: #000099; font-weight: bold;">\o</span>racle<span style="color: #000099; font-weight: bold;">\o</span>raclexe<span style="color: #000099; font-weight: bold;">\o</span>radata<span style="color: #000099; font-weight: bold;">\X</span>E<span style="color: #000099; font-weight: bold;">\o</span>er_data.dbf'</span> <span style="color: #993333; font-weight: bold;">SIZE</span> 300M
 AUTOEXTEND <span style="color: #993333; font-weight: bold;">ON</span> <span style="color: #993333; font-weight: bold;">NEXT</span> 10240K MAXSIZE UNLIMITED
    EXTENT MANAGEMENT <span style="color: #993333; font-weight: bold;">LOCAL</span> AUTOALLOCATE
    LOGGING
    ONLINE
    SEGMENT <span style="color: #993333; font-weight: bold;">SPACE</span> MANAGEMENT AUTO;
&nbsp;
<span style="color: #993333; font-weight: bold;">CREATE</span> TABLESPACE OER_LOB
    DATAFILE <span style="color: #ff0000;">'D:<span style="color: #000099; font-weight: bold;">\o</span>racle<span style="color: #000099; font-weight: bold;">\o</span>raclexe<span style="color: #000099; font-weight: bold;">\o</span>radata<span style="color: #000099; font-weight: bold;">\X</span>E<span style="color: #000099; font-weight: bold;">\o</span>er_lob.dbf'</span> <span style="color: #993333; font-weight: bold;">SIZE</span> 300M
 AUTOEXTEND <span style="color: #993333; font-weight: bold;">ON</span> <span style="color: #993333; font-weight: bold;">NEXT</span> 10240K MAXSIZE UNLIMITED
    EXTENT MANAGEMENT <span style="color: #993333; font-weight: bold;">LOCAL</span> AUTOALLOCATE
    LOGGING
    ONLINE
    SEGMENT <span style="color: #993333; font-weight: bold;">SPACE</span> MANAGEMENT AUTO;
&nbsp;
<span style="color: #993333; font-weight: bold;">CREATE</span> TABLESPACE OER_INDEX
    DATAFILE <span style="color: #ff0000;">'D:<span style="color: #000099; font-weight: bold;">\o</span>racle<span style="color: #000099; font-weight: bold;">\o</span>raclexe<span style="color: #000099; font-weight: bold;">\o</span>radata<span style="color: #000099; font-weight: bold;">\X</span>E<span style="color: #000099; font-weight: bold;">\o</span>er_index.dbf'</span> <span style="color: #993333; font-weight: bold;">SIZE</span> 300M
 AUTOEXTEND <span style="color: #993333; font-weight: bold;">ON</span> <span style="color: #993333; font-weight: bold;">NEXT</span> 5120K MAXSIZE UNLIMITED
    EXTENT MANAGEMENT <span style="color: #993333; font-weight: bold;">LOCAL</span> AUTOALLOCATE
    LOGGING
    ONLINE
    SEGMENT <span style="color: #993333; font-weight: bold;">SPACE</span> MANAGEMENT AUTO;</pre></div></div>

<p><strong>Create the user</strong><br />
Change the user name and password (both OER in this case) to cater your needs.</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">CREATE</span> <span style="color: #993333; font-weight: bold;">USER</span> OER <span style="color: #993333; font-weight: bold;">IDENTIFIED</span> <span style="color: #993333; font-weight: bold;">BY</span> OER
<span style="color: #993333; font-weight: bold;">DEFAULT</span> TABLESPACE OER_DATA
    <span style="color: #993333; font-weight: bold;">TEMPORARY</span> TABLESPACE TEMP;
&nbsp;
<span style="color: #993333; font-weight: bold;">GRANT</span> <span style="color: #993333; font-weight: bold;">CREATE</span> MATERIALIZED <span style="color: #993333; font-weight: bold;">VIEW</span> <span style="color: #993333; font-weight: bold;">TO</span> OER;
<span style="color: #993333; font-weight: bold;">GRANT</span> <span style="color: #993333; font-weight: bold;">CREATE</span> <span style="color: #993333; font-weight: bold;">SEQUENCE</span> <span style="color: #993333; font-weight: bold;">TO</span> OER;
<span style="color: #993333; font-weight: bold;">GRANT</span> <span style="color: #993333; font-weight: bold;">CREATE</span> <span style="color: #993333; font-weight: bold;">SESSION</span> <span style="color: #993333; font-weight: bold;">TO</span> OER;
<span style="color: #993333; font-weight: bold;">GRANT</span> <span style="color: #993333; font-weight: bold;">CREATE</span> SYNONYM <span style="color: #993333; font-weight: bold;">TO</span> OER;
<span style="color: #993333; font-weight: bold;">GRANT</span> <span style="color: #993333; font-weight: bold;">CREATE</span> <span style="color: #993333; font-weight: bold;">TABLE</span> <span style="color: #993333; font-weight: bold;">TO</span> OER;
<span style="color: #993333; font-weight: bold;">GRANT</span> <span style="color: #993333; font-weight: bold;">CREATE</span> <span style="color: #993333; font-weight: bold;">TRIGGER</span> <span style="color: #993333; font-weight: bold;">TO</span> OER;
<span style="color: #993333; font-weight: bold;">GRANT</span> <span style="color: #993333; font-weight: bold;">CREATE</span> <span style="color: #993333; font-weight: bold;">VIEW</span> <span style="color: #993333; font-weight: bold;">TO</span> OER;
<span style="color: #993333; font-weight: bold;">GRANT</span> UNLIMITED TABLESPACE <span style="color: #993333; font-weight: bold;">TO</span> OER;</pre></div></div>

<h3>Install OER</h3>
<p>Us the follwing command from a dos prompt to start the OER installation. By default it will start in graphical mode. You can use the <code>-mode</code> option to start it in <code>console</code> or <code>silent</code> mode.</p>

<div class="wp_syntax"><div class="code"><pre class="dos" style="font-family:monospace;">java -jar OER111150_generic.jar -log=C:\installSOA\logs\OER_install.log</pre></div></div>


<div class="ngg-galleryoverview" id="ngg-gallery-11-1498">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.deltalounge.net/wpress/2011/09/installing-oracle-enterprise-repository/?show=slide">
			[Show as slideshow]		</a>
	</div>

	
	<!-- Thumbnails -->
		
	<div id="ngg-image-99" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/install-oracle-enterprise-repository/install-oer_-1.jpg" title=" " class="shutterset_set_11"  rel="wp-prettyPhoto[g1498]">
								<img title="Install OER" alt="Install OER" src="http://www.deltalounge.net/wpress/wp-content/gallery/install-oracle-enterprise-repository/thumbs/thumbs_install-oer_-1.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-102" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/install-oracle-enterprise-repository/install-oer_-2.jpg" title=" " class="shutterset_set_11"  rel="wp-prettyPhoto[g1498]">
								<img title="Install OER" alt="Install OER" src="http://www.deltalounge.net/wpress/wp-content/gallery/install-oracle-enterprise-repository/thumbs/thumbs_install-oer_-2.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-103" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/install-oracle-enterprise-repository/install-oer_-3.jpg" title=" " class="shutterset_set_11"  rel="wp-prettyPhoto[g1498]">
								<img title="Install OER" alt="Install OER" src="http://www.deltalounge.net/wpress/wp-content/gallery/install-oracle-enterprise-repository/thumbs/thumbs_install-oer_-3.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-104" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/install-oracle-enterprise-repository/install-oer_-4.jpg" title=" " class="shutterset_set_11"  rel="wp-prettyPhoto[g1498]">
								<img title="Install OER" alt="Install OER" src="http://www.deltalounge.net/wpress/wp-content/gallery/install-oracle-enterprise-repository/thumbs/thumbs_install-oer_-4.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-105" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/install-oracle-enterprise-repository/install-oer_-5.jpg" title=" " class="shutterset_set_11"  rel="wp-prettyPhoto[g1498]">
								<img title="Install OER" alt="Install OER" src="http://www.deltalounge.net/wpress/wp-content/gallery/install-oracle-enterprise-repository/thumbs/thumbs_install-oer_-5.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-106" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/install-oracle-enterprise-repository/install-oer_-6.jpg" title=" " class="shutterset_set_11"  rel="wp-prettyPhoto[g1498]">
								<img title="Install OER" alt="Install OER" src="http://www.deltalounge.net/wpress/wp-content/gallery/install-oracle-enterprise-repository/thumbs/thumbs_install-oer_-6.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-107" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/install-oracle-enterprise-repository/install-oer_-7.jpg" title=" " class="shutterset_set_11"  rel="wp-prettyPhoto[g1498]">
								<img title="Install OER" alt="Install OER" src="http://www.deltalounge.net/wpress/wp-content/gallery/install-oracle-enterprise-repository/thumbs/thumbs_install-oer_-7.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-108" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/install-oracle-enterprise-repository/install-oer_-8.jpg" title=" " class="shutterset_set_11"  rel="wp-prettyPhoto[g1498]">
								<img title="Install OER" alt="Install OER" src="http://www.deltalounge.net/wpress/wp-content/gallery/install-oracle-enterprise-repository/thumbs/thumbs_install-oer_-8.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-109" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/install-oracle-enterprise-repository/install-oer_-9.jpg" title=" " class="shutterset_set_11"  rel="wp-prettyPhoto[g1498]">
								<img title="Install OER" alt="Install OER" src="http://www.deltalounge.net/wpress/wp-content/gallery/install-oracle-enterprise-repository/thumbs/thumbs_install-oer_-9.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-100" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/install-oracle-enterprise-repository/install-oer_-10.jpg" title=" " class="shutterset_set_11"  rel="wp-prettyPhoto[g1498]">
								<img title="Install OER" alt="Install OER" src="http://www.deltalounge.net/wpress/wp-content/gallery/install-oracle-enterprise-repository/thumbs/thumbs_install-oer_-10.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-101" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/install-oracle-enterprise-repository/install-oer_-11.jpg" title=" " class="shutterset_set_11"  rel="wp-prettyPhoto[g1498]">
								<img title="Install OER" alt="Install OER" src="http://www.deltalounge.net/wpress/wp-content/gallery/install-oracle-enterprise-repository/thumbs/thumbs_install-oer_-11.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


<h3>Run WebLogic Server Domain Configuration Wizard</h3>
<p>To run the Domain Configuration Wizard on Windows you can click: <code>Start > Programs > Oracle Products > Tools > Configuration Wizard</code>. On any platform you can run the <code>config</code> script in the <code><WEBLOGIC_HOME>/common/bin/config.cmd</code>. For example:</p>

<div class="wp_syntax"><div class="code"><pre class="dos" style="font-family:monospace;"><span style="color: #33cc33;">&gt;</span> <span style="color: #b1b100; font-weight: bold;">cd</span> oracle\Middleware\wlserver_10.3\common\bin
<span style="color: #33cc33;">&gt;</span> config.cmd</pre></div></div>


<div class="ngg-galleryoverview" id="ngg-gallery-12-1498">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.deltalounge.net/wpress/2011/09/installing-oracle-enterprise-repository/?show=slide">
			[Show as slideshow]		</a>
	</div>

	
	<!-- Thumbnails -->
		
	<div id="ngg-image-110" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/wls-domain-config-oer/config-wls-domain-oer-1.jpg" title=" " class="shutterset_set_12"  rel="wp-prettyPhoto[g1498]">
								<img title="config-wls-domain-oer-1" alt="config-wls-domain-oer-1" src="http://www.deltalounge.net/wpress/wp-content/gallery/wls-domain-config-oer/thumbs/thumbs_config-wls-domain-oer-1.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-111" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/wls-domain-config-oer/config-wls-domain-oer-2.jpg" title=" " class="shutterset_set_12"  rel="wp-prettyPhoto[g1498]">
								<img title="config-wls-domain-oer-2" alt="config-wls-domain-oer-2" src="http://www.deltalounge.net/wpress/wp-content/gallery/wls-domain-config-oer/thumbs/thumbs_config-wls-domain-oer-2.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-112" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/wls-domain-config-oer/config-wls-domain-oer-3.jpg" title=" " class="shutterset_set_12"  rel="wp-prettyPhoto[g1498]">
								<img title="config-wls-domain-oer-3" alt="config-wls-domain-oer-3" src="http://www.deltalounge.net/wpress/wp-content/gallery/wls-domain-config-oer/thumbs/thumbs_config-wls-domain-oer-3.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-113" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/wls-domain-config-oer/config-wls-domain-oer-4.jpg" title=" " class="shutterset_set_12"  rel="wp-prettyPhoto[g1498]">
								<img title="config-wls-domain-oer-4" alt="config-wls-domain-oer-4" src="http://www.deltalounge.net/wpress/wp-content/gallery/wls-domain-config-oer/thumbs/thumbs_config-wls-domain-oer-4.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-114" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/wls-domain-config-oer/config-wls-domain-oer-5.jpg" title=" " class="shutterset_set_12"  rel="wp-prettyPhoto[g1498]">
								<img title="config-wls-domain-oer-5" alt="config-wls-domain-oer-5" src="http://www.deltalounge.net/wpress/wp-content/gallery/wls-domain-config-oer/thumbs/thumbs_config-wls-domain-oer-5.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-115" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/wls-domain-config-oer/config-wls-domain-oer-6.jpg" title=" " class="shutterset_set_12"  rel="wp-prettyPhoto[g1498]">
								<img title="config-wls-domain-oer-6" alt="config-wls-domain-oer-6" src="http://www.deltalounge.net/wpress/wp-content/gallery/wls-domain-config-oer/thumbs/thumbs_config-wls-domain-oer-6.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-116" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/wls-domain-config-oer/config-wls-domain-oer-7.jpg" title=" " class="shutterset_set_12"  rel="wp-prettyPhoto[g1498]">
								<img title="config-wls-domain-oer-7" alt="config-wls-domain-oer-7" src="http://www.deltalounge.net/wpress/wp-content/gallery/wls-domain-config-oer/thumbs/thumbs_config-wls-domain-oer-7.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-117" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/wls-domain-config-oer/config-wls-domain-oer-8.jpg" title=" " class="shutterset_set_12"  rel="wp-prettyPhoto[g1498]">
								<img title="config-wls-domain-oer-8" alt="config-wls-domain-oer-8" src="http://www.deltalounge.net/wpress/wp-content/gallery/wls-domain-config-oer/thumbs/thumbs_config-wls-domain-oer-8.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


<h3>Post Install actions</h3>
<p>To use all options in the Repository you need to install Java Web Start. To check whether Java Web Start is installed correctly use the <a href="http://www.java.com/en/download/testjava.jsp" title="test Java" target="_blank">test Java</a> link.</p>
<p>In case the JNLP stuff (needed for java Web Start) doesn&#8217;t work. This <a href="http://stuffivelearned.org/doku.php?id=apps:firefox:jnlpfix" title="Firefox JNLP fix" target="_blank">Firefox JNLP fix</a> might help you (via <a href="http://achatzia.blogspot.com/2011/05/installation-of-oracle-enterprise.html" title="OEL install" target="_blank">Andreas</a>).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deltalounge.net/wpress/2011/09/installing-oracle-enterprise-repository/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Windows8 in VirtualBox</title>
		<link>http://www.deltalounge.net/wpress/2011/09/installing-windows8-in-virtualbox/</link>
		<comments>http://www.deltalounge.net/wpress/2011/09/installing-windows8-in-virtualbox/#comments</comments>
		<pubDate>Mon, 19 Sep 2011 09:55:33 +0000</pubDate>
		<dc:creator>PeterPaul</dc:creator>
				<category><![CDATA[Life hack]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[VirtualBox]]></category>
		<category><![CDATA[Install]]></category>
		<category><![CDATA[Windows8]]></category>

		<guid isPermaLink="false">http://www.deltalounge.net/wpress/?p=1486</guid>
		<description><![CDATA[Wanted to do a quick blog on installing Windows8 on VirtualBox. However work and stuff came in the way and of course now there are multiple sites describing it now like this quite short on Oracle blogs, Life Hacker Guide and How-To Geek. Since especially the first ones lack some screenshots, I&#8217;ll share mine: More [...]]]></description>
			<content:encoded><![CDATA[<p>
<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/virtualbox-windows8-6.jpg" title="Mount the downloaded ISO containing Windows8" class="shutterset_singlepic95"  rel="wp-prettyPhoto[g1486]">
	<img class="ngg-singlepic ngg-right" src="http://www.deltalounge.net/wpress/wp-content/gallery/cache/95__320x240_virtualbox-windows8-6.jpg" alt="test drive Windows8 on VirtualBox" title="test drive Windows8 on VirtualBox" />
</a>
Wanted to do a quick blog on installing Windows8 on VirtualBox. However work and stuff came in the way and of course now there are multiple sites describing it now like <a href="http://blogs.oracle.com/fatbloke/entry/windows_8_in_virtualbox" title="Windows8 on VirtualBox" target="_blank">this quite short on Oracle blogs</a>, <a href="http://lifehacker.com/5841065/how-do-i-install-windows-8-in-a-virtual-machine" title="Life Hacker Guide to install Windows8 on VirtualBox" target="_blank">Life Hacker Guide</a> and <a href="http://www.howtogeek.com/74515/how-to-test-drive-windows-8-in-virtualbox/" title="Test drive Windows8 on VirtualBox" target="_blank">How-To Geek</a>. Since especially the first ones lack some screenshots, I&#8217;ll share mine:</p>

<div class="ngg-galleryoverview" id="ngg-gallery-10-1486">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.deltalounge.net/wpress/2011/09/installing-windows8-in-virtualbox/?show=slide">
			[Show as slideshow]		</a>
	</div>

	
	<!-- Thumbnails -->
		
	<div id="ngg-image-84" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/virtualbox-windows8-1.jpg" title="Download Windows8" class="shutterset_set_10"  rel="wp-prettyPhoto[g1486]">
								<img title="virtualbox-windows8-1" alt="virtualbox-windows8-1" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/thumbs/thumbs_virtualbox-windows8-1.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-91" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/virtualbox-windows8-2.jpg" title="Choose the VirtualBox name and OS type" class="shutterset_set_10"  rel="wp-prettyPhoto[g1486]">
								<img title="virtualbox-windows8-2" alt="virtualbox-windows8-2" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/thumbs/thumbs_virtualbox-windows8-2.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-92" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/virtualbox-windows8-3.jpg" title="Set the VirtualBox Harddisk size" class="shutterset_set_10"  rel="wp-prettyPhoto[g1486]">
								<img title="virtualbox-windows8-3" alt="virtualbox-windows8-3" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/thumbs/thumbs_virtualbox-windows8-3.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-93" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/virtualbox-windows8-4.jpg" title="Set the base memory size in VirtualBox" class="shutterset_set_10"  rel="wp-prettyPhoto[g1486]">
								<img title="virtualbox-windows8-4" alt="virtualbox-windows8-4" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/thumbs/thumbs_virtualbox-windows8-4.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-94" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/virtualbox-windows8-5.jpg" title="Set the video memory size in VirtualBox" class="shutterset_set_10"  rel="wp-prettyPhoto[g1486]">
								<img title="virtualbox-windows8-5" alt="virtualbox-windows8-5" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/thumbs/thumbs_virtualbox-windows8-5.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-95" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/virtualbox-windows8-6.jpg" title="Mount the downloaded ISO containing Windows8" class="shutterset_set_10"  rel="wp-prettyPhoto[g1486]">
								<img title="test drive Windows8 on VirtualBox" alt="test drive Windows8 on VirtualBox" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/thumbs/thumbs_virtualbox-windows8-6.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-96" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/virtualbox-windows8-7.jpg" title="Install Windows8" class="shutterset_set_10"  rel="wp-prettyPhoto[g1486]">
								<img title="virtualbox-windows8-7" alt="virtualbox-windows8-7" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/thumbs/thumbs_virtualbox-windows8-7.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-97" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/virtualbox-windows8-8.jpg" title="Install Windows8" class="shutterset_set_10"  rel="wp-prettyPhoto[g1486]">
								<img title="virtualbox-windows8-8" alt="virtualbox-windows8-8" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/thumbs/thumbs_virtualbox-windows8-8.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-85" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/virtualbox-windows8-10.jpg" title="Install Windows8" class="shutterset_set_10"  rel="wp-prettyPhoto[g1486]">
								<img title="virtualbox-windows8-10" alt="virtualbox-windows8-10" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/thumbs/thumbs_virtualbox-windows8-10.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-98" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/virtualbox-windows8-9.jpg" title="Install Windows8" class="shutterset_set_10"  rel="wp-prettyPhoto[g1486]">
								<img title="virtualbox-windows8-9" alt="virtualbox-windows8-9" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/thumbs/thumbs_virtualbox-windows8-9.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-86" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/virtualbox-windows8-11.jpg" title="Install Windows8" class="shutterset_set_10"  rel="wp-prettyPhoto[g1486]">
								<img title="virtualbox-windows8-11" alt="virtualbox-windows8-11" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/thumbs/thumbs_virtualbox-windows8-11.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-87" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/virtualbox-windows8-12.jpg" title="Personalize Windows8" class="shutterset_set_10"  rel="wp-prettyPhoto[g1486]">
								<img title="virtualbox-windows8-12" alt="virtualbox-windows8-12" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/thumbs/thumbs_virtualbox-windows8-12.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-88" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/virtualbox-windows8-13.jpg" title="Personalize Windows8" class="shutterset_set_10"  rel="wp-prettyPhoto[g1486]">
								<img title="virtualbox-windows8-13" alt="virtualbox-windows8-13" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/thumbs/thumbs_virtualbox-windows8-13.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-89" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/virtualbox-windows8-14.jpg" title="Personalize Windows8" class="shutterset_set_10"  rel="wp-prettyPhoto[g1486]">
								<img title="virtualbox-windows8-14" alt="virtualbox-windows8-14" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/thumbs/thumbs_virtualbox-windows8-14.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-90" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/virtualbox-windows8-15.jpg" title="Personalize Windows8" class="shutterset_set_10"  rel="wp-prettyPhoto[g1486]">
								<img title="virtualbox-windows8-15" alt="virtualbox-windows8-15" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-windows8/thumbs/thumbs_virtualbox-windows8-15.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


<p>More info on <a href="http://www.deltalounge.net/wpress/2011/06/installing-ubuntu-11-04-in-virtualbox/" title="Ubuntu 11.04 on VirtualBox" target="_blank">installing an OS like Ubuntu 11.04 on VirtualBox</a> can give you some background on the general process of creating a new VirtualBox image.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deltalounge.net/wpress/2011/09/installing-windows8-in-virtualbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Virtual PC (0&#215;80004005) doesn&#8217;t tolerate VMWare or VirtualBox</title>
		<link>http://www.deltalounge.net/wpress/2011/08/virtual-pc-0x80004005-doesnt-tolerate-vmware-or-virtualbox/</link>
		<comments>http://www.deltalounge.net/wpress/2011/08/virtual-pc-0x80004005-doesnt-tolerate-vmware-or-virtualbox/#comments</comments>
		<pubDate>Mon, 22 Aug 2011 13:54:29 +0000</pubDate>
		<dc:creator>PeterPaul</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[VirtualBox]]></category>
		<category><![CDATA[Install]]></category>

		<guid isPermaLink="false">http://www.deltalounge.net/wpress/?p=1454</guid>
		<description><![CDATA[Since I had to test some webpages with IE6 (please don&#8217;t ask), I wanted to use Windows XP Mode on my Windows 7 laptop (actually run it in VMWare as described here). Microsoft provides virtual machines (vhd files) to run in Microsoft Virtual PC. Windows Virtual PC for Windows 7 is released as an update [...]]]></description>
			<content:encoded><![CDATA[<p>Since I had to test some webpages with <a href="http://ie6update.com/" title="Help kill IE6" target="_blank"></a>IE6 (please don&#8217;t ask), I wanted to use Windows XP Mode on my Windows 7 laptop (actually run it in <a href="http://blog.straylightrun.net/2009/05/13/running-ie6-virtual-pc-image-in-vmware/" title="run XP IE6  in VMWare" target="_blank">VMWare as described here</a>). Microsoft provides virtual machines (<a href="http://en.wikipedia.org/wiki/VHD_(file_format)" title="VHD file format" target="_blank"></a>vhd files) to run in Microsoft Virtual PC.</p>
<p><div id="attachment_1463" class="wp-caption alignright" style="width: 310px"><a href="http://www.deltalounge.net/wpress/wp-content/uploads/2011/08/Windows7-update-failed.jpg" rel="wp-prettyPhoto[g1454]"><img src="http://www.deltalounge.net/wpress/wp-content/uploads/2011/08/Windows7-update-failed-300x70.jpg" alt="KB958559 fails with 0x80004005" title="Windows7-update-failed" width="300" height="70" class="size-medium wp-image-1463" /></a><p class="wp-caption-text">Rolling back the update</p></div>Windows Virtual PC for Windows 7 is released as an update for Windows 7, and has the Knowledge Base Article ID of KB958559. So I tried to install it. That went actually pretty well until I had to reboot my laptop. At about 98% of the update process during the reboot it gave an error and rolled back the update. The log showed:</p>
<blockquote><p>Installation failure: Windows failed to install the following update with error 0&#215;80004005: Update for Windows KB958559</p></blockquote>
<p>Digging into the support forums and blog posts on the subject, the most common working solution I found to the problem was to uninstall VMWare and/or VirtualBox. After the uninstall you can install Virtual PC without the error and after that reinstall VMWare and/or VirtualBox.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deltalounge.net/wpress/2011/08/virtual-pc-0x80004005-doesnt-tolerate-vmware-or-virtualbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SOA Suite Installation Quick Start</title>
		<link>http://www.deltalounge.net/wpress/2011/07/soa-suite-installation-quick-start/</link>
		<comments>http://www.deltalounge.net/wpress/2011/07/soa-suite-installation-quick-start/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 13:56:11 +0000</pubDate>
		<dc:creator>PeterPaul</dc:creator>
				<category><![CDATA[BPEL]]></category>
		<category><![CDATA[JDeveloper]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[SOA Suite]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[WLS]]></category>
		<category><![CDATA[11g]]></category>
		<category><![CDATA[Install]]></category>
		<category><![CDATA[Mediator]]></category>

		<guid isPermaLink="false">http://www.deltalounge.net/wpress/?p=1430</guid>
		<description><![CDATA[There are always quite some blog posts on installing SOA Suite on several platforms. Recently I discovered that Oracle publishes a Quick Start Guide on the SOA Suite (PDF!) that mainly deals with the installation process (and de-installation should you need it). This guide is aimed at installations for developers and not for production machines. [...]]]></description>
			<content:encoded><![CDATA[<p>There are always quite some blog posts on installing SOA Suite on several platforms. Recently I discovered that Oracle publishes a <a href="http://www.oracle.com/technetwork/middleware/soasuite/overview/quickstartguidesoasuite11gr1ps3-313245.pdf">Quick Start Guide on the SOA Suite</a> (PDF!) that mainly deals with the installation process (and de-installation should you need it). </p>
<p>This guide is aimed at installations for developers and not for production machines. Unfortunately the installation of OSB is out of scope.  I expect it to be upgraded to PS4 (11.1.1.5) soon. I could find any missing instructions while installing PS4 on a Windows7 VirtualBox.</p>
<p>This document looks very similar to the installation chapter in Getting Started with Oracle <a href="http://www.packtpub.com/getting-started-with-oracle-soa-suite-11g-r1/book">SOA Suite 11g R1</a>.</p>
<h3>Update</h3>
<p>It was confirmed by <a href="https://twitter.com/#!/SOASimone">Simone Geib</a>, Product Manager in the Oracle SOA team, that both the <a href="https://twitter.com/#!/soasimone/status/91550204901343232">OSB part</a> and the <a href="https://twitter.com/#!/soasimone/status/91550621471211520">PS4 update</a> are coming soon.</p>
<h3>Update September</h3>
<p>The update for <a href="http://bitly.com/soasuitequickstartguide" title="SOA Suite">SOA Suite PS4 (11.1.1.5)</a> including Oracle Service Bus is now available.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deltalounge.net/wpress/2011/07/soa-suite-installation-quick-start/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing WebLogic Server on Ubuntu and JRockit 64 bits</title>
		<link>http://www.deltalounge.net/wpress/2011/06/installing-weblogic-server-on-ubuntu-and-jrockit-64-bits/</link>
		<comments>http://www.deltalounge.net/wpress/2011/06/installing-weblogic-server-on-ubuntu-and-jrockit-64-bits/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 14:47:35 +0000</pubDate>
		<dc:creator>PeterPaul</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Service Bus]]></category>
		<category><![CDATA[WLS]]></category>
		<category><![CDATA[Install]]></category>
		<category><![CDATA[JDK]]></category>
		<category><![CDATA[JRockit]]></category>
		<category><![CDATA[WebLogic]]></category>

		<guid isPermaLink="false">http://www.deltalounge.net/wpress/?p=1348</guid>
		<description><![CDATA[Installing WebLogic Server on Ubuntu and JRockit 64 bits. This installation will later be used to install Oracle Service Bus. Download the WebLogic Server installation files from OTN or E-Delivery. Make sure the JAVA_HOME refers to the proper Java installation: $ JAVA_HOME=/oracle/jrockit-jdk1.6.0_24 export JAVA_HOME $ PATH=$JAVA_HOME/bin:$PATH; export PATH Check that the proper Java version will [...]]]></description>
			<content:encoded><![CDATA[<p>Installing WebLogic Server on Ubuntu and JRockit 64 bits. This installation will later be used to install Oracle Service Bus.</p>
<p>Download the <a href="http://www.oracle.com/technetwork/middleware/weblogic/downloads/wls-main-097127.html">WebLogic Server installation</a> files from OTN or <a href="https://edelivery.oracle.com/">E-Delivery</a>.</p>
<p>Make sure the JAVA_HOME refers to the proper Java installation:</p>
<pre>
$ JAVA_HOME=/oracle/jrockit-jdk1.6.0_24 export JAVA_HOME
$ PATH=$JAVA_HOME/bin:$PATH; export PATH
</pre>
<p>Check that the proper Java version will be used:</p>
<pre>
$ java -version
Oracle JRockit(R) (build R28.1.3-11-141760-1.6.0_24-20110301-1432-linux-x86_64, compiled mode)
</pre>
<p>If you are installing WebLogic Server on a 64-bit platform using a .jar installation program use the downloaded wls<em>versionnumber</em>_generic.jar . Start the installation using the following command. Include the -d64 flag in the installation command when using a 32/64-bit hybrid JDK.</p>
<pre>
$ java -d64 -jar wls1035_generic.jar
</pre>
<ul>
<li>Welcome screen &#8211; Click <code>Next</code></li>
<li>Choose Middleware Home Directory &#8211; Create a new Middleware Home and enter the directory of your choice</li>
<li>Register for Security Updates</li>
<li>Choose Install Type &#8211; Choose Custom to be able to select the JDK of choice</li>
<li>Choose Products and Components &#8211; No changes needed</li>
<li>JDK Selection &#8211; Pick the JRockit JDK previously installed</li>
<li>Choose Product Installation Directories &#8211; No changes needed</li>
<li>Confirm Product Installation Directories</li>
<li>Installer is running</li>
<li>Installation complete</li>
</ul>
<p>An overview of the WebLogic Server installation screen can be viewed in the gallery:<br />

<div class="ngg-galleryoverview" id="ngg-gallery-9-1348">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.deltalounge.net/wpress/2011/06/installing-weblogic-server-on-ubuntu-and-jrockit-64-bits/?show=slide">
			[Show as slideshow]		</a>
	</div>

	
	<!-- Thumbnails -->
		
	<div id="ngg-image-73" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/wls-ubuntu/install-wls-generic-1.jpg" title=" " class="shutterset_set_9"  rel="wp-prettyPhoto[g1348]">
								<img title="install-wls-generic-1" alt="install-wls-generic-1" src="http://www.deltalounge.net/wpress/wp-content/gallery/wls-ubuntu/thumbs/thumbs_install-wls-generic-1.jpg" width="100" height="74" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-76" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/wls-ubuntu/install-wls-generic-2.jpg" title=" " class="shutterset_set_9"  rel="wp-prettyPhoto[g1348]">
								<img title="install-wls-generic-2" alt="install-wls-generic-2" src="http://www.deltalounge.net/wpress/wp-content/gallery/wls-ubuntu/thumbs/thumbs_install-wls-generic-2.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-77" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/wls-ubuntu/install-wls-generic-3.jpg" title=" " class="shutterset_set_9"  rel="wp-prettyPhoto[g1348]">
								<img title="install-wls-generic-3" alt="install-wls-generic-3" src="http://www.deltalounge.net/wpress/wp-content/gallery/wls-ubuntu/thumbs/thumbs_install-wls-generic-3.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-78" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/wls-ubuntu/install-wls-generic-4.jpg" title=" " class="shutterset_set_9"  rel="wp-prettyPhoto[g1348]">
								<img title="install-wls-generic-4" alt="install-wls-generic-4" src="http://www.deltalounge.net/wpress/wp-content/gallery/wls-ubuntu/thumbs/thumbs_install-wls-generic-4.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-79" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/wls-ubuntu/install-wls-generic-5.jpg" title=" " class="shutterset_set_9"  rel="wp-prettyPhoto[g1348]">
								<img title="install-wls-generic-5" alt="install-wls-generic-5" src="http://www.deltalounge.net/wpress/wp-content/gallery/wls-ubuntu/thumbs/thumbs_install-wls-generic-5.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-80" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/wls-ubuntu/install-wls-generic-6.jpg" title=" " class="shutterset_set_9"  rel="wp-prettyPhoto[g1348]">
								<img title="install-wls-generic-6" alt="install-wls-generic-6" src="http://www.deltalounge.net/wpress/wp-content/gallery/wls-ubuntu/thumbs/thumbs_install-wls-generic-6.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-81" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/wls-ubuntu/install-wls-generic-7.jpg" title=" " class="shutterset_set_9"  rel="wp-prettyPhoto[g1348]">
								<img title="install-wls-generic-7" alt="install-wls-generic-7" src="http://www.deltalounge.net/wpress/wp-content/gallery/wls-ubuntu/thumbs/thumbs_install-wls-generic-7.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-82" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/wls-ubuntu/install-wls-generic-8.jpg" title=" " class="shutterset_set_9"  rel="wp-prettyPhoto[g1348]">
								<img title="install-wls-generic-8" alt="install-wls-generic-8" src="http://www.deltalounge.net/wpress/wp-content/gallery/wls-ubuntu/thumbs/thumbs_install-wls-generic-8.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-83" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/wls-ubuntu/install-wls-generic-9.jpg" title=" " class="shutterset_set_9"  rel="wp-prettyPhoto[g1348]">
								<img title="install-wls-generic-9" alt="install-wls-generic-9" src="http://www.deltalounge.net/wpress/wp-content/gallery/wls-ubuntu/thumbs/thumbs_install-wls-generic-9.jpg" width="100" height="74" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-74" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/wls-ubuntu/install-wls-generic-10.jpg" title=" " class="shutterset_set_9"  rel="wp-prettyPhoto[g1348]">
								<img title="install-wls-generic-10" alt="install-wls-generic-10" src="http://www.deltalounge.net/wpress/wp-content/gallery/wls-ubuntu/thumbs/thumbs_install-wls-generic-10.jpg" width="100" height="74" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-75" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/wls-ubuntu/install-wls-generic-11.jpg" title=" " class="shutterset_set_9"  rel="wp-prettyPhoto[g1348]">
								<img title="install-wls-generic-11" alt="install-wls-generic-11" src="http://www.deltalounge.net/wpress/wp-content/gallery/wls-ubuntu/thumbs/thumbs_install-wls-generic-11.jpg" width="100" height="74" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

<br />
.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deltalounge.net/wpress/2011/06/installing-weblogic-server-on-ubuntu-and-jrockit-64-bits/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Installing JRockit on Ubuntu</title>
		<link>http://www.deltalounge.net/wpress/2011/06/installing-jrockit-on-ubuntu/</link>
		<comments>http://www.deltalounge.net/wpress/2011/06/installing-jrockit-on-ubuntu/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 14:30:04 +0000</pubDate>
		<dc:creator>PeterPaul</dc:creator>
				<category><![CDATA[JDeveloper]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[WLS]]></category>
		<category><![CDATA[Install]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[JRockit]]></category>
		<category><![CDATA[JVM]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[VirtualBox]]></category>

		<guid isPermaLink="false">http://www.deltalounge.net/wpress/?p=1333</guid>
		<description><![CDATA[This post will show you how to install JRockit on Ubuntu 11.04. In later posts this will be used to run both WebLogic Server and Oracle Service Bus (OSB). First download the installer from the JRockit download page. Make sure that the .bin file is executable. You can use chmod +x filename to make the [...]]]></description>
			<content:encoded><![CDATA[<p>This post will show you how to install JRockit on Ubuntu 11.04. In later posts this will be used to run both WebLogic Server and Oracle Service Bus (OSB).</p>
<p>First download the installer from the <a href="http://www.oracle.com/technetwork/middleware/jrockit/downloads/index.html">JRockit download</a> page. Make sure that the <code>.bin</code> file is executable. You can use <code>chmod +x filename</code> to make the file executable.</p>
<p>The <a href="http://download.oracle.com/docs/cd/E15289_01/doc.40/e15065/toc.htm">installation guide</a> for JRockit can be obtained from the <a href="http://www.oracle.com/technetwork/middleware/jrockit/documentation/index.html">JRockit Documentation page</a>.</p>
<ul>
<li>Start the installer: <code>./jrockit-jdk1.6.0_24-R28.1.3-4.0.1-linux-x64.bin</code> from the directory you download it or copied it to. Extracting can take some time.</li>
<li>Click <code>Next</code> on the Welcome screen.</li>
<li>Choose the product installation directory eg <code>/oracle/jrockit-jdk1.6.0_24</code> and click <code>Next</code> </li>
<li>Check optional components if you need them and click <code>Next</code></li>
<li>Watch the progress bar <img src='http://www.deltalounge.net/wpress/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  </li>
<li>The installation is complete so press <code>Done</code>.</li>
</ul>
<p>The screenshots of the installation process are in this gallery:<br />

<div class="ngg-galleryoverview" id="ngg-gallery-8-1333">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.deltalounge.net/wpress/2011/06/installing-jrockit-on-ubuntu/?show=slide">
			[Show as slideshow]		</a>
	</div>

	
	<!-- Thumbnails -->
		
	<div id="ngg-image-67" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-jrockit/jrockit-1.jpg" title=" " class="shutterset_set_8"  rel="wp-prettyPhoto[g1333]">
								<img title="jrockit-1" alt="jrockit-1" src="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-jrockit/thumbs/thumbs_jrockit-1.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-68" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-jrockit/jrockit-2.jpg" title=" " class="shutterset_set_8"  rel="wp-prettyPhoto[g1333]">
								<img title="jrockit-2" alt="jrockit-2" src="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-jrockit/thumbs/thumbs_jrockit-2.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-69" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-jrockit/jrockit-3.jpg" title=" " class="shutterset_set_8"  rel="wp-prettyPhoto[g1333]">
								<img title="jrockit-3" alt="jrockit-3" src="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-jrockit/thumbs/thumbs_jrockit-3.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-70" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-jrockit/jrockit-4.jpg" title=" " class="shutterset_set_8"  rel="wp-prettyPhoto[g1333]">
								<img title="jrockit-4" alt="jrockit-4" src="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-jrockit/thumbs/thumbs_jrockit-4.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-71" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-jrockit/jrockit-5.jpg" title=" " class="shutterset_set_8"  rel="wp-prettyPhoto[g1333]">
								<img title="jrockit-5" alt="jrockit-5" src="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-jrockit/thumbs/thumbs_jrockit-5.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-72" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-jrockit/jrockit-6.jpg" title=" " class="shutterset_set_8"  rel="wp-prettyPhoto[g1333]">
								<img title="jrockit-6" alt="jrockit-6" src="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-jrockit/thumbs/thumbs_jrockit-6.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deltalounge.net/wpress/2011/06/installing-jrockit-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Ubuntu 11.04 in VirtualBox</title>
		<link>http://www.deltalounge.net/wpress/2011/06/installing-ubuntu-11-04-in-virtualbox/</link>
		<comments>http://www.deltalounge.net/wpress/2011/06/installing-ubuntu-11-04-in-virtualbox/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 14:21:25 +0000</pubDate>
		<dc:creator>PeterPaul</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Service Bus]]></category>
		<category><![CDATA[WLS]]></category>
		<category><![CDATA[Install]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[VirtualBox]]></category>

		<guid isPermaLink="false">http://www.deltalounge.net/wpress/?p=1329</guid>
		<description><![CDATA[This post will show you how to install Ubuntu 11.04 in VirtualBox. In later posts this will be used to run: JRockit 64 bit, WebLogic Server (WLS) and Oracle Service Bus (OSB). Prepare Ubuntu install in VirtualBox A short recipe for preparing the Virtual Machine to install Ubuntu on it. The blog post Installing Ubuntu [...]]]></description>
			<content:encoded><![CDATA[<p>This post will show you how to install Ubuntu 11.04 in VirtualBox. In later posts this will be used to run: JRockit 64 bit, WebLogic Server (WLS) and Oracle Service Bus (OSB).</p>
<h3>Prepare Ubuntu install in VirtualBox</h3>
<p>A short recipe for preparing the Virtual Machine to install Ubuntu on it. The blog post <a href="http://www.psychocats.net/ubuntu/virtualbox">Installing Ubuntu inside Windows using VirtualBox</a> is more extensive on this subject&#8230;</p>
<ul>
<li>Create a new Virtual Machine using the VirtualBox Manager</li>
<li>Click <code>Next</code> in the Welcome screen</li>
<li>Choose a Name for the Virtual Machine and select the Operating System (OS) before you click Next</li>
<li>Set the amount of memory you want to allocate to the Virtual Machine</li>
<li>When asked for the Virtual Hard Disk, check the <code>Boot Hard Disk</code> box and <code>Create a new hard disk</code>. Then the Create New Virtual Disk Wizard will start guiding you through the process</li>
<li>I choose a Fixed-size storage when asked for the Hard Disk Storage Type</li>
<li>Choose the Size (16 GB) and Location (left it default) for the Virtual Hard Disk</li>
<li>Check the summary</li>
<li>Watch the progress while the <code>.vdi</code> file is created</li>
<li>Click <code>Finish to acknowledge the creation of the new Virtual Machine</code></li>
<li>The newly created Virtual Machine will show up in the VirtualBox Manager</li>
<li>In order to install Ubuntu 11.04 on the Machine go to the settings to alter the storage settings</li>
<li>Use the icon besides the <code>IDE Controller</code> to add the disk image &#8211; ISO file &#8211; you downloaded to boot and install Ubuntu as media in a drive</li>
<li>Check the boot order and make sure that the Machine is booted from the CD/DVD device first</li>
<li>Acknowledge</li>
<li>Start the Virtual Machine and the &#8220;regular&#8221; installation of Ubuntu will start</li>
</ul>
<p>The screenshot that come with the short instructions above:<br />

<div class="ngg-galleryoverview" id="ngg-gallery-5-1329">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.deltalounge.net/wpress/2011/06/installing-ubuntu-11-04-in-virtualbox/?show=slide">
			[Show as slideshow]		</a>
	</div>

	
	<!-- Thumbnails -->
		
	<div id="ngg-image-43" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-ubuntu-1104/virtualboxubuntu-2.jpg" title=" " class="shutterset_set_5"  rel="wp-prettyPhoto[g1329]">
								<img title="virtualboxubuntu-2" alt="virtualboxubuntu-2" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-ubuntu-1104/thumbs/thumbs_virtualboxubuntu-2.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-44" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-ubuntu-1104/virtualboxubuntu-3.jpg" title=" " class="shutterset_set_5"  rel="wp-prettyPhoto[g1329]">
								<img title="virtualboxubuntu-3" alt="virtualboxubuntu-3" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-ubuntu-1104/thumbs/thumbs_virtualboxubuntu-3.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-45" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-ubuntu-1104/virtualboxubuntu-4.jpg" title=" " class="shutterset_set_5"  rel="wp-prettyPhoto[g1329]">
								<img title="virtualboxubuntu-4" alt="virtualboxubuntu-4" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-ubuntu-1104/thumbs/thumbs_virtualboxubuntu-4.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-46" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-ubuntu-1104/virtualboxubuntu-5.jpg" title=" " class="shutterset_set_5"  rel="wp-prettyPhoto[g1329]">
								<img title="virtualboxubuntu-5" alt="virtualboxubuntu-5" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-ubuntu-1104/thumbs/thumbs_virtualboxubuntu-5.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-47" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-ubuntu-1104/virtualboxubuntu-6.jpg" title=" " class="shutterset_set_5"  rel="wp-prettyPhoto[g1329]">
								<img title="virtualboxubuntu-6" alt="virtualboxubuntu-6" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-ubuntu-1104/thumbs/thumbs_virtualboxubuntu-6.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-48" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-ubuntu-1104/virtualboxubuntu-7.jpg" title=" " class="shutterset_set_5"  rel="wp-prettyPhoto[g1329]">
								<img title="virtualboxubuntu-7" alt="virtualboxubuntu-7" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-ubuntu-1104/thumbs/thumbs_virtualboxubuntu-7.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-49" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-ubuntu-1104/virtualboxubuntu-8.jpg" title=" " class="shutterset_set_5"  rel="wp-prettyPhoto[g1329]">
								<img title="virtualboxubuntu-8" alt="virtualboxubuntu-8" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-ubuntu-1104/thumbs/thumbs_virtualboxubuntu-8.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-50" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-ubuntu-1104/virtualboxubuntu-9.jpg" title=" " class="shutterset_set_5"  rel="wp-prettyPhoto[g1329]">
								<img title="virtualboxubuntu-9" alt="virtualboxubuntu-9" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-ubuntu-1104/thumbs/thumbs_virtualboxubuntu-9.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-39" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-ubuntu-1104/virtualboxubuntu-10.jpg" title=" " class="shutterset_set_5"  rel="wp-prettyPhoto[g1329]">
								<img title="virtualboxubuntu-10" alt="virtualboxubuntu-10" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-ubuntu-1104/thumbs/thumbs_virtualboxubuntu-10.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-40" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-ubuntu-1104/virtualboxubuntu-11.jpg" title=" " class="shutterset_set_5"  rel="wp-prettyPhoto[g1329]">
								<img title="virtualboxubuntu-11" alt="virtualboxubuntu-11" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-ubuntu-1104/thumbs/thumbs_virtualboxubuntu-11.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-41" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-ubuntu-1104/virtualboxubuntu-12.jpg" title=" " class="shutterset_set_5"  rel="wp-prettyPhoto[g1329]">
								<img title="virtualboxubuntu-12" alt="virtualboxubuntu-12" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-ubuntu-1104/thumbs/thumbs_virtualboxubuntu-12.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-42" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-ubuntu-1104/virtualboxubuntu-13.jpg" title=" " class="shutterset_set_5"  rel="wp-prettyPhoto[g1329]">
								<img title="virtualboxubuntu-13" alt="virtualboxubuntu-13" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-ubuntu-1104/thumbs/thumbs_virtualboxubuntu-13.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-38" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-ubuntu-1104/virtualboxubuntu-1.jpg" title=" " class="shutterset_set_5"  rel="wp-prettyPhoto[g1329]">
								<img title="virtualboxubuntu-1" alt="virtualboxubuntu-1" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualbox-ubuntu-1104/thumbs/thumbs_virtualboxubuntu-1.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

</p>
<h3>Ubuntu install</h3>
<ul>
<li>Boot the installation ISO</li>
<li>Choose <code>Install Ubuntu</code> and your language</li>
<li>Preparing to install Ubuntu &#8211; You don&#8217;t need the additions here to later install WebLogic Server and Oracle Service Bus</li>
<li>Allocate drive space &#8211; If you created a new Virtual Disk before you can safely erase the empty disk here</li>
<li>Erase disk and install Ubuntu &#8211; Acknowledge</li>
<li>Choose location and time zone</li>
<li>Keyboard layout</li>
<li>Who are you &#8211; Fill in the username, computer name and password</li>
<li>Welcome screen</li>
<li>Installation is complete &#8211; click the button to restart</li>
<li>Login as the user you just created</li>
</ul>
<p>Watch the screenshots that come with the steps above:<br />

<div class="ngg-galleryoverview" id="ngg-gallery-6-1329">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.deltalounge.net/wpress/2011/06/installing-ubuntu-11-04-in-virtualbox/?show=slide">
			[Show as slideshow]		</a>
	</div>

	
	<!-- Thumbnails -->
		
	<div id="ngg-image-55" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-1104-install/install-ubuntu-1104-2.jpg" title=" " class="shutterset_set_6"  rel="wp-prettyPhoto[g1329]">
								<img title="install-ubuntu-1104-2" alt="install-ubuntu-1104-2" src="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-1104-install/thumbs/thumbs_install-ubuntu-1104-2.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-57" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-1104-install/install-ubuntu-1104-4.jpg" title=" " class="shutterset_set_6"  rel="wp-prettyPhoto[g1329]">
								<img title="install-ubuntu-1104-4" alt="install-ubuntu-1104-4" src="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-1104-install/thumbs/thumbs_install-ubuntu-1104-4.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-58" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-1104-install/install-ubuntu-1104-5.jpg" title=" " class="shutterset_set_6"  rel="wp-prettyPhoto[g1329]">
								<img title="install-ubuntu-1104-5" alt="install-ubuntu-1104-5" src="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-1104-install/thumbs/thumbs_install-ubuntu-1104-5.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-59" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-1104-install/install-ubuntu-1104-6.jpg" title=" " class="shutterset_set_6"  rel="wp-prettyPhoto[g1329]">
								<img title="install-ubuntu-1104-6" alt="install-ubuntu-1104-6" src="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-1104-install/thumbs/thumbs_install-ubuntu-1104-6.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-60" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-1104-install/install-ubuntu-1104-7.jpg" title=" " class="shutterset_set_6"  rel="wp-prettyPhoto[g1329]">
								<img title="install-ubuntu-1104-7" alt="install-ubuntu-1104-7" src="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-1104-install/thumbs/thumbs_install-ubuntu-1104-7.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-61" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-1104-install/install-ubuntu-1104-8.jpg" title=" " class="shutterset_set_6"  rel="wp-prettyPhoto[g1329]">
								<img title="install-ubuntu-1104-8" alt="install-ubuntu-1104-8" src="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-1104-install/thumbs/thumbs_install-ubuntu-1104-8.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-62" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-1104-install/install-ubuntu-1104-9.jpg" title=" " class="shutterset_set_6"  rel="wp-prettyPhoto[g1329]">
								<img title="install-ubuntu-1104-9" alt="install-ubuntu-1104-9" src="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-1104-install/thumbs/thumbs_install-ubuntu-1104-9.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-52" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-1104-install/install-ubuntu-1104-10.jpg" title=" " class="shutterset_set_6"  rel="wp-prettyPhoto[g1329]">
								<img title="install-ubuntu-1104-10" alt="install-ubuntu-1104-10" src="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-1104-install/thumbs/thumbs_install-ubuntu-1104-10.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-53" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-1104-install/install-ubuntu-1104-11.jpg" title=" " class="shutterset_set_6"  rel="wp-prettyPhoto[g1329]">
								<img title="install-ubuntu-1104-11" alt="install-ubuntu-1104-11" src="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-1104-install/thumbs/thumbs_install-ubuntu-1104-11.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-54" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-1104-install/install-ubuntu-1104-12.jpg" title=" " class="shutterset_set_6"  rel="wp-prettyPhoto[g1329]">
								<img title="install-ubuntu-1104-12" alt="install-ubuntu-1104-12" src="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-1104-install/thumbs/thumbs_install-ubuntu-1104-12.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-51" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-1104-install/install-ubuntu-1104-1.jpg" title=" " class="shutterset_set_6"  rel="wp-prettyPhoto[g1329]">
								<img title="install-ubuntu-1104-1" alt="install-ubuntu-1104-1" src="http://www.deltalounge.net/wpress/wp-content/gallery/ubuntu-1104-install/thumbs/thumbs_install-ubuntu-1104-1.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

</p>
<h3>Installing VirtualBox Guest Additions</h3>
<ul>
<li>From the VirtualBox Manager menu choose the <code>Devices - Install Guest Additions</code> options</li>
<li>Choose the application to start</li>
<li>Click Run</li>
<li>Authenticate with your password</li>
<li>You need to restart Ubuntu to make it work</li>
</ul>
<p>Watch the screenshots that come with the steps above:<br />

<div class="ngg-galleryoverview" id="ngg-gallery-7-1329">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.deltalounge.net/wpress/2011/06/installing-ubuntu-11-04-in-virtualbox/?show=slide">
			[Show as slideshow]		</a>
	</div>

	
	<!-- Thumbnails -->
		
	<div id="ngg-image-63" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualboxguestadditions/virtualboxadditions-01.jpg" title=" " class="shutterset_set_7"  rel="wp-prettyPhoto[g1329]">
								<img title="virtualboxadditions-01" alt="virtualboxadditions-01" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualboxguestadditions/thumbs/thumbs_virtualboxadditions-01.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-64" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualboxguestadditions/virtualboxadditions-02.jpg" title=" " class="shutterset_set_7"  rel="wp-prettyPhoto[g1329]">
								<img title="virtualboxadditions-02" alt="virtualboxadditions-02" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualboxguestadditions/thumbs/thumbs_virtualboxadditions-02.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-65" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualboxguestadditions/virtualboxadditions-03.jpg" title=" " class="shutterset_set_7"  rel="wp-prettyPhoto[g1329]">
								<img title="virtualboxadditions-03" alt="virtualboxadditions-03" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualboxguestadditions/thumbs/thumbs_virtualboxadditions-03.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-66" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/virtualboxguestadditions/virtualboxadditions-04.jpg" title=" " class="shutterset_set_7"  rel="wp-prettyPhoto[g1329]">
								<img title="virtualboxadditions-04" alt="virtualboxadditions-04" src="http://www.deltalounge.net/wpress/wp-content/gallery/virtualboxguestadditions/thumbs/thumbs_virtualboxadditions-04.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deltalounge.net/wpress/2011/06/installing-ubuntu-11-04-in-virtualbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install OSB next to VirtualBox SOA Suite 11g Appliance</title>
		<link>http://www.deltalounge.net/wpress/2010/11/install-osb-next-to-virtualbox-soa-suite-11g-appliance/</link>
		<comments>http://www.deltalounge.net/wpress/2010/11/install-osb-next-to-virtualbox-soa-suite-11g-appliance/#comments</comments>
		<pubDate>Thu, 25 Nov 2010 13:56:31 +0000</pubDate>
		<dc:creator>PeterPaul</dc:creator>
				<category><![CDATA[BPEL]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Service Bus]]></category>
		<category><![CDATA[SOA Suite]]></category>
		<category><![CDATA[WLS]]></category>
		<category><![CDATA[11g]]></category>
		<category><![CDATA[Install]]></category>
		<category><![CDATA[OSB]]></category>
		<category><![CDATA[VirtualBox]]></category>

		<guid isPermaLink="false">http://www.deltalounge.net/wpress/?p=1116</guid>
		<description><![CDATA[In this post will show you how to install the Oracle Service Bus on the VirtualBox SOA Suite 11g appliance. For this demo we used a pretty straightforward installation scheme. Oracle WebLogic Server installation Download wls1033_oepe111150_linux32.bin for installation on Linux. Install using the command ./wls1033_oepe111150_linux32.bin: The following screenshots will give you a good idea of [...]]]></description>
			<content:encoded><![CDATA[<p>In this post will show you how to install the Oracle Service Bus on the VirtualBox SOA Suite 11g appliance. For this demo we used a pretty straightforward installation scheme. </p>
<h3>Oracle WebLogic Server installation</h3>
<p>Download <code>wls1033_oepe111150_linux32.bin</code> for installation on Linux. Install using the command <code>./wls1033_oepe111150_linux32.bin</code>:<br />
<div id="attachment_1118" class="wp-caption alignleft" style="width: 675px"><a href="http://www.deltalounge.net/wpress/wp-content/uploads/2010/11/screenshot.303.jpg" rel="wp-prettyPhoto[g1116]"><img src="http://www.deltalounge.net/wpress/wp-content/uploads/2010/11/screenshot.303.jpg" alt="" title="./wls1033_oepe111150_linux32.bin" width="665" height="246" class="size-full wp-image-1118" /></a><p class="wp-caption-text">Install WebLogic 10.3.3</p></div><br />
The following screenshots will give you a good idea of the installation flow.<br />

<div class="ngg-galleryoverview" id="ngg-gallery-1-1116">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.deltalounge.net/wpress/2010/11/install-osb-next-to-virtualbox-soa-suite-11g-appliance/?show=slide">
			[Show as slideshow]		</a>
	</div>

	
	<!-- Thumbnails -->
		
	<div id="ngg-image-1" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-install/screenshot-304.jpg" title=" " class="shutterset_set_1"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-304" alt="screenshot-304" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-install/thumbs/thumbs_screenshot-304.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-2" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-install/screenshot-305.jpg" title=" " class="shutterset_set_1"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-305" alt="screenshot-305" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-install/thumbs/thumbs_screenshot-305.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-3" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-install/screenshot-306.jpg" title=" " class="shutterset_set_1"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-306" alt="screenshot-306" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-install/thumbs/thumbs_screenshot-306.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-4" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-install/screenshot-307.jpg" title=" " class="shutterset_set_1"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-307" alt="screenshot-307" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-install/thumbs/thumbs_screenshot-307.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-5" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-install/screenshot-308.jpg" title=" " class="shutterset_set_1"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-308" alt="screenshot-308" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-install/thumbs/thumbs_screenshot-308.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-6" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-install/screenshot-309.jpg" title=" " class="shutterset_set_1"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-309" alt="screenshot-309" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-install/thumbs/thumbs_screenshot-309.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-7" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-install/screenshot-310.jpg" title=" " class="shutterset_set_1"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-310" alt="screenshot-310" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-install/thumbs/thumbs_screenshot-310.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-8" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-install/screenshot-311.jpg" title=" " class="shutterset_set_1"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-311" alt="screenshot-311" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-install/thumbs/thumbs_screenshot-311.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

<br />
<br/></p>
<h3>Oracle Service Bus installation</h3>
<p>Start the <code>Disk1/runInstaller.sh</code> and specify the JRE/JDK location <code>/oracle/osbhome/jdk160_18/</code>.<br />
<div id="attachment_1127" class="wp-caption alignleft" style="width: 675px"><a href="http://www.deltalounge.net/wpress/wp-content/uploads/2010/11/screenshot.313.jpg" rel="wp-prettyPhoto[g1116]"><img src="http://www.deltalounge.net/wpress/wp-content/uploads/2010/11/screenshot.313.jpg" alt="" title="Disk1/runInstaller.sh" width="665" height="178" class="alignleft size-full wp-image-1127" /></a><p class="wp-caption-text">Install Oracle Service Bus</p></div><br />
This sequence of screenshots gives you a good impression.<br />

<div class="ngg-galleryoverview" id="ngg-gallery-2-1116">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.deltalounge.net/wpress/2010/11/install-osb-next-to-virtualbox-soa-suite-11g-appliance/?show=slide">
			[Show as slideshow]		</a>
	</div>

	
	<!-- Thumbnails -->
		
	<div id="ngg-image-9" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-osb-install/screenshot-314.jpg" title=" " class="shutterset_set_2"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-314" alt="screenshot-314" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-osb-install/thumbs/thumbs_screenshot-314.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-10" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-osb-install/screenshot-315.jpg" title=" " class="shutterset_set_2"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-315" alt="screenshot-315" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-osb-install/thumbs/thumbs_screenshot-315.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-11" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-osb-install/screenshot-316.jpg" title=" " class="shutterset_set_2"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-316" alt="screenshot-316" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-osb-install/thumbs/thumbs_screenshot-316.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-12" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-osb-install/screenshot-317.jpg" title=" " class="shutterset_set_2"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-317" alt="screenshot-317" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-osb-install/thumbs/thumbs_screenshot-317.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-13" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-osb-install/screenshot-318.jpg" title=" " class="shutterset_set_2"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-318" alt="screenshot-318" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-osb-install/thumbs/thumbs_screenshot-318.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-14" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-osb-install/screenshot-319.jpg" title=" " class="shutterset_set_2"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-319" alt="screenshot-319" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-osb-install/thumbs/thumbs_screenshot-319.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-15" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-osb-install/screenshot-320.jpg" title=" " class="shutterset_set_2"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-320" alt="screenshot-320" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-osb-install/thumbs/thumbs_screenshot-320.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-16" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-osb-install/screenshot-321.jpg" title=" " class="shutterset_set_2"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-321" alt="screenshot-321" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-osb-install/thumbs/thumbs_screenshot-321.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-17" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-osb-install/screenshot-322.jpg" title=" " class="shutterset_set_2"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-322" alt="screenshot-322" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-osb-install/thumbs/thumbs_screenshot-322.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-18" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-osb-install/screenshot-323.jpg" title=" " class="shutterset_set_2"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-323" alt="screenshot-323" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-osb-install/thumbs/thumbs_screenshot-323.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-19" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-osb-install/screenshot-324.jpg" title=" " class="shutterset_set_2"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-324" alt="screenshot-324" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-osb-install/thumbs/thumbs_screenshot-324.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-20" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-osb-install/screenshot-325.jpg" title=" " class="shutterset_set_2"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-325" alt="screenshot-325" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-osb-install/thumbs/thumbs_screenshot-325.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

<br />
<br/></p>
<h3>Configure a WebLogic Domain</h3>
<p>Configure a Domain using the Oracle Fusion Middleware Configuration Wizard using <code>./config.sh</code> in the <code>/oracle/osbhome/oracle_common/common/bin</code> directory.<br />
<a href="http://www.deltalounge.net/wpress/wp-content/uploads/2010/11/screenshot.326.jpg" rel="wp-prettyPhoto[g1116]"><img src="http://www.deltalounge.net/wpress/wp-content/uploads/2010/11/screenshot.326.jpg" alt="Configuring a WLS Domain" title="Configuring a WLS Domain" width="665" height="461" class="alignleft size-full wp-image-1130" /></a><br />
A straightforward configuration of the WLS Domain requires the following steps:<br />

<div class="ngg-galleryoverview" id="ngg-gallery-3-1116">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.deltalounge.net/wpress/2010/11/install-osb-next-to-virtualbox-soa-suite-11g-appliance/?show=slide">
			[Show as slideshow]		</a>
	</div>

	
	<!-- Thumbnails -->
		
	<div id="ngg-image-21" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-configuration/screenshot-327.jpg" title=" " class="shutterset_set_3"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-327" alt="screenshot-327" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-configuration/thumbs/thumbs_screenshot-327.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-22" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-configuration/screenshot-328.jpg" title=" " class="shutterset_set_3"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-328" alt="screenshot-328" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-configuration/thumbs/thumbs_screenshot-328.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-23" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-configuration/screenshot-329.jpg" title=" " class="shutterset_set_3"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-329" alt="screenshot-329" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-configuration/thumbs/thumbs_screenshot-329.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-24" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-configuration/screenshot-330.jpg" title=" " class="shutterset_set_3"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-330" alt="screenshot-330" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-configuration/thumbs/thumbs_screenshot-330.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-25" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-configuration/screenshot-331.jpg" title=" " class="shutterset_set_3"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-331" alt="screenshot-331" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-configuration/thumbs/thumbs_screenshot-331.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-26" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-configuration/screenshot-332.jpg" title=" " class="shutterset_set_3"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-332" alt="screenshot-332" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-configuration/thumbs/thumbs_screenshot-332.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-27" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-configuration/screenshot-333.jpg" title=" " class="shutterset_set_3"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-333" alt="screenshot-333" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-configuration/thumbs/thumbs_screenshot-333.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-28" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-configuration/screenshot-334.jpg" title=" " class="shutterset_set_3"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-334" alt="screenshot-334" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-configuration/thumbs/thumbs_screenshot-334.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-29" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-configuration/screenshot-335.jpg" title=" " class="shutterset_set_3"  rel="wp-prettyPhoto[g1116]">
								<img title="screenshot-335" alt="screenshot-335" src="http://www.deltalounge.net/wpress/wp-content/gallery/osb-wls-configuration/thumbs/thumbs_screenshot-335.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

<br />
<br/></p>
<h3>Start WebLogic</h3>
<p><code>./startWebLogic.sh</code> and Have Fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deltalounge.net/wpress/2010/11/install-osb-next-to-virtualbox-soa-suite-11g-appliance/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>SOA Suite 11gR1 PS2 notes and blogs</title>
		<link>http://www.deltalounge.net/wpress/2010/06/soa-suite-11gr1-ps2-notes-and-blogs/</link>
		<comments>http://www.deltalounge.net/wpress/2010/06/soa-suite-11gr1-ps2-notes-and-blogs/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 20:49:56 +0000</pubDate>
		<dc:creator>PeterPaul</dc:creator>
				<category><![CDATA[BPEL]]></category>
		<category><![CDATA[JDeveloper]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Service Bus]]></category>
		<category><![CDATA[SOA Suite]]></category>
		<category><![CDATA[WLS]]></category>
		<category><![CDATA[11g]]></category>
		<category><![CDATA[AWS]]></category>
		<category><![CDATA[BPM]]></category>
		<category><![CDATA[EC2]]></category>
		<category><![CDATA[Fusion Middleware]]></category>
		<category><![CDATA[Install]]></category>
		<category><![CDATA[WebLogic]]></category>

		<guid isPermaLink="false">http://www.deltalounge.net/wpress/?p=887</guid>
		<description><![CDATA[In the blogpost on the release of SOA Suite 11gR1 PS2, I mentioned a link to the documentation index. Since it hasn&#8217;t been update by now, I suggest you go to the middleware documentation page. This page is more up to date and has the link to the web library and download address (Alert! approx. [...]]]></description>
			<content:encoded><![CDATA[<p>In the blogpost on the <a href="http://www.deltalounge.net/wpress/2010/04/soa-suite-11gr1-ps2-released/">release of SOA Suite 11gR1 PS2</a>, I mentioned a link to the <a href="http://www.oracle.com/technology/products/soa/soasuite/collateral/documentation.html#11g">documentation index</a>. Since it hasn&#8217;t been update by now, I suggest you go to the <a href="http://www.oracle.com/technology/documentation/middleware.html">middleware documentation</a> page. This page is more up to date and has the link to the <a href="http://download.oracle.com/docs/cd/E14571_01/index.htm">web library</a> and <a href="http://download.oracle.com/docs/cds/E14571_01.zip">download address</a> (Alert! approx. 860 MB) of E14571-01 &#8211; the Fusion Middleware Online Documentation Library 11g Release 1 (11.1.1.3.0).</p>
<h3>SOA Suite 11gR1 PS2 installation notes</h3>
<p>Besides the reference in the documentation library to the <a href="tp://download.oracle.com/docs/cd/E14571_01/doc.1111/e13925/toc.htm ">Install Guide</a> and the <a href="http://download.oracle.com/docs/cd/E14571_01/install.1111/e14318/qisoa.htm ">Quick Install Guide</a>, there are several blogs describing the installation of 11.1.1.3. Which is actually a patch on 11.1.1.2:</p>
<ul>
<li>This <a href="http://www.xenta.nl/blog/2010/05/01/oracle-soa-suite-11g-patch-set-2-installation/">post by Oracle ACE</a> Eric Elzinga;</li>
<li>The <a href="http://theo.vanarem.nl/2010/05/03/installation-steps-oracle-soa-suite-11-1-1-3/">installation steps</a> described by Theo van Arem;</li>
<li>Installation <a href="http://niallcblogs.blogspot.com/2010/05/installing-soa-suite-11g-patchset-2.html">of 11g PatchSet 2 on Windows</a> by Niall Commiskey, members or Oracle PTS in EMEA;</li>
<li>The one on <a href="http://blogs.oracle.com/middleware/2010/05/installing_soa_suite_11113.html">Oracle blogs</a> by James Taylor includes OSB 11.1.1.3</li>
</ul>
<h3>SOA Suite on Amazon EC2</h3>
<p>This week it was announced that <a href="http://blogs.oracle.com/bpm/2010/06/bpm_11gr1_now_available_on_ama.html">BPM 11g R1 is available as an Amazon Machine Image</a> (AMI). This AMI includes SOA Suite 11gR1 Patchset 2 and JDeveloper with the SOA and BPM extension. In AWS filter on 64-bit and put soa-bpm in the search box. This should enable you to find <code>oracle-soa-bpm-11gr1-ps2-4.1-pub</code>. Some of the tips I posted on <a href="http://www.deltalounge.net/wpress/2010/03/running-soa-suite-on-amazon-ec2/">x SOA Suite in the cloud</a> could be useful here as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deltalounge.net/wpress/2010/06/soa-suite-11gr1-ps2-notes-and-blogs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

