<?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>My Science Is Better &#187; linux</title>
	<atom:link href="http://www.myscienceisbetter.info/tag/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://www.myscienceisbetter.info</link>
	<description></description>
	<lastBuildDate>Sat, 20 Mar 2010 16:16:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Setting up Xdebug with Zend Server on Linux</title>
		<link>http://www.myscienceisbetter.info/setting-up-xdebug-with-zend-server-on-linux.html</link>
		<comments>http://www.myscienceisbetter.info/setting-up-xdebug-with-zend-server-on-linux.html#comments</comments>
		<pubDate>Tue, 02 Feb 2010 16:06:20 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[xdebug]]></category>
		<category><![CDATA[zend server]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=134</guid>
		<description><![CDATA[Since our team work on different operating system, we switched for custom apache/php/mysql installs to Zend Server. Before everyone was using something different (the guys on windows were using XAMP, WAMP, on ubuntu i was using the packages in the repo and on the server we're using apache from cPanel) and applications were behaving a [...]]]></description>
			<content:encoded><![CDATA[<p>Since our team work on different operating system, we switched for custom apache/php/mysql installs to Zend Server. Before everyone was using something different (the guys on windows were using XAMP, WAMP, on ubuntu i was using the packages in the repo and on the server we're using apache from cPanel) and applications were behaving a differently according to the default settings for all those platforms.</p>
<p>So we decided to install Zend Server  CE as it has more or less the same settings over different platforms.  I've had some bad experiences installing ZSCE on a system that already had apache installed via apt, but after a clear install of Karmic, ZF was running like a charm. The install process described in the <a href="http://files.zend.com/help/Zend-Server-Community-Edition/deb_installation.htm">online documentation</a> works great.</p>
<p>After install is done, make sure to symlink php, pecl, pear and phpize so you can access them system  wide:</p>
<pre class="brush: bash;">
sudo ln -s /usr/local/zend/bin/zendctl.sh /usr/sbin/zendctl
sudo ln -s /usr/local/zend/bin/pear /usr/sbin/pear
sudo ln -s /usr/local/zend/bin/pecl /usr/sbin/pecl
sudo ln -s /usr/local/zend/bin/php /usr/sbin/php
sudo ln -s /usr/local/zend/bin/phpize /usr/sbin/phpize
</pre>
<p>At this point you should be able to run php -i in terminal and the phpinfo will be displayed.</p>
<p>Next step is to install xdebug via pecl by running: </p>
<pre class="brush: bash;">sudo pecl install xdebug</pre>
<p>If all went well you should have the xdebug library located at /usr/local/zend/lib/php_extensions/xdebug.so . If you don't have it there, then something went wrong and you should NOT continue reading. This issue must be sorted first.</p>
<p>Next you need to comment out the 1st line of /usr/local/zend/etc/conf.d/debugger.ini so it looks like this:</p>
<pre class="brush: bash;">
#open editor
gksu gedit /usr/local/zend/etc/conf.d/debugger.ini

# this is how the 1st two lines should look afterwards
; register the extension to be loaded by Zend Extension Manager
;zend_extension_manager.dir.debugger=/usr/local/zend/lib/debugger
</pre>
<p>Xdebug needs to be loaded before Zend Extension Manager, that's why you need to add the following line just on top of the /usr/local/zend/etc/ext.d/extension_manager.ini</p>
<pre class="brush: bash;">
#open the editor
gksu gedit /usr/local/zend/etc/ext.d/extension_manager.ini

#add this line on 1st line:
zend_extension=/usr/local/zend/lib/php_extensions/xdebug.so

#save the file
</pre>
<p>Restart zend server by running:</p>
<pre class="brush: bash;">
sudo /etc/init.d/zend-server restart
</pre>
<p>You can check if xdebug is working like so:</p>
<pre class="brush: bash;">
php -i |grep xdebug
</pre>
<p>The output should be something similar to this:</p>
<pre class="brush: bash;">
xdebug
xdebug support =&gt; enabled
xdebug.auto_trace =&gt; Off =&gt; Off
xdebug.collect_includes =&gt; On =&gt; On
xdebug.collect_params =&gt; 0 =&gt; 0
xdebug.collect_return =&gt; Off =&gt; Off
xdebug.collect_vars =&gt; Off =&gt; Off
xdebug.default_enable =&gt; On =&gt; On
xdebug.dump.COOKIE =&gt; no value =&gt; no value
xdebug.dump.ENV =&gt; no value =&gt; no value
xdebug.dump.FILES =&gt; no value =&gt; no value
xdebug.dump.GET =&gt; no value =&gt; no value
xdebug.dump.POST =&gt; no value =&gt; no value
xdebug.dump.REQUEST =&gt; no value =&gt; no value
xdebug.dump.SERVER =&gt; no value =&gt; no value
xdebug.dump.SESSION =&gt; no value =&gt; no value
xdebug.dump_globals =&gt; On =&gt; On
xdebug.dump_once =&gt; On =&gt; On
xdebug.dump_undefined =&gt; Off =&gt; Off
xdebug.extended_info =&gt; On =&gt; On
xdebug.idekey =&gt; mimir =&gt; no value
xdebug.manual_url =&gt; http://www.php.net =&gt; http://www.php.net
xdebug.max_nesting_level =&gt; 100 =&gt; 100
xdebug.profiler_aggregate =&gt; Off =&gt; Off
xdebug.profiler_append =&gt; Off =&gt; Off
xdebug.profiler_enable =&gt; Off =&gt; Off
xdebug.profiler_enable_trigger =&gt; Off =&gt; Off
xdebug.profiler_output_dir =&gt; /tmp =&gt; /tmp
xdebug.profiler_output_name =&gt; cachegrind.out.%p =&gt; cachegrind.out.%p
xdebug.remote_autostart =&gt; Off =&gt; Off
xdebug.remote_enable =&gt; Off =&gt; Off
xdebug.remote_handler =&gt; dbgp =&gt; dbgp
xdebug.remote_host =&gt; localhost =&gt; localhost
xdebug.remote_log =&gt; no value =&gt; no value
xdebug.remote_mode =&gt; req =&gt; req
xdebug.remote_port =&gt; 9000 =&gt; 9000
xdebug.show_exception_trace =&gt; Off =&gt; Off
xdebug.show_local_vars =&gt; Off =&gt; Off
xdebug.show_mem_delta =&gt; Off =&gt; Off
xdebug.trace_format =&gt; 0 =&gt; 0
xdebug.trace_options =&gt; 0 =&gt; 0
xdebug.trace_output_dir =&gt; /tmp =&gt; /tmp
xdebug.trace_output_name =&gt; trace.%c =&gt; trace.%c
xdebug.var_display_max_children =&gt; 128 =&gt; 128
xdebug.var_display_max_data =&gt; 512 =&gt; 512
xdebug.var_display_max_depth =&gt; 3 =&gt; 3
</pre>
<p>Note the xdebug support => enabled on line 2.</p>
<p>Hope that helps <img src='http://www.myscienceisbetter.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/setting-up-xdebug-with-zend-server-on-linux.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove .svn folders recursively</title>
		<link>http://www.myscienceisbetter.info/remove-svn-folders-recursively.html</link>
		<comments>http://www.myscienceisbetter.info/remove-svn-folders-recursively.html#comments</comments>
		<pubDate>Tue, 19 Jan 2010 10:10:25 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=129</guid>
		<description><![CDATA[I know that you have to use svn export in order to get a copy of the repo without the .svn folders inside, but sometimes you have to work with what you have, a checkout of a repo with .svn folders. And you want them removed.
After googling a bit i found a great way to [...]]]></description>
			<content:encoded><![CDATA[<p>I know that you have to use svn export in order to get a copy of the repo without the .svn folders inside, but sometimes you have to work with what you have, a checkout of a repo with .svn folders. And you want them removed.</p>
<p>After googling a bit i found a great way to <a title="Recursively remove .svn folders" href="http://www.myscienceisbetter.info/remove-svn-folders-recursively.htm">recursively remove .svn folders</a>. Just type the following while in the root of your checkout:</p>
<pre class="brush: bash;">rm -rf `find . -type d -name .svn`</pre>
<p>This tip was found on http://www.anyexample.com/linux_bsd/bash/recursively_delete__svn_directories.xml</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/remove-svn-folders-recursively.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable ls color support</title>
		<link>http://www.myscienceisbetter.info/enable-ls-color-support.html</link>
		<comments>http://www.myscienceisbetter.info/enable-ls-color-support.html#comments</comments>
		<pubDate>Fri, 08 Jan 2010 10:51:59 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[.bashrc]]></category>
		<category><![CDATA[bash]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=127</guid>
		<description><![CDATA[By default i like to use the Green on Black color scheme with my terminals. When i enable the theme though, ls loses somehow the ability to show files in colors. The trick to enable the feature is simple. One just has to run ls like this:
ls --color=auto
Unfortunately this won't stick, and it'a a bit [...]]]></description>
			<content:encoded><![CDATA[<p>By default i like to use the Green on Black color scheme with my terminals. When i enable the theme though, ls loses somehow the ability to show files in colors. The trick to enable the feature is simple. One just has to run ls like this:</p>
<pre class="brush: bash;">ls --color=auto</pre>
<p>Unfortunately this won't stick, and it'a a bit of a drag to always add the --color=auto part. To solve this, one has to create an alias to ls to point to ls --color=auto. You can do this by adding the following to ~/.bashrc</p>
<pre class="brush: bash;">
# enable color support of ls and also add handy aliases
if [ &quot;$TERM&quot; != &quot;dumb&quot; ]; then
    eval &quot;`dircolors -b`&quot;
    alias ls='ls --color=auto'
fi
</pre>
<p>Tada!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/enable-ls-color-support.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ailurus project</title>
		<link>http://www.myscienceisbetter.info/ailurus-project.html</link>
		<comments>http://www.myscienceisbetter.info/ailurus-project.html#comments</comments>
		<pubDate>Fri, 08 Jan 2010 09:05:47 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[ailurus]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=124</guid>
		<description><![CDATA[I've been contacted a few days ago by Homer Xing from Ailurus project.
He's notified me about the addition of the script to install native flash player 64bit on ubuntu in the Ailurus project. I was thrilled. Since then Homer even built a version of the script to work on Fedora (which is now on this [...]]]></description>
			<content:encoded><![CDATA[<p>I've been contacted a few days ago by Homer Xing from <a title="Ailurus Project" href="http://code.google.com/p/ailurus/">Ailurus project</a>.</p>
<p>He's notified me about the addition of the script to <a title="Install native flash player 64bit on linux" href="http://www.myscienceisbetter.info/install-native-64bit-flash-player-10-on-linux.html">install native flash player 64bit on ubuntu</a> in the <a title="Ailurus Project" href="http://code.google.com/p/ailurus/">Ailurus project</a>. I was thrilled. Since then Homer even built a version of the script to work on Fedora (which is now on this site also available) and we got in touch over IM.</p>
<p>I think <a title="Ailurus Project" href="http://code.google.com/p/ailurus/">Ailurus</a> is an amazing project. Hardcore Linux users might not see why it's important to have projects like these, but someone new to linux will appreciate it. I can't stress enough how hard the Linux world seems to old windows users. It's not a matter of Linux being hard to learn, but more of windows being hard to forget. With tools like Ailurus that make installing applications a snap, i think the transition is made much easier.</p>
<p>Looking forward for future releases!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/ailurus-project.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SVN Ignore all files inside a folder</title>
		<link>http://www.myscienceisbetter.info/svn-ignore-all-files-inside-a-folder.html</link>
		<comments>http://www.myscienceisbetter.info/svn-ignore-all-files-inside-a-folder.html#comments</comments>
		<pubDate>Tue, 22 Dec 2009 17:50:39 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[subversion]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[svn ignore]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=120</guid>
		<description><![CDATA[If you want to ignore certain file types inside a folder on SVN it's pretty easy:

svn propset svn:ignore &#34;*.tgz&#34; backup

It's a bit more complicated if you want to ignore everything inside a folder (be it files or folders). If you have a structure as the following: 

/public/media
/public/media/member
/public/media/member/artist
/public/media/member/fan
/public/media/member/label

and you want to ignore everything inside public/media, just [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to ignore certain file types inside a folder on SVN it's pretty easy:</p>
<pre class="brush: bash;">
svn propset svn:ignore &quot;*.tgz&quot; backup
</pre>
<p>It's a bit more complicated if you want to ignore everything inside a folder (be it files or folders). If you have a structure as the following: </p>
<pre class="brush: bash;">
/public/media
/public/media/member
/public/media/member/artist
/public/media/member/fan
/public/media/member/label
</pre>
<p>and you want to ignore everything inside public/media, just do:</p>
<pre class="brush: bash;">
svn propset svn:ignore &quot;*&quot; public/media/
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/svn-ignore-all-files-inside-a-folder.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video working with Logitech QuickCam Communicate STX on Linux 64bit</title>
		<link>http://www.myscienceisbetter.info/video-working-with-logitech-quickcam-communicate-stx-on-linux-64bit.html</link>
		<comments>http://www.myscienceisbetter.info/video-working-with-logitech-quickcam-communicate-stx-on-linux-64bit.html#comments</comments>
		<pubDate>Thu, 12 Nov 2009 13:14:56 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[64bit]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[logitech quickcam]]></category>
		<category><![CDATA[skype]]></category>
		<category><![CDATA[webcam]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=107</guid>
		<description><![CDATA[I have a 046d:08d7 Logitech, Inc. QuickCam Communicate STX that works perfectly well with all the native linux applications (ekiga, cheese, empathy) and even with the Flash Player powered TokBox, but it does not work with Skype.
After a bit of digging I've found out how to make Skype detect the video input from my Webcam. [...]]]></description>
			<content:encoded><![CDATA[<p>I have a 046d:08d7 Logitech, Inc. QuickCam Communicate STX that works perfectly well with all the native linux applications (ekiga, cheese, empathy) and even with the Flash Player powered TokBox, but it does not work with Skype.</p>
<p>After a bit of digging I've found out how to make Skype detect the video input from my Webcam. The secret is to preload the v4l1compat.so library as shown on the <a href="https://help.ubuntu.com/community/Webcam">Ubuntu Wiki</a>:</p>
<pre class="brush: bash;">
bash -c 'LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so skype'
</pre>
<p>That does the trick for 32bit systems, and since there isn't a native Skype version for 64bit</p>
<pre class="brush: bash;">
mimir@orion:~$ file /usr/bin/skype
/usr/bin/skype: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.8, stripped
</pre>
<p>we need to tell skype to preload the 32bit version of the library like so:</p>
<pre class="brush: bash;">
bash -c 'LD_PRELOAD=/usr/lib32/libv4l/v4l1compat.so skype'
</pre>
<p>Now video works perfectly using Skype 2.1.0.47 under Ubuntu 9.10 64bit</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/video-working-with-logitech-quickcam-communicate-stx-on-linux-64bit.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>So&#8230; &#8217;sup?</title>
		<link>http://www.myscienceisbetter.info/so-sup.html</link>
		<comments>http://www.myscienceisbetter.info/so-sup.html#comments</comments>
		<pubDate>Thu, 22 Jan 2009 19:42:00 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[sysinfo]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.myscienceisbetter.info/?p=25</guid>
		<description><![CDATA[- With your linux box i mean... What's up with it?
- Not much... here goes:
  User:		mimir (uid:1000)
  Groups:	mimir adm dialout cdrom plugdev lpadmin admin sambashare vboxusers
  Working dir:	/home/mimir
  Home dir:	/home/mimir
  Hostname:	orion
  IP (lo):	127.0.0.1/8
  IP (eth1):	192.168.1.102/24
  Gateway:	192.168.1.1
  Name Server:	208.67.222.222
  Name Server:	208.67.220.220
  Date:		Wed Jan 21 19:43:43 [...]]]></description>
			<content:encoded><![CDATA[<p>- With your linux box i mean... What's up with it?<br />
- Not much... here goes:</p>
<pre>  User:		mimir (uid:1000)
  Groups:	mimir adm dialout cdrom plugdev lpadmin admin sambashare vboxusers
  Working dir:	/home/mimir
  Home dir:	/home/mimir
  Hostname:	orion
  IP (lo):	127.0.0.1/8
  IP (eth1):	192.168.1.102/24
  Gateway:	192.168.1.1
  Name Server:	208.67.222.222
  Name Server:	208.67.220.220
  Date:		Wed Jan 21 19:43:43 EET 2009
  Uptime:	19:43:43 up  9:44,  3 users,  load average: 0.56, 0.42, 0.25
  Kernel:	Linux orion 2.6.28-4-generic #11-Ubuntu SMP Fri Jan 16 21:50:52 UTC 2009 x86_64 GNU/Linux
  Memory:	Total: 3895Mb	Used: 3071Mb	Free: 823Mb
  Swap:		Total: 1953Mb	Used: 7Mb	Free: 1945Mb
  Architecture:
  Processor:	0 : Intel(R) Core(TM)2 Duo CPU T7500 @ 2.20GHz
  Processor:	1 : Intel(R) Core(TM)2 Duo CPU T7500 @ 2.20GHz</pre>
<p>All that info is found just by invoking <a href="http://www.suseblog.com/?p=474" target="_blank">Scott Morris's </a><a href="http://www.suseblog.com/tools/sup.tar.bz2" target="_blank">'sup </a>script.</p>
<p>Cool script!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/so-sup.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chmod only files or chmod only folders</title>
		<link>http://www.myscienceisbetter.info/chmod-only-files-or-chmod-only-folders.html</link>
		<comments>http://www.myscienceisbetter.info/chmod-only-files-or-chmod-only-folders.html#comments</comments>
		<pubDate>Tue, 20 Jan 2009 15:19:00 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.myscienceisbetter.info/?p=21</guid>
		<description><![CDATA[I moved the blog the a new server and i realised that all the permissions got screwed up on the process. All files and folders were having chmod 777, and that's not exactly ideal. After digging a bit on google on how to chmod only files or chmod only folders, i came up with this:
1. [...]]]></description>
			<content:encoded><![CDATA[<p>I moved the blog the a new server and i realised that all the permissions got screwed up on the process. All files and folders were having chmod 777, and that's not exactly ideal. After digging a bit on google on how to <a href="http://www.myscienceisbetter.info/2009/01/chmod-only-files-or-chmod-only-folders.html">chmod only files or chmod only folders</a>, i came up with this:</p>
<p>1. Recursive chmod only files within this folder:<br />
find . -type f -exec chmod 0600 {} ;</p>
<p>2. Recursive chmod only folders within this folder:<br />find . -type d -exec chmod 0755 {} ;</p>
<p>Hope this helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/chmod-only-files-or-chmod-only-folders.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Install native 64bit Flash Player 10 on Linux</title>
		<link>http://www.myscienceisbetter.info/install-native-64bit-flash-player-10-on-linux.html</link>
		<comments>http://www.myscienceisbetter.info/install-native-64bit-flash-player-10-on-linux.html#comments</comments>
		<pubDate>Tue, 18 Nov 2008 15:52:00 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[64bit]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[flashplayer]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.myscienceisbetter.info/?p=18</guid>
		<description><![CDATA[EDIT: updated the scripts to install the 64-bit Flash Player 10 alpha refresh for Linux that was released on December 8th, 2009.
Adobe FINALLY released a native 64bit Flash Player 10 plugin. Although this is still an alpha release, the news is very exciting for Linux users, since we don't longer depend on nspluginwrapper, which although [...]]]></description>
			<content:encoded><![CDATA[<p><strong>EDIT: updated the scripts to install the 64-bit Flash Player 10 alpha refresh for Linux that was released on December 8th, 2009.</strong></p>
<p>Adobe FINALLY released a native 64bit Flash Player 10 plugin. Although this is still an alpha release, the news is very exciting for Linux users, since we don't longer depend on nspluginwrapper, which although does the job, has it's drawbacks.</p>
<p>I have put together a small tutorial on <a href="http://www.myscienceisbetter.info/2008/11/install-native-64bit-flash-player-10-on-linux.html">how to install the native flash player 10 64bit plugin for linux</a>.</p>
<pre class="brush: bash;">#!/bin/bash
# Script  created by
# Romeo-Adrian Cioaba romeo.cioaba@spotonearth.com

echo &quot;Stopping any Firefox that might be running&quot;
sudo killall -9 firefox

echo &quot;Removing any other flash plugin previously installed:&quot;
sudo apt-get remove -y --purge flashplugin-nonfree gnash gnash-common mozilla-plugin-gnash swfdec-mozilla libflashsupport nspluginwrapper
sudo rm -f /usr/lib/mozilla/plugins/*flash*
sudo rm -f ~/.mozilla/plugins/*flash*
sudo rm -f /usr/lib/firefox/plugins/*flash*
sudo rm -f /usr/lib/firefox-addons/plugins/*flash*
sudo rm -rfd /usr/lib/nspluginwrapper

echo &quot;Installing Flash Player 10&quot;
cd ~
wget http://download.macromedia.com/pub/labs/flashplayer10/libflashplayer-10.0.45.2.linux-x86_64.so.tar.gz
tar zxvf libflashplayer-10.0.45.2.linux-x86_64.so.tar.gz
sudo cp libflashplayer.so /usr/lib/mozilla/plugins/ 

echo &quot;Linking the libraries so Firefox and apps depending on XULRunner (vuze, liferea, rsswol) can find it.&quot;
sudo ln -sf /usr/lib/mozilla/plugins/libflashplayer.so /usr/lib/firefox-addons/plugins/
sudo ln -sf /usr/lib/mozilla/plugins/libflashplayer.so  /usr/lib/xulrunner-addons/plugins/

# now doing some cleaning up:
sudo rm -rf libflashplayer.so
sudo rm -rf libflashplayer-10.0.45.2.linux-x86_64.so.tar.gz
</pre>
<p>You can now restart firefox <img src='http://www.myscienceisbetter.info/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Some users seem to have problems with viewing this page, so i wrapped everything needed to <a href="http://www.myscienceisbetter.info/2008/11/install-native-64bit-flash-player-10-on-linux.html">install the native 64bit flash player on linux</a> into a shell script. Grab the Ubuntu script <a href="http://www.myscienceisbetter.info/flash-player/native-64bit-flash-installer.sh" target="_blank">here</a>, chmod +x and execute it.</p>
<p>Thanks to Claudio de Taunay for providing a script that works in OpenSuSE 11. You can pick it up <a href="http://www.myscienceisbetter.info/flash-player/native-64bit-flashPlayer-OpenSuse11.sh">here</a>.</p>
<p>Thanks to Homer Xing from the <a href="http://code.google.com/p/ailurus/" target="_blank">Ailurus project</a> you can now install native flash player 64bit on Fedora. You can pick up the script <a href="http://www.myscienceisbetter.info/flash-player/fedora-native-64bit-flash-installer.sh">here</a>.</p>
<p>Let me know if you encounter any bugs.</p>
<p><strong>the scripts to install in different distro:</strong><br />
Ubuntu: <a href="http://www.myscienceisbetter.info/flash-player/native-64bit-flash-installer.sh" target="_blank">install native flash 64bit on Ubuntu</a><br/><br />
Fedora: <a href="http://www.myscienceisbetter.info/flash-player/fedora-native-64bit-flash-installer.sh" target="_blank">install native flash 64bit on Fedora</a><br/><br />
OpenSuse: <a href="http://www.myscienceisbetter.info/flash-player/native-64bit-flashPlayer-OpenSuse11.sh" target="_blank">install native flash 64bit on OpenSuse</a><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/install-native-64bit-flash-player-10-on-linux.html/feed</wfw:commentRss>
		<slash:comments>88</slash:comments>
		</item>
		<item>
		<title>Google Chrome for Linux and Mac with CrossOver Chromium</title>
		<link>http://www.myscienceisbetter.info/google-chrome-for-linux-and-mac-with-crossover-chromium.html</link>
		<comments>http://www.myscienceisbetter.info/google-chrome-for-linux-and-mac-with-crossover-chromium.html#comments</comments>
		<pubDate>Tue, 16 Sep 2008 23:17:00 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[google chrome]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.myscienceisbetter.info/?p=15</guid>
		<description><![CDATA[Two weeks ago i have posted a tutorial on how to make Google Chrome run on Linux using wine. That gave Linux users the option to test the browser without having to go to a Windows machine, but it was not perfect as it lacked HTTPS support.
CrossOver packaged for both Linux and Mac the browser [...]]]></description>
			<content:encoded><![CDATA[<p>Two weeks ago i have posted a tutorial on how to make <a href="http://www.myscienceisbetter.info/2008/09/install-google-chrome-on-linux-using-wine.html">Google Chrome run on Linux using wine</a>. That gave Linux users the option to test the browser without having to go to a Windows machine, but it was not perfect as it lacked HTTPS support.</p>
<p>CrossOver packaged for both Linux and Mac the browser and it supports HTTPS. Check it out at: http://www.codeweavers.com/services/ports/chromium/</p>
<p>Note that this package does NOT play flash files. In order to get flash pages to play you just have to go to http://www.adobe.com and install the flash player as if you were running windows.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/google-chrome-for-linux-and-mac-with-crossover-chromium.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
