<?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>The _khAttAm_ blog &#187; flash</title>
	<atom:link href="http://www.khattam.info/tag/flash/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.khattam.info</link>
	<description>Sharing views and experiences</description>
	<lastBuildDate>Sat, 22 Oct 2011 06:18:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>[HOWTO] Enable cross-domain upload with uploadify jQuery plugin</title>
		<link>http://www.khattam.info/howto-enable-upload-from-other-domain-with-uploadify-2011-02-24.html</link>
		<comments>http://www.khattam.info/howto-enable-upload-from-other-domain-with-uploadify-2011-02-24.html#comments</comments>
		<pubDate>Thu, 24 Feb 2011 03:43:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[crossdomain.xml]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[upload]]></category>
		<category><![CDATA[uploadify]]></category>

		<guid isPermaLink="false">http://www.khattam.info/?p=1649</guid>
		<description><![CDATA[I have used uploadify v2.1.4 in one of my client&#8217;s website. According to the requirements, a form in a website had to submit data to another website. The form also contained file uploads for which uploadify was being used. But uploadify does not support uploading from another site as it uses relative url. Also, flash [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>I have used uploadify v2.1.4 in one of my client&#8217;s website. According to the requirements, a form in a website had to submit data to another website. The form also contained file uploads for which uploadify was being used. But uploadify does not support uploading from another site as it uses relative url. Also, flash does not support sending/receiving data to/from another site by default for security reasons.</p>
<p><span id="more-1649"></span></p>
<p>The solution to the second problem is easy. All that needs to be done is placing a crossdomain.xml file in the root of the server where file is to be uploaded with allowed list of sites that can send/receive data from that site using flash. Here is an example of crossdomain.xml file which allows all the sites:</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="color: #00bbdd;">&lt;!DOCTYPE cross-domain-policy SYSTEM &quot;http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd&quot;&gt;</span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;cross-domain-policy<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;allow-access-from</span> <span style="color: #000066;">domain</span>=<span style="color: #ff0000;">&quot;*&quot;</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/cross-domain-policy<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>To solve the second server however, the core uploadify file must be edited. For version 2.1.4, the file is jquery.uploadify.v2.1.4.js. Search for &#8220;pathName&#8221; (without quotes) and find the following block of codes:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">				<span style="color: #003366; font-weight: bold;">var</span> pagePath <span style="color: #339933;">=</span> location.<span style="color: #660066;">pathname</span><span style="color: #339933;">;</span>
				pagePath <span style="color: #339933;">=</span> pagePath.<span style="color: #660066;">split</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'/'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
				pagePath.<span style="color: #660066;">pop</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
				pagePath <span style="color: #339933;">=</span> pagePath.<span style="color: #660066;">join</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'/'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">'/'</span><span style="color: #339933;">;</span>
				<span style="color: #003366; font-weight: bold;">var</span> data <span style="color: #339933;">=</span> <span style="color: #009900;">&#123;</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
				data.<span style="color: #660066;">uploadifyID</span> <span style="color: #339933;">=</span> settings.<span style="color: #660066;">id</span><span style="color: #339933;">;</span>
				data.<span style="color: #660066;">pagepath</span> <span style="color: #339933;">=</span> pagePath<span style="color: #339933;">;</span></pre></div></div>

<p> Replace that with:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #006600; font-style: italic;">//				var pagePath = location.pathname;</span>
<span style="color: #006600; font-style: italic;">//				pagePath = pagePath.split('/');</span>
<span style="color: #006600; font-style: italic;">//				pagePath.pop();</span>
<span style="color: #006600; font-style: italic;">//				pagePath = pagePath.join('/') + '/';</span>
				<span style="color: #003366; font-weight: bold;">var</span> data <span style="color: #339933;">=</span> <span style="color: #009900;">&#123;</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
				data.<span style="color: #660066;">uploadifyID</span> <span style="color: #339933;">=</span> settings.<span style="color: #660066;">id</span><span style="color: #339933;">;</span>
				data.<span style="color: #660066;">pagepath</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;http://yourwebsite.here/path/to/folder/above/uploadify/folder&quot;</span><span style="color: #339933;">;</span></pre></div></div>

<p>In the above code, replace &#8220;http://yourwebsite.here/path/to/folder/above/uploadify/folder&#8221; with full URL of your site where you have uploadify folder. For instance, if you have an application in http://www.yoursite.com/myapp and uploadify directory inside myapp, i.e. http://www.yoursite.com/myapp/uploadify, you should enter pagepath value as: &#8220;http://www.yoursite.com/myapp&#8221;. Also, make sure you include this edited javascript in the main page instead of the &#8220;min&#8221; version. Then, use the uploadify swf in uploadify directory in the new server.</p>
<p>Hope this helps.</p>
<div class="shr-publisher-1649"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.khattam.info/howto-enable-upload-from-other-domain-with-uploadify-2011-02-24.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[SOLVED] Adobe FlashPlugin Problem in Ubuntu 10.04 Lucid Lynx 64bit</title>
		<link>http://www.khattam.info/solved-adobe-flashplugin-problem-in-ubuntu-10-04-lucid-lynx-64bit-2010-05-17.html</link>
		<comments>http://www.khattam.info/solved-adobe-flashplugin-problem-in-ubuntu-10-04-lucid-lynx-64bit-2010-05-17.html#comments</comments>
		<pubDate>Mon, 17 May 2010 04:05:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Karmic Koala 9.10]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Lucid Lynx 10.04]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[10.04]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[firefox-3.5]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flash-plugin]]></category>
		<category><![CDATA[flashplugin]]></category>
		<category><![CDATA[karmic]]></category>
		<category><![CDATA[karmic koala]]></category>
		<category><![CDATA[lucid]]></category>
		<category><![CDATA[lucid lynx]]></category>
		<category><![CDATA[lynx]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.khattam.info/?p=759</guid>
		<description><![CDATA[I had posted about flash plugin controls not working in Ubuntu 9.10 Karmic Koala 64 bit here. I had moved to Ubuntu 32 bit for quite sometime and recently made a move back to Ubuntu 64 bit. I found the same problem with flash plugin controls in Ubuntu 64 bit. Sometimes it works, and sometimes [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>I had posted about flash plugin controls not working in Ubuntu 9.10 Karmic Koala 64 bit <a href="http://www.khattam.info/2009/08/18/solved-flashplugin-controls-not-working-in-ubuntu-9-10-karmic-koala-alpha-4/">here</a>. I had moved to Ubuntu 32 bit for quite sometime and recently made a move back to Ubuntu 64 bit. I found the same problem with flash plugin controls in Ubuntu 64 bit. Sometimes it works, and sometimes it doesn&#8217;t. I haven&#8217;t found any specific patterns to when it does and when it doesn&#8217;t. If someone has, please do share.</p>
<p><span id="more-759"></span></p>
<p>In my previous post regarding the issue, I had suggested the installation of Adobe flash player 64 bit version from <a href="http://labs.adobe.com/downloads/flashplayer10.html" onclick="pageTracker._trackPageview('/outgoing/labs.adobe.com/downloads/flashplayer10.html?referer=');">Adobe Labs website</a>. The solution worked fine for me and it seems for most of the others, but the plugin was experimental and when someone needed to update, it was not available via repositories. It has been provided in a launchpad ppa repository currently which can be added by adding <strong>ppa:sevenmachines/ppa</strong> to Repositories in Synaptic, but it seems it is not updated as of now and the latest version available in the ppa is 10.0.45.2 while Adobe has already released version 10.1rc4. But since the latest version is not recognized by youtube, I think we should stay with the version in the repository. </p>
<p>Simply open up synaptic and navigate to Settings>Repositories>Other Software and click on Add. In the apt-line, enter ppa:sevenmachines/flash and close it. Then Click on the Reload button. Now, search for flashplugin64-installer, mark it for installation and click on apply.</p>
<p>When done, restart firefox and flash should run fine. </p>
<p>Please share your flash player 10 experience in Linux.</p>
<div class="shr-publisher-759"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.khattam.info/solved-adobe-flashplugin-problem-in-ubuntu-10-04-lucid-lynx-64bit-2010-05-17.html/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>[SOLVED] Problem Playing Media on Firefox on Ubuntu Linux</title>
		<link>http://www.khattam.info/solved-problem-playing-media-on-firefox-on-ubuntu-linux-2009-11-01.html</link>
		<comments>http://www.khattam.info/solved-problem-playing-media-on-firefox-on-ubuntu-linux-2009-11-01.html#comments</comments>
		<pubDate>Sun, 01 Nov 2009 16:42:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Karmic Koala 9.10]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[9.10]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[firefox-3.5]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[karmic]]></category>
		<category><![CDATA[karmic koala]]></category>
		<category><![CDATA[Koala]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[mozilla firefox]]></category>
		<category><![CDATA[mozilla-mplayer]]></category>
		<category><![CDATA[mozilla-plugin-vlc]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[streaming]]></category>

		<guid isPermaLink="false">http://www.khattam.info/?p=461</guid>
		<description><![CDATA[I am using Ubuntu 9.10 Karmic Koala on my Desktop with Firefox 3.5 as my primary browser. Recently I was facing problems playing online media (streaming mp3s, non-flash) including FM from my own page on Firefox.The fix was to remove all of the plugins mozilla-plugin-vlc and install only either mozilla-mplayer or totem-mozilla (or both). Hope [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p></p>
<p>I am using Ubuntu 9.10 Karmic Koala on my Desktop with Firefox 3.5 as my primary browser. Recently I was facing problems playing online media (streaming mp3s, non-flash) including FM from my own page on Firefox.<span id="more-461"></span>The fix was to remove all of the plugins mozilla-plugin-vlc and install only either mozilla-mplayer or totem-mozilla (or both).</p>
<p></p>
<p>Hope this helps.</p>
<div class="shr-publisher-461"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.khattam.info/solved-problem-playing-media-on-firefox-on-ubuntu-linux-2009-11-01.html/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>[SOLVED]: flashplugin Controls not Working in Ubuntu 9.10 Karmic Koala</title>
		<link>http://www.khattam.info/solved-flashplugin-controls-not-working-in-ubuntu-9-10-karmic-koala-alpha-4-2009-08-18.html</link>
		<comments>http://www.khattam.info/solved-flashplugin-controls-not-working-in-ubuntu-9-10-karmic-koala-alpha-4-2009-08-18.html#comments</comments>
		<pubDate>Tue, 18 Aug 2009 10:38:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Karmic Koala 9.10]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[9.10]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[firefox-3.5]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flash-plugin]]></category>
		<category><![CDATA[flashplugin]]></category>
		<category><![CDATA[karmic]]></category>
		<category><![CDATA[karmic koala]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.khattam.info/?p=358</guid>
		<description><![CDATA[Please find the latest post here. UPDATE Nov 2, 2009: If you want to make flash work normal in 64-bit Ubuntu 9.10 Karmic Koala, the following commands shall help. So start your terminal and get going: 1 2 3 4 5 sudo apt-get remove flashplugin-installer flashplugin-nonfree swdec-mozilla mozilla-plugin-gnash cd /tmp wget http://download.macromedia.com/pub/labs/flashplayer10/libflashplayer-10.0.32.18.linux-x86_64.so.tar.gz tar xf libflashplayer-10.0.32.18.linux-x86_64.so.tar.gz [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p></p>
<p>Please find the latest post <a href="http://www.khattam.info/2010/05/17/solved-adobe-flashplugin-problem-in-ubuntu-10-04-lucid-lynx-64bit">here</a>.</p>
<p><span id="more-358"></span></p>
<p>UPDATE Nov 2, 2009: If you want to make flash work normal in 64-bit Ubuntu 9.10 Karmic Koala, the following commands shall help. So start your terminal and get going:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> remove flashplugin-installer flashplugin-nonfree swdec-mozilla mozilla-plugin-gnash
<span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>tmp
<span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>download.macromedia.com<span style="color: #000000; font-weight: bold;">/</span>pub<span style="color: #000000; font-weight: bold;">/</span>labs<span style="color: #000000; font-weight: bold;">/</span>flashplayer10<span style="color: #000000; font-weight: bold;">/</span>libflashplayer-10.0.32.18.linux-x86_64.so.tar.gz
<span style="color: #c20cb9; font-weight: bold;">tar</span> xf libflashplayer-10.0.32.18.linux-x86_64.so.tar.gz
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">mv</span> libflashplayer.so <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>mozilla<span style="color: #000000; font-weight: bold;">/</span>plugins<span style="color: #000000; font-weight: bold;">/</span></pre></td></tr></table></div>

<p>and restart firefox. If this does not work or you want to keep track of what has happened here, read on.</p>
<p>UPDATE Nov 2, 2009: The problem persisted for me even after I upgraded to the latest version. Using 64-bit flash plugin from <a title="Adobe Labs" href="http://labs.adobe.com/downloads/flashplayer10.html" onclick="pageTracker._trackPageview('/outgoing/labs.adobe.com/downloads/flashplayer10.html?referer=');">Adobe Labs</a> helps for me now. For this you will need to download the latest plugin from <a title="Adobe Labs" href="http://labs.adobe.com/downloads/flashplayer10.html" onclick="pageTracker._trackPageview('/outgoing/labs.adobe.com/downloads/flashplayer10.html?referer=');">http://labs.adobe.com/downloads/flashplayer10.html</a> and extract it to /home/YOUR_USER_NAME/.mozilla/plugins or /usr/lib/mozilla/plugins. If you intend to extract it to /usr/lib/mozilla/plugins then you will need root privileges. One way of getting root privileges is launching nautilus as &#8220;gksu nautilus /usr/lib/mozilla/plugins&#8221; in the Run Application dialog (Alt+F2). Then copy the extracted libflashplayer.so in that directory and restart Firefox.</p>
<p>UPDATE: I had problems with swfdec-gnome also. When I used to close any tabs with active flash content, firefox would simply crash. I removed it and installed flashplugin via flashplug-installer (in synaptic) and now it is working fine. I disabled some plugins and maybe thats what worked. Not sure. Anyone came up with whats actually happening?</p>
<p>ORIGINAL POST 10 Aug, 2009: I recently installed Karmic Koala (Ubuntu 9.10) alpha 4 amd64 version and have been facing problem with flashplugin for Firefox 3.5. The flashplugin is a large download (as it depends on 32 bit libraries.. they have 32 bit version of the plugin now in amd64 too) and does not work well with YouTube videos, the flash applications do not respond user clicks. I have removed flashplugin via Synaptic Package Manager and installed swfdec-mozilla instead (firefox restart required after you do). This one has worked fine for me till now.</p>
<p>Hope this was helpful. Hope this is solved in the stable release.</p>
<p>Thanks to &#8220;Fatal Toenail Infection&#8221;.</p>
<div class="shr-publisher-358"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.khattam.info/solved-flashplugin-controls-not-working-in-ubuntu-9-10-karmic-koala-alpha-4-2009-08-18.html/feed/</wfw:commentRss>
		<slash:comments>34</slash:comments>
		</item>
		<item>
		<title>[HOWTO]Install Google Chrome in your Ubuntu 9.04 Jaunty Jackalope and Enable Flash on It</title>
		<link>http://www.khattam.info/install-google-chrome-in-your-linux-box-2009-08-01.html</link>
		<comments>http://www.khattam.info/install-google-chrome-in-your-linux-box-2009-08-01.html#comments</comments>
		<pubDate>Sat, 01 Aug 2009 17:35:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Jaunty Jackalope 9.04]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[9.04]]></category>
		<category><![CDATA[9.10]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[firefox-3.5]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[Google Chrome OS]]></category>
		<category><![CDATA[Jaunty]]></category>
		<category><![CDATA[Jaunty Jackalope]]></category>
		<category><![CDATA[karmic]]></category>
		<category><![CDATA[karmic koala]]></category>
		<category><![CDATA[Swiftfox]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.khattam.info/?p=281</guid>
		<description><![CDATA[I have Ubuntu 9.04 Jaunty Jackalope 64bit and wanted to give Google Chrome Browser a try to see what it feels like to be running Google Chrome OS (which will be based on Linux and run Google  Chrome Browser). UPDATE Nov 21: Just adding the repository: deb http://dl.google.com/linux/deb/ stable main will let you install Google [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>I have Ubuntu 9.04 Jaunty Jackalope 64bit and wanted to give Google Chrome Browser a try to see what it feels like to be running <a title="Google Chrome OS - Upcoming Operating System From Google" href="http://googleblog.blogspot.com/2009/07/introducing-google-chrome-os.html" target="_blank" onclick="pageTracker._trackPageview('/outgoing/googleblog.blogspot.com/2009/07/introducing-google-chrome-os.html?referer=');">Google Chrome OS</a> (which will be based on Linux and run Google  Chrome Browser).</p>
<p>UPDATE Nov 21: Just adding the repository:<br />
deb http://dl.google.com/linux/deb/ stable main<br />
will let you install Google Chrome right from Synaptic.</p>
<p>UPDATE: Now I have Ubuntu Karmic Koala (9.10) alpha 4 and same works for Karmic too.<span id="more-281"></span></p>
<p>So I headed over to <a title="Google Chrome Linux" href="http://www.google.com/chrome/intl/en/linux.html" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.google.com/chrome/intl/en/linux.html?referer=');">Google Chrome Linux Page</a>. Since Google Chrome for Linux is under development and public releases has not been made, I headed to <a title="Google Chrome Developer Channel Version" href="http://dev.chromium.org/getting-involved/dev-channel" target="_blank" onclick="pageTracker._trackPageview('/outgoing/dev.chromium.org/getting-involved/dev-channel?referer=');">Developer Channel Version Page</a>. Then, I downloaded the <a title="Download Google Chrome For Ubuntu/Debian 64bit" href="http://www.google.com/chrome/intl/en/eula_dev.html?dl=unstable_amd64_deb" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.google.com/chrome/intl/en/eula_dev.html?dl=unstable_amd64_deb&amp;referer=');">Dev channel (for 64-bit systems)</a> and then installed it. If you have a 32-bit processor or 32-bit OS, you will need to download the <a title="Download Google Chrome for 32bit Ubuntu\Debian based systems" href="http://www.google.com/chrome/intl/en/eula_dev.html?dl=unstable_i386_deb" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.google.com/chrome/intl/en/eula_dev.html?dl=unstable_i386_deb&amp;referer=');">32 bit version</a>. I double clicked the downloaded deb file to install it and it was available in the Applications &gt; Internet menu.</p>
<p>UPDATE: For Karmic Koala except for installing deb package as gdebi-gtk crashes (this bug) when trying to install this package. To install, you should use sudo dpkg-i packagename.deb from the terminal to install.</p>
<p>On first launch, it asked me if I wanted to import settings and history from Firefox and I chose to. It is good enough so far. I am using it to post this thread too.</p>
<p>However, flash has not been enabled and I could not play videos on Youtube. So to install and enable it, just type in the following commands (you must have flash plugin installed in Firefox for the following commands to work). Open op the terminal and copy\paste or type in the following commands:<br />
<code><br />
sudo mkdir -p /opt/google/chrome/plugins<br />
sudo cp /usr/lib/flashplugin-installer/libflashplayer.so /opt/google/chrome/plugins/<br />
/opt/google/chrome/google-chrome --enable-plugins<br />
</code><br />
Source: http://jeanderuelle.blogspot.com/2009/07/enable-flash-on-google-chrome-linux-dev.html</p>
<p>UPDATE: You will need to append <code> --enable-plugins at the end of the launcher or menu item if you want it to load with flash plugin enabled each time you launch Chrome.<br />
</code></p>
<p></p>
<p>It is lot faster and lighter than Firefox 3.5 and <a title="Swiftfox - Firefox Compiled for Your Processor" href="http://getswiftfox.com/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/getswiftfox.com/?referer=');">Swiftfox</a>. Of course, I miss the add-ons in Chrome and will still use Swiftfox as the default browser.</p>
<div class="shr-publisher-281"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.khattam.info/install-google-chrome-in-your-linux-box-2009-08-01.html/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

