<?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>Julian Castaneda &#187; Solutions</title>
	<atom:link href="http://www.smooka.com/blog/category/solutions/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.smooka.com/blog</link>
	<description>From programming to music!</description>
	<lastBuildDate>Fri, 21 May 2010 14:12:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Installing Zend Studio on Ubuntu 64-bit</title>
		<link>http://www.smooka.com/blog/2009/11/02/installing-zend-studio-on-ubuntu-64-bit/</link>
		<comments>http://www.smooka.com/blog/2009/11/02/installing-zend-studio-on-ubuntu-64-bit/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 19:38:11 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Zend]]></category>
		<category><![CDATA[Zend Studio]]></category>

		<guid isPermaLink="false">http://www.smooka.com/blog/?p=224</guid>
		<description><![CDATA[Today I tried to install Zend Studio 7.0 on the latest 64-bit version of Ubuntu (9.10). Initially, it would just throw an error. (exec: 2481: /tmp/install.dir.2855/Linux/resource/jre/bin/java: not [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://www.smooka.com/blog/wp-content/plugins/simple-post-thumbnails/timthumb.php?src=/blog/wp-content/thumbnails/224.jpg&amp;w=70&amp;h=70&amp;zc=1&amp;ft=jpg' alt='post thumbnail' /></p>
<p>Today I tried to install Zend Studio 7.0 on the latest  64-bit version of Ubuntu (9.10). Initially, it would just throw an error. (<em>exec: 2481: /tmp/install.dir.2855/Linux/resource/jre/bin/java: not found</em>). Since, the error was related to the installer not being able to find the java JRE that came bundled with the installer, I decided to install with the system&#8217;s JRE using:</p>
<p><code>./ZendStudio7_0_0.bin LAX_VM /usr/bin/java</code></p>
<p>That seemed to do the trick, but, once the installer had finished. Trying to open Zend Studio would give me an error <em>(Failed to execute child process &#8220;/usr/local/Zend/Zend Studio-7.0.0/ZendStudio&#8221; (No such file or directory)</em>). At this point I was about to give up, until I did a little bit of research and found that the problem was more simple that I imagined.<span id="more-224"></span></p>
<p>Just run the following command in your terminal window:</p>
<p><code>sudo aptitude install libc6-i386 ia32-libs</code></p>
<p>ia32 is a package that contains runtime libraries for the ia32/i386 architecture, configured for use on systems running a 64-bit kernel. This will allow to install and run Zend Studio, but It will enable compatibility with any other application designed for 32-bit processors.</p>
<p>After running the above command, and installing Zend Studio, I ran into my second problem. A bug in eclipse that would not allow me to click on next or finish in certain windows. In my case, was when I was trying to create a new remote connection. To fix this problem I had to do the following steps:</p>
<ul>
<li>1). Open terminal and go to Zend Studio Directory.</li>
<li>2). Create a new file called ZendStudio.sh and open it.<br />
<code>vi ZendStudio.sh</code></li>
<li>3). Paste the following code, save and then close it:<br />
<code>#!/bin/sh<br />
CURDIR=`dirname $0`<br />
export GDK_NATIVE_WINDOWS=1<br />
$CURDIR/ZendStudio</code></li>
<li>4). Change the permissions of the file for execution<br />
<code>chmod +w ZendStudio.sh</code></li>
<li>5). Go to your application launcher, and right click and select properties.<br />
Once in the properties dialog, modify the command field.</p>
<p>Change the path from:</p>
<p><code>"/home/{USER}/Zend/ZendStudio-7.0.0/ZendStudio"</code></p>
<p>to</p>
<p><code>"/home/{USER}/Zend/ZendStudio-7.0.0/ZendStudio.sh"</code></p>
<p>So basically you are adding the .sh extension.</li>
<li>6). Close the window and open Zend Studio, everything should be working fine now.</li>
</ul>
<p>I hope this information helps you if you happen to run with the same problem I did. Let me know if you have a different solution.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smooka.com/blog/2009/11/02/installing-zend-studio-on-ubuntu-64-bit/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
