<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Java Thoughts</title>
	<atom:link href="http://javathought.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://javathought.wordpress.com</link>
	<description>Just another java weblog</description>
	<lastBuildDate>Tue, 03 Jan 2012 21:11:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='javathought.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Java Thoughts</title>
		<link>http://javathought.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://javathought.wordpress.com/osd.xml" title="Java Thoughts" />
	<atom:link rel='hub' href='http://javathought.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Cross-Origin Resource Sharing with Play! framework</title>
		<link>http://javathought.wordpress.com/2011/12/04/cross-origin-resource-sharing-with-play-framework/</link>
		<comments>http://javathought.wordpress.com/2011/12/04/cross-origin-resource-sharing-with-play-framework/#comments</comments>
		<pubDate>Sun, 04 Dec 2011 12:28:05 +0000</pubDate>
		<dc:creator>Pascal</dc:creator>
				<category><![CDATA[Play]]></category>
		<category><![CDATA[CORS]]></category>
		<category><![CDATA[Cross-Origin Resource Sharing]]></category>
		<category><![CDATA[playframework]]></category>

		<guid isPermaLink="false">http://javathought.wordpress.com/?p=434</guid>
		<description><![CDATA[I was trying to develop with play! framework for a 3-tier achitecture. So I run 2 applications on the same machine but on 2 differents ports (the front on 9010 and the back application on 9011 that has access to the database). Trying to call WS services (with JSON format) from the front controllers is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javathought.wordpress.com&amp;blog=7374491&amp;post=434&amp;subd=javathought&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was trying to develop with play! framework for a 3-tier achitecture. So I run 2 applications on the same machine but on 2 differents ports (the front on 9010 and the back application on 9011 that has access to the database).</p>
<p>Trying to call WS services (with JSON format) from the front controllers is transparent.</p>
<p><pre class="brush: java;">&lt;pre&gt;
    public static void index() {
         HttpResponse response = WS.url(&quot;http://localhost:9011/api/accounts&quot;).get();
         JsonElement json = response.getJson();

        render(json);
    }
&lt;/pre&gt;</pre></p>
<p>But trying to make dynamic pages with JQuery querying from the front page the the back controller, the results were blocked due tothe <a href="http://en.wikipedia.org/wiki/Same_origin_policy">Same Origin Policy</a>. So I had to specify the <a title="CORS" href="http://en.wikipedia.org/wiki/Cross-Origin_Resource_Sharing">Cross-Origin Resource Sharing</a> on the back controller.</p>
<p>Here is the code to add on the controller of the backapplication : this will add the header to allow the caller to access the service :</p>
<p><pre class="brush: java;">
    public static void listAccounts() {
        List&lt;Account&gt; accounts = Account.findAll();
        Http.Header hd = new Http.Header();
        hd.name = &quot;Access-Control-Allow-Origin&quot;;
        hd.values = new ArrayList&amp;lt;String&amp;gt;();
            hd.values.add(&quot;http://localhost:9010&quot;);
        Http.Response.current().headers.put(&quot;Access-Control-Allow-Origin&quot;,hd);
        renderJSON(accounts);

    }
</pre></p>
<p>You can sepecify a list of domains to accept as origin, or set it to <em>*</em> to allow all domains to call your service.</p>
<p>And the JQuery call :</p>
<p><pre class="brush: jscript;">
$(&quot;#accounts&quot;).click(function(){

        $.getJSON('http://localhost:9011/api/accounts', function(accounts) {
            var items = [];

            $.each(accounts, function(title, acc) {
            console.log(acc);
                $(&quot;#results&quot;).append('&lt;p&gt;'+acc.number+'&lt;/p&gt;');
            });
        });

});
</pre></p>
<p>You can generalize the CORS setting with the @Before annotation, so all your services in a class will be accessible : </p>
<p>
	@Before
	public static void setCORS() {
		Http.Header hd = new Http.Header();
		hd.name = &quot;Access-Control-Allow-Origin&quot;;
        hd.values = new ArrayList&lt;String&gt;();
        hd.values.add(&quot;http://localhost:9010&quot;);
		Http.Response.current().headers.put(&quot;Access-Control-Allow-Origin&quot;,hd);
		
	}
</p>
<p>Then your services coding in the controller is wery simple : </p>
<p><pre class="brush: java;">
    public static void listAccounts() {
        List&lt;Account&gt; accounts = Account.findAll();
        renderJSON(accounts);

    }
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javathought.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javathought.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javathought.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javathought.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javathought.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javathought.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javathought.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javathought.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javathought.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javathought.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javathought.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javathought.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javathought.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javathought.wordpress.com/434/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javathought.wordpress.com&amp;blog=7374491&amp;post=434&amp;subd=javathought&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javathought.wordpress.com/2011/12/04/cross-origin-resource-sharing-with-play-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9efe8c36e3e99e211db05713a49cf4a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">neophoto</media:title>
		</media:content>
	</item>
		<item>
		<title>Sonar &amp; Ant</title>
		<link>http://javathought.wordpress.com/2011/11/12/sonar-ant/</link>
		<comments>http://javathought.wordpress.com/2011/11/12/sonar-ant/#comments</comments>
		<pubDate>Sat, 12 Nov 2011 21:25:13 +0000</pubDate>
		<dc:creator>Pascal</dc:creator>
				<category><![CDATA[build]]></category>
		<category><![CDATA[continuous integration]]></category>
		<category><![CDATA[ant]]></category>
		<category><![CDATA[cobertura]]></category>
		<category><![CDATA[jenkins]]></category>

		<guid isPermaLink="false">http://javathought.wordpress.com/?p=425</guid>
		<description><![CDATA[Sonar is made for maven. Nothing to do and it works. There&#8217;s now a ant task to use sonar on your project build by ant. You&#8217;ll have the same results, except that by default, you will not have the results of your tests (passed/failed) and the coverage of your tests. To add them in your [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javathought.wordpress.com&amp;blog=7374491&amp;post=425&amp;subd=javathought&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sonar is made for maven. Nothing to do and it works.</p>
<p>There&#8217;s now a ant task to use sonar on your project build by ant. You&#8217;ll have the same results, except that by default, you will not have the results of your tests (passed/failed) and the coverage of your tests. To add them in your sonar pass, you have to :</p>
<ul>
<li>add a cobertura task in your ant task (just follow cobertura how to, installation and adding the task). With maven, the coverage is automatically calculated when sonar is launched (mvn sonar:sonar).</li>
<li>add 2 properties (&lt;code&gt;sonar.cobertura.reportPath&lt;/code&gt; and &lt;code&gt;sonar.surefire.reportsPath&lt;/code&gt;) in the sonar task to include reports (test and coverage) generated by junit and cobertura tasks. They must point to the reports generated.</li>
</ul>
<p>Here&#8217;s the sonar task that will include the two reports generated by <em>junit</em> and <em>cobertura</em>  tasks :</p>
<p><pre class="brush: xml;">

&lt;taskdef uri=&quot;antlib:org.sonar.ant&quot; resource=&quot;org/sonar/ant/antlib.xml&quot;&gt;
    &lt;!-- classpath path=&quot;path/to/sonar/ant/task/lib&quot; / --&gt;
    &lt;!-- This sonar Ant task library can also be put in the ${ANT_HOME\}/lib directory--&gt;
    &lt;!-- In such case this classpath node is no more mandatory --&gt;
&lt;/taskdef&gt;

&lt;!-- Out-of-the-box those parameters are optional --&gt;
&lt;!-- EXAMPLE FOR MYSQL --&gt;
&lt;property name=&quot;sonar.jdbc.url&quot; value=&quot;jdbc:mysql://192.168.1.3:3306/sonar?useUnicode=true&amp;amp;characterEncoding=utf8&quot; /&gt;
&lt;property name=&quot;sonar.jdbc.driverClassName&quot; value=&quot;com.mysql.jdbc.Driver&quot; /&gt;
&lt;property name=&quot;sonar.jdbc.username&quot; value=&quot;sonar&quot; /&gt;
&lt;property name=&quot;sonar.jdbc.password&quot; value=&quot;sonar&quot; /&gt;

&lt;target name=&quot;sonar&quot;&gt;
    &lt;!-- list of mandatories Sonar properties --&gt;
    &lt;property name=&quot;sonar.sources&quot; value=&quot;src&quot; /&gt;

    &lt;!-- list of optional Sonar properties --&gt;
    &lt;!-- property name=&quot;sonar.projectName&quot; value=&quot;this value overrides the name defined in Ant root node&quot; / --&gt;
    &lt;!-- property name=&quot;sonar.binaries&quot; value=&quot;list of directories which contain for example the Java bytecode&quot; / --&gt;
    &lt;!-- property name=&quot;sonar.tests&quot; value=&quot;unittest&quot; / --&gt;
    &lt;!-- property name=&quot;sonar.libraries&quot; value=&quot;list of paths to libraries separated by a comma (These libraries are for example used by the Sonar Findbugs plugin)&quot; / --&gt;
    &lt;property name=&quot;sonar.cobertura.reportPath&quot; value=&quot;${cobertura.report.dir}/coverage.xml&quot;/&gt;
    &lt;property name=&quot;sonar.surefire.reportsPath&quot; value=&quot;${build.test.dir}&quot; /&gt;

    &lt;sonar:sonar key=&quot;groupId:aretefactId version=&quot;0.1-SNAPSHOT&quot; xmlns:sonar=&quot;antlib:org.sonar.ant&quot;&gt;
        &lt;tests&gt;
            &lt;path location=&quot;test&quot; /&gt;
        &lt;/tests&gt;
    &lt;/sonar:sonar&gt;
&lt;/target&gt;

</pre></p>
<p>I&#8217;ve put the jar of the sonar plugin in ant library directory, so the classpath to sonar is left blank. And if you&#8217;ve install the sonar plugin in eclipse, you&#8217;ll have to remember the groupId and artefactId to link the project with the sonar results. And the advantage is that you&#8217;ll have the link betwwen the violations and the source line directly in eclipse.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javathought.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javathought.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javathought.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javathought.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javathought.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javathought.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javathought.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javathought.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javathought.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javathought.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javathought.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javathought.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javathought.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javathought.wordpress.com/425/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javathought.wordpress.com&amp;blog=7374491&amp;post=425&amp;subd=javathought&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javathought.wordpress.com/2011/11/12/sonar-ant/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9efe8c36e3e99e211db05713a49cf4a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">neophoto</media:title>
		</media:content>
	</item>
		<item>
		<title>Professional Android 2 development &#8211; Error in Chapter 5</title>
		<link>http://javathought.wordpress.com/2011/08/07/professional-android-2-development-error-in-chapter-5/</link>
		<comments>http://javathought.wordpress.com/2011/08/07/professional-android-2-development-error-in-chapter-5/#comments</comments>
		<pubDate>Sun, 07 Aug 2011 12:59:00 +0000</pubDate>
		<dc:creator>Pascal</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[contact pick]]></category>
		<category><![CDATA[Force close]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://javathought.wordpress.com/?p=417</guid>
		<description><![CDATA[If you encountered an error  in this chapter, calling the managedQuery function, the easy to find correction is mentioned here on editor &#8220;p2p&#8221; (programmer to programmer) site. More interesting info is the replacement of the use of the deprecated class People. But this don&#8217;t mention the correction for the &#8220;Force close&#8221; when launching the app [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javathought.wordpress.com&amp;blog=7374491&amp;post=417&amp;subd=javathought&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img">
<div class="wp-caption alignright" style="width: 155px"><a href="http://en.wikipedia.org/wiki/File:Android-logo.jpg"><img title="Android robot logo." src="http://upload.wikimedia.org/wikipedia/en/a/a5/Android-logo.jpg" alt="Android robot logo." width="145" height="160" /></a><p class="wp-caption-text">Image via Wikipedia</p></div>
</div>
<p>If you encountered an error  in this chapter, calling the managedQuery function, the easy to find <a title="Chapter 5 Contact Picker Example" href="http://p2p.wrox.com/book-professional-android-2-application-development/82392-chapter-5-contact-picker-example.html">correction is mentioned here</a> on editor &#8220;p2p&#8221; (programmer to programmer) site.</p>
<p>More interesting info is the replacement of the use of the deprecated class People.</p>
<p>But this don&#8217;t mention the correction for the &#8220;Force close&#8221; when launching the app on Android 2.3.3.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javathought.wordpress.com/417/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javathought.wordpress.com/417/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javathought.wordpress.com/417/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javathought.wordpress.com/417/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javathought.wordpress.com/417/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javathought.wordpress.com/417/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javathought.wordpress.com/417/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javathought.wordpress.com/417/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javathought.wordpress.com/417/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javathought.wordpress.com/417/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javathought.wordpress.com/417/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javathought.wordpress.com/417/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javathought.wordpress.com/417/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javathought.wordpress.com/417/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javathought.wordpress.com&amp;blog=7374491&amp;post=417&amp;subd=javathought&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javathought.wordpress.com/2011/08/07/professional-android-2-development-error-in-chapter-5/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9efe8c36e3e99e211db05713a49cf4a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">neophoto</media:title>
		</media:content>

		<media:content url="http://upload.wikimedia.org/wikipedia/en/a/a5/Android-logo.jpg" medium="image">
			<media:title type="html">Android robot logo.</media:title>
		</media:content>
	</item>
		<item>
		<title>get hostname in ant easily</title>
		<link>http://javathought.wordpress.com/2011/08/02/get-hostname-in-ant-easily/</link>
		<comments>http://javathought.wordpress.com/2011/08/02/get-hostname-in-ant-easily/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 17:14:38 +0000</pubDate>
		<dc:creator>Pascal</dc:creator>
				<category><![CDATA[build]]></category>
		<category><![CDATA[ant]]></category>
		<category><![CDATA[hostname]]></category>

		<guid isPermaLink="false">http://javathought.wordpress.com/?p=406</guid>
		<description><![CDATA[After searching a while, here is the best way I found to get the hostname in a propert. Just use exec task : The trick is the attribute outputpropety of the exec task. You can then use ${host.name} variable to use the hostname in your ant scripts.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javathought.wordpress.com&amp;blog=7374491&amp;post=406&amp;subd=javathought&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After searching a while, here is the best way I found to get the hostname in a propert. Just use exec task :</p>
<p><pre class="brush: xml;">
&lt;exec dir=&quot;${basedir}&quot; executable=&quot;hostname&quot; outputproperty=&quot;host.name&quot;&gt;
</pre></p>
<p>The trick is the attribute outputpropety of the exec task. You can then use ${host.name} variable to use the hostname in your ant scripts.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javathought.wordpress.com/406/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javathought.wordpress.com/406/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javathought.wordpress.com/406/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javathought.wordpress.com/406/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javathought.wordpress.com/406/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javathought.wordpress.com/406/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javathought.wordpress.com/406/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javathought.wordpress.com/406/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javathought.wordpress.com/406/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javathought.wordpress.com/406/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javathought.wordpress.com/406/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javathought.wordpress.com/406/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javathought.wordpress.com/406/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javathought.wordpress.com/406/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javathought.wordpress.com&amp;blog=7374491&amp;post=406&amp;subd=javathought&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javathought.wordpress.com/2011/08/02/get-hostname-in-ant-easily/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9efe8c36e3e99e211db05713a49cf4a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">neophoto</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu, XFS and Buffalo NAS &#8211; Part 2</title>
		<link>http://javathought.wordpress.com/2011/07/01/ubuntu-xfs-and-buffalo-nas-part-2/</link>
		<comments>http://javathought.wordpress.com/2011/07/01/ubuntu-xfs-and-buffalo-nas-part-2/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 21:52:21 +0000</pubDate>
		<dc:creator>Pascal</dc:creator>
				<category><![CDATA[Hard Drive]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Fstab]]></category>
		<category><![CDATA[GParted]]></category>
		<category><![CDATA[Mount]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[Universally unique identifier]]></category>

		<guid isPermaLink="false">http://javathought.wordpress.com/?p=396</guid>
		<description><![CDATA[In part 1, I explained how to mount the drive one time, but you&#8217;ll have to comment the params in /etc/fstab in order to disabled a block at startup when the drive is not present, and as an USB drive, if the number of drives connected at boot time is not the same, the drive [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javathought.wordpress.com&amp;blog=7374491&amp;post=396&amp;subd=javathought&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In part 1, I explained how to mount the drive one time, but you&#8217;ll have to comment the params in <a class="zem_slink" title="Fstab" href="http://en.wikipedia.org/wiki/Fstab" rel="wikipedia">/etc/fstab</a> in order to disabled a block at startup when the drive is not present, and as an USB drive, if the number of drives connected at boot time is not the same, the drive will not have the same partition definition (the /dev/sdd will perhaps be /dev/sdc next time).</p>
<p>So a better option is to use the UUID of the drive and set the auto mount option. To gert the UUID, launch <a class="zem_slink" title="GParted" href="http://gparted.sourceforge.net" rel="homepage">gparted</a> again and right click on the partition. In the dialog box you&#8217;ll have a item will the UUID of the partition. Just copy the value. Edit again /etc/fstab and set the line of mount point the the code below this time :</p>
<p><pre class="brush: plain;">
UUID=&amp;lt;value copied&amp;gt;       /media/MyXFSDrive xfs user,auto 0 0
</pre></p>
<h6 class="zemanta-related-title" style="font-size:1em;">Related articles</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://sandeepbhalla.wordpress.com/2011/05/21/uuids-in-ubuntu-unix-tutorial/">UUIDs in Ubuntu | Unix Tutorial</a> (sandeepbhalla.wordpress.com)</li>
<li class="zemanta-article-ul-li"><a href="http://computerandu.wordpress.com/2011/05/12/how-to-mount-a-windows-partition-on-linux-automatically-on-each-start-up/">How to mount a windows partition on Linux automatically on each start up</a> (computerandu.wordpress.com)</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javathought.wordpress.com/396/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javathought.wordpress.com/396/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javathought.wordpress.com/396/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javathought.wordpress.com/396/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javathought.wordpress.com/396/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javathought.wordpress.com/396/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javathought.wordpress.com/396/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javathought.wordpress.com/396/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javathought.wordpress.com/396/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javathought.wordpress.com/396/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javathought.wordpress.com/396/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javathought.wordpress.com/396/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javathought.wordpress.com/396/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javathought.wordpress.com/396/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javathought.wordpress.com&amp;blog=7374491&amp;post=396&amp;subd=javathought&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javathought.wordpress.com/2011/07/01/ubuntu-xfs-and-buffalo-nas-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9efe8c36e3e99e211db05713a49cf4a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">neophoto</media:title>
		</media:content>
	</item>
		<item>
		<title>Nice borders for lightroom</title>
		<link>http://javathought.wordpress.com/2011/06/26/nice-borders-for-lightroom/</link>
		<comments>http://javathought.wordpress.com/2011/06/26/nice-borders-for-lightroom/#comments</comments>
		<pubDate>Sun, 26 Jun 2011 20:04:39 +0000</pubDate>
		<dc:creator>Pascal</dc:creator>
				<category><![CDATA[Lightroom]]></category>

		<guid isPermaLink="false">http://javathought.wordpress.com/?p=388</guid>
		<description><![CDATA[http://www.tipsquirrel.com/index.php/2010/09/5-creative-borders-for-lightroom/ &#160; &#160;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javathought.wordpress.com&amp;blog=7374491&amp;post=388&amp;subd=javathought&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a title="Somme borders for Lightroom" href="http://www.tipsquirrel.com/index.php/2010/09/5-creative-borders-for-lightroom/">http://www.tipsquirrel.com/index.php/2010/09/5-creative-borders-for-lightroom/</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javathought.wordpress.com/388/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javathought.wordpress.com/388/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javathought.wordpress.com/388/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javathought.wordpress.com/388/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javathought.wordpress.com/388/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javathought.wordpress.com/388/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javathought.wordpress.com/388/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javathought.wordpress.com/388/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javathought.wordpress.com/388/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javathought.wordpress.com/388/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javathought.wordpress.com/388/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javathought.wordpress.com/388/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javathought.wordpress.com/388/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javathought.wordpress.com/388/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javathought.wordpress.com&amp;blog=7374491&amp;post=388&amp;subd=javathought&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javathought.wordpress.com/2011/06/26/nice-borders-for-lightroom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9efe8c36e3e99e211db05713a49cf4a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">neophoto</media:title>
		</media:content>
	</item>
		<item>
		<title>Where&#8217;s Asphalt 5 in Samsung Apps</title>
		<link>http://javathought.wordpress.com/2011/06/26/wheres-asphalt-5-in-samsung-apps/</link>
		<comments>http://javathought.wordpress.com/2011/06/26/wheres-asphalt-5-in-samsung-apps/#comments</comments>
		<pubDate>Sun, 26 Jun 2011 16:24:11 +0000</pubDate>
		<dc:creator>Pascal</dc:creator>
				<category><![CDATA[Galaxy S]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[asphalt]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[gameloft]]></category>

		<guid isPermaLink="false">http://javathought.wordpress.com/?p=385</guid>
		<description><![CDATA[As said in my previous post, I&#8217;ve made a factory reset to my Galaxy S. So I want to reinstall my apps &#8230; and Aspahtl 5 from SamsungApps. But it&#8217;s not in the list of apps. In fact, it&#8217;s a bit hidden. You have to go to Menu -&#62; Download, and you&#8217;ll see previous installed [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javathought.wordpress.com&amp;blog=7374491&amp;post=385&amp;subd=javathought&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As said in my previous post, I&#8217;ve made a factory reset to my Galaxy S. So I want to reinstall my apps &#8230; and Aspahtl 5 from SamsungApps. But it&#8217;s not in the list of apps.</p>
<p>In fact, it&#8217;s a bit hidden. You have to go to Menu -&gt; Download, and you&#8217;ll see previous installed apps, included Aspahalt 5.</p>
<p><strong>Edit</strong> : by the way, I found it now on the market and there&#8217;s a free version !</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javathought.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javathought.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javathought.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javathought.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javathought.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javathought.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javathought.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javathought.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javathought.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javathought.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javathought.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javathought.wordpress.com/385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javathought.wordpress.com/385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javathought.wordpress.com/385/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javathought.wordpress.com&amp;blog=7374491&amp;post=385&amp;subd=javathought&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javathought.wordpress.com/2011/06/26/wheres-asphalt-5-in-samsung-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9efe8c36e3e99e211db05713a49cf4a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">neophoto</media:title>
		</media:content>
	</item>
		<item>
		<title>My favorite clock on Android</title>
		<link>http://javathought.wordpress.com/2011/06/19/my-favorite-clock-on-android/</link>
		<comments>http://javathought.wordpress.com/2011/06/19/my-favorite-clock-on-android/#comments</comments>
		<pubDate>Sun, 19 Jun 2011 00:58:05 +0000</pubDate>
		<dc:creator>Pascal</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[typocock]]></category>
		<category><![CDATA[widget]]></category>

		<guid isPermaLink="false">http://javathought.wordpress.com/?p=377</guid>
		<description><![CDATA[As I&#8217;ve to do a factory reset, I&#8217;m re-installing my apps and widgets. Searching my clock&#8217;s widget, I (re)discovered that it was not on the market. So, if as me your favorite clock is TypoClock, here it is (as a reminder for me) : the thread on xda Related articles Review: Typo Clock (Widget) (androidguys.com)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javathought.wordpress.com&amp;blog=7374491&amp;post=377&amp;subd=javathought&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As I&#8217;ve to do a factory reset, I&#8217;m re-installing my apps and widgets. Searching my clock&#8217;s widget, I (re)discovered that it was not on the market.</p>
<p>So, if as me your favorite clock is TypoClock, here it is (as a reminder for me) : <a href="http://forum.xda-developers.com/showthread.php?t=814054">the thread on xda</a></p>
<h6 class="zemanta-related-title" style="font-size:1em;">Related articles</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.androidguys.com/2011/04/06/review-typo-clock-widget/">Review: Typo Clock (Widget)</a> (androidguys.com)</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javathought.wordpress.com/377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javathought.wordpress.com/377/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javathought.wordpress.com/377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javathought.wordpress.com/377/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javathought.wordpress.com/377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javathought.wordpress.com/377/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javathought.wordpress.com/377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javathought.wordpress.com/377/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javathought.wordpress.com/377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javathought.wordpress.com/377/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javathought.wordpress.com/377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javathought.wordpress.com/377/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javathought.wordpress.com/377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javathought.wordpress.com/377/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javathought.wordpress.com&amp;blog=7374491&amp;post=377&amp;subd=javathought&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javathought.wordpress.com/2011/06/19/my-favorite-clock-on-android/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9efe8c36e3e99e211db05713a49cf4a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">neophoto</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu, XFS and Buffalo NAS</title>
		<link>http://javathought.wordpress.com/2011/06/18/ubuntu-xfs-and-buffalo-nas/</link>
		<comments>http://javathought.wordpress.com/2011/06/18/ubuntu-xfs-and-buffalo-nas/#comments</comments>
		<pubDate>Sat, 18 Jun 2011 13:43:33 +0000</pubDate>
		<dc:creator>Pascal</dc:creator>
				<category><![CDATA[Hard Drive]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[GParted]]></category>
		<category><![CDATA[Hard disk drive]]></category>
		<category><![CDATA[NAS]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[XFS]]></category>

		<guid isPermaLink="false">http://javathought.wordpress.com/?p=362</guid>
		<description><![CDATA[I use a NAS as my main drive to maintain my datas shared against my computers (and to not have to make copies when changing it). But my Buffallo crashed a disk for the second time (the same one,  I think it&#8217;s corrupted and I&#8217;ll try to have it replaced by the support). But before [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javathought.wordpress.com&amp;blog=7374491&amp;post=362&amp;subd=javathought&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img">
<div class="wp-caption alignright" style="width: 310px"><a href="http://commons.wikipedia.org/wiki/File:Hdd.jpg"><img title="Image of a Western Digital 250Gb SATA Hard Dri..." src="http://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Hdd.jpg/300px-Hdd.jpg" alt="Image of a Western Digital 250Gb SATA Hard Dri..." width="300" height="201" /></a><p class="wp-caption-text">Image via Wikipedia</p></div>
</div>
<p>I use a NAS as my main drive to maintain my datas shared against my computers (and to not have to make copies when changing it). But my Buffallo crashed a disk for the second time (the same one,  I think it&#8217;s corrupted and I&#8217;ll try to have it replaced by the support).</p>
<p>But before sending it back to consumer&#8217;s service, I want to have my datas back on a <span class="zem_slink">rescue disk</span>. So I wanted to use the safe disk to copy files on a third drive. The problem is that the disks use <a class="zem_slink" title="XFS" href="http://en.wikipedia.org/wiki/XFS" rel="wikipedia">XFS</a> <span class="zem_slink">filesystem</span>. No way to copy files from Winows. Fortunately, I have a dual boot with <a class="zem_slink" title="Ubuntu (operating system)" href="http://www.ubuntu.com/" rel="homepage">Ubuntu</a>, that natively can read XFS <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  . so below are the steps to achieve the copy process :</p>
<p>Get the packages to support XFS :<br />
<pre class="brush: bash; gutter: false;">
# sudo apt-get install xfsprogs
# sudo apt-get install xfsdump
# sudo apt-get install gparted
</pre></p>
<p>Now you have to identify the partition to mount : use gparted</p>
<div id="attachment_363" class="wp-caption aligncenter" style="width: 310px"><a href="http://javathought.files.wordpress.com/2011/06/screenshot-dev-sdd-gparted.png"><img class="size-medium wp-image-363" title="Screenshot--dev-sdd - GParted" src="http://javathought.files.wordpress.com/2011/06/screenshot-dev-sdd-gparted.png?w=300&#038;h=203" alt="" width="300" height="203" /></a><p class="wp-caption-text">Gparted utility</p></div>
<p>You can use the drop down list on the top right to select your <span class="zem_slink">hard drive</span>, then you&#8217;ll see the list of partition; just identify your partition with XFS filesystem (/dev/sdd6 in my case).</p>
<p>So next step is  to edit /etc/fstab to specify the mount characteristic (filesystem type : xfs and associated <a class="zem_slink" title="Mount (computing)" href="http://en.wikipedia.org/wiki/Mount_%28computing%29" rel="wikipedia">mount point</a> : /media/whatYouWant ) ; just add the line above</p>
<p><pre class="brush: plain; gutter: false;">
/dev/sdd6    /media/MyXFSDrive xfs defaults 0 0
</pre></p>
<p>No create the mount point for your drive and mount it :</p>
<p><pre class="brush: bash; gutter: false;">
 # sudo mkdir/media/MyXFSDrive
# sudo mount /dev/sdd6
</pre></p>
<p>It&#8217;s finished, you can access your drive and make your backups.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javathought.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javathought.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javathought.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javathought.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javathought.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javathought.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javathought.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javathought.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javathought.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javathought.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javathought.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javathought.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javathought.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javathought.wordpress.com/362/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javathought.wordpress.com&amp;blog=7374491&amp;post=362&amp;subd=javathought&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javathought.wordpress.com/2011/06/18/ubuntu-xfs-and-buffalo-nas/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9efe8c36e3e99e211db05713a49cf4a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">neophoto</media:title>
		</media:content>

		<media:content url="http://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Hdd.jpg/300px-Hdd.jpg" medium="image">
			<media:title type="html">Image of a Western Digital 250Gb SATA Hard Dri...</media:title>
		</media:content>

		<media:content url="http://javathought.files.wordpress.com/2011/06/screenshot-dev-sdd-gparted.png?w=300" medium="image">
			<media:title type="html">Screenshot--dev-sdd - GParted</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu Unity and VirtualBox</title>
		<link>http://javathought.wordpress.com/2011/06/15/ubuntu-unity-and-virtualbox/</link>
		<comments>http://javathought.wordpress.com/2011/06/15/ubuntu-unity-and-virtualbox/#comments</comments>
		<pubDate>Wed, 15 Jun 2011 21:00:42 +0000</pubDate>
		<dc:creator>Pascal</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[unity]]></category>
		<category><![CDATA[virtualbox]]></category>

		<guid isPermaLink="false">http://javathought.wordpress.com/?p=321</guid>
		<description><![CDATA[I have a dual boot Windows7 / Ubuntu 11 on my recent laptop and I started enjoying Unity. I also installed VirtualBox on W7 to make tests on n-tier servers. On these virtual installations of Ubuntu I couldn&#8217;t have the Unity interface : the reason is simple, Unity need graphic acceleration, so do not forget [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javathought.wordpress.com&amp;blog=7374491&amp;post=321&amp;subd=javathought&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have a dual boot Windows7 / Ubuntu 11 on my recent laptop and I started enjoying Unity. I also installed VirtualBox on W7 to make tests on n-tier servers. </p>
<p>On these virtual installations of Ubuntu I couldn&#8217;t have the Unity interface : the reason is simple, Unity need graphic acceleration, so do not forget to check the graphic acceleration in the configuration of your virtual machine.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/javathought.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/javathought.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/javathought.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/javathought.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/javathought.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/javathought.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/javathought.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/javathought.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/javathought.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/javathought.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/javathought.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/javathought.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/javathought.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/javathought.wordpress.com/321/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=javathought.wordpress.com&amp;blog=7374491&amp;post=321&amp;subd=javathought&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://javathought.wordpress.com/2011/06/15/ubuntu-unity-and-virtualbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9efe8c36e3e99e211db05713a49cf4a9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">neophoto</media:title>
		</media:content>
	</item>
	</channel>
</rss>
