<?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; how to</title>
	<atom:link href="http://www.myscienceisbetter.info/tag/how-to/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>Install GIMP 2.7 on Ubuntu</title>
		<link>http://www.myscienceisbetter.info/install-gimp-2-7-on-ubuntu.html</link>
		<comments>http://www.myscienceisbetter.info/install-gimp-2-7-on-ubuntu.html#comments</comments>
		<pubDate>Sat, 29 Aug 2009 15:05:19 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[gimp]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[how to]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=58</guid>
		<description><![CDATA[This tutorial will show you how to install GIMP 2.7 on Ubuntu Jaunty without affecting the default GIMP 2.6 install

sudo apt-get install ruby # needed by gegl
git clone git://git.gnome.org/babl
git clone git://git.gnome.org/gegl
cd babl
./autogen.sh
make
sudo make install
cd ../gegl
./autogen.sh
sudo make install
sudo apt-get install libjasper-dev # the jasper libs are required to provide JPEG2000 support in GIMP
cd ..
wget ftp://ftp.gimp.org/pub/gimp/v2.7/gimp-2.7.0.tar.bz2
tar jxvf [...]]]></description>
			<content:encoded><![CDATA[<p>This tutorial will show you how to install GIMP 2.7 on Ubuntu Jaunty without affecting the default GIMP 2.6 install</p>
<pre class="brush: bash;">
sudo apt-get install ruby # needed by gegl
git clone git://git.gnome.org/babl
git clone git://git.gnome.org/gegl
cd babl
./autogen.sh
make
sudo make install
cd ../gegl
./autogen.sh
sudo make install
sudo apt-get install libjasper-dev # the jasper libs are required to provide JPEG2000 support in GIMP
cd ..
wget ftp://ftp.gimp.org/pub/gimp/v2.7/gimp-2.7.0.tar.bz2
tar jxvf gimp-2.7.0.tar.bz2
cd gimp-2.7.0
./configure --prefix=/opt/gimp-2.7
make
sudo make install
</pre>
<p>Now just create a file gimp-2.7 inside /usr/bin as follows:</p>
<pre class="brush: bash;">
#!/bin/sh

PATH=/opt/gimp-2.7/bin:$PATH
export PATH
LD_LIBRARY_PATH=/opt/gimp-2.7/lib
export LD_LIBRARY_PATH

/opt/gimp-2.7/bin/gimp-2.7 &quot;$@&quot;
</pre>
<p>Run /usr/bin/gimp-2.7 <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/install-gimp-2-7-on-ubuntu.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>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>
		<item>
		<title>Install Vuze on Ubuntu 64bit</title>
		<link>http://www.myscienceisbetter.info/install-vuze-on-ubuntu-64bit.html</link>
		<comments>http://www.myscienceisbetter.info/install-vuze-on-ubuntu-64bit.html#comments</comments>
		<pubDate>Mon, 18 Aug 2008 15:15:00 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[64bit]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vuze]]></category>

		<guid isPermaLink="false">http://blog.myscienceisbetter.info/?p=13</guid>
		<description><![CDATA[I have just reinstalled Ubuntu 64bit and i wanted to download some torrent. I like the default torrent client that comes with Ubuntu, but i missed the features of Azureus so i decided to give Vuze a try. Unfortunately this did not went as smooth as i would have expected, and this is because Vuze [...]]]></description>
			<content:encoded><![CDATA[<p>I have just reinstalled Ubuntu 64bit and i wanted to download some torrent. I like the default torrent client that comes with Ubuntu, but i missed the features of Azureus so i decided to give Vuze a try. Unfortunately this did not went as smooth as i would have expected, and this is because Vuze (which is built on the Eclipse platform) comes with the 32bit version of swt.</p>
<p>Here is a tutorial on <a href="http://www.myscienceisbetter.info/2008/08/install-vuze-on-ubuntu-64bit.html">how to install vuze on ubuntu 64bit</a>.</p>
<p>1. Prepare install folder<br />
mkdir ~/Applications</p>
<p>2. Download and extract Vuze<br />
cd<br />
wget http://cache2.vuze.com/files/Vuze_linux.tar.bz2<br />
tar jxvf Vuze_linux.tar.bz2<br />
mv vuze ~/Applications</p>
<p>3. Download and extract the latest 64bit SWT (you can get the latest URL from the<a href="http://www.eclipse.org/swt">Eclipse SWT Project Page</a>)<br />
wget http://eclipse.ialto.org/eclipse/downloads/drops/R-3.4-200806172000/swt-3.4-gtk-linux-x86_64.zip<br />
mkdir swt<br />
mv swt-3.4-gtk-linux-x86_64.zip swt<br />
unzip swt-3.4-gtk-linux-x86_64.zip<br />
mv swt.jar ~/Applications/vuze/</p>
<p>4. Enjoy Vuze by starting it from terminal:<br />
~/Applications/vuze/vuze</p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/install-vuze-on-ubuntu-64bit.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Install Adobe Flash Player 10 on Ubuntu 64bit</title>
		<link>http://www.myscienceisbetter.info/install-adobe-flash-player-10-on-ubuntu-64bit.html</link>
		<comments>http://www.myscienceisbetter.info/install-adobe-flash-player-10-on-ubuntu-64bit.html#comments</comments>
		<pubDate>Mon, 19 May 2008 02:59:00 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[64bit]]></category>
		<category><![CDATA[flashplayer]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.myscienceisbetter.info/?p=11</guid>
		<description><![CDATA[
UPDATE: Native Adobe 64bit Flash Player has been released.
I have put together a small tutorial on how to install the native flash player 10 64bit plugin for linux.

Adobe recently launched Flash Player 10 Beta codenamed "Astro". Great news, as it supports a bunch of new features, but as usually nothing yet for the 64 bit [...]]]></description>
			<content:encoded><![CDATA[<p><strong><br />
UPDATE: Native Adobe 64bit Flash Player has been released.<br />
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>.<br />
</strong></p>
<p>Adobe recently launched <a href="http://labs.adobe.com/technologies/flashplayer10/">Flash Player 10 Beta codenamed "Astro"</a>. Great news, as it supports a bunch of new features, but as usually nothing yet for the 64 bit users. I'm going to show you <a href="http://www.myscienceisbetter.info/2008/05/install-adobe-flash-player-10-on-ubuntu-using-nspluginwrapper.html">how to get flash player 10 running on Ubuntu 64bit using nspluginwrapper</a>. Before doing anything in the terminal make sure you close Firefox else you might not get the expected result.</p>
<p>1. Make sure you don't have any other flash plugin installed on your system:<br />sudo apt-get remove -y --purge flashplugin-nonfree gnash gnash-common mozilla-plugin-gnash swfdec-mozilla libflashsupport nspluginwrapper</p>
<p>1.1 To be sure we don't have any other old flash libs let's cleanup the folders where it usually resides:<br />sudo rm -f /usr/lib/mozilla/plugins/*flash*<br />sudo rm -f ~/.mozilla/plugins/*flash*<br />sudo rm -f /usr/lib/firefox/plugins/*flash*<br />sudo rm -rfd /usr/lib/nspluginwrapper</p>
<p>2. Install ia32-libs and latest nspluginwrapper<br />sudo apt-get install ia32-libs nspluginwrapper</p>
<p>3. Download the latest flash player from Adobe Labs and extract it:<br />cd ~<br />wget http://download.macromedia.com/pub/labs/flashplayer10/flashplayer10_install_linux_051508.tar.gz<br />tar zxvf flashplayer10_install_linux_051508.tar.gz<br />sudo cp install_flash_player_10_linux/libflashplayer.so /usr/lib/mozilla/plugins/<br />rm -rf ~/install_flash_player_10_linux/</p>
<p>4. Use nspluginwrapper to install the plugin and link it to firefox<br />sudo nspluginwrapper -i /usr/lib/mozilla/plugins/libflashplayer.so<br />sudo ln -sf /usr/lib/nspluginwrapper/plugins/npwrapper.libflashplayer.so /usr/lib/mozilla/plugins/<br /><strong>sudo ln -sf /usr/lib/nspluginwrapper/plugins/npwrapper.libflashplayer.so /usr/lib/firefox-addons/plugins/</strong></p>
<p><strong>EDIT: here is how to install flash player 10 on 64bit systems for <a href="http://liferea.sourceforge.net/">Liferea</a> and <a href="http://www.vuze.com/">Vuze</a> </p>
<p>sudo ln -sf /usr/lib/nspluginwrapper/plugins/npwrapper.libflashplayer.so /usr/lib/xulrunner-addons/plugins/<br />
</strong></p>
<p>5. Start Firefox and type in the address bar about:plugins and press enter. You should get a result similar to this one:</p>
<div>
<form mt:asset-id="1" class="mt-enclosure mt-enclosure-image" style="display: inline;" contenteditable="false"><img alt="flash_player_10_ubuntu_64bit.png" src="http://www.myscienceisbetter.info/flash_player_10_ubuntu_64bit.png" class="mt-image-center" style="margin: 0pt auto 20px; text-align: center; display: block;" height="184" width="568" /></form>
</div>
<p>6. Go to http://labs.adobe.com/technologies/flashplayer10/demos/index.html and test the new features.</p>
<p>EDIT: if you are lazy by nature, you can just grab <a href="http://www.myscienceisbetter.info/projects/install_flash_player_10_ubuntu64bit">install_flash_player_10_ubuntu64bit</a>, a small script i put together. Make it executable (chmox +x install_flash_player_10_ubuntu64bit) and run it in terminal. It will kill ask you for root password the kill any Firefox you might have running and install the flash player 10</p>
<p>NOTE: for the new and improved script follow this URL: http://meandubuntu.wordpress.com/2008/08/20/flash-10-rc-on-ubuntu-amd64/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/install-adobe-flash-player-10-on-ubuntu-64bit.html/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>
