<?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>OSTalks &#187; Fedora</title>
	<atom:link href="http://www.ostalks.com/tag/fedora/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ostalks.com</link>
	<description>Open Source, Operating Systems, Offtopic Stuff!</description>
	<lastBuildDate>Fri, 28 May 2010 01:29:58 +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>How To Create Your Own Yum Repository in Moblin</title>
		<link>http://www.ostalks.com/2010/03/10/how-to-create-your-own-yum-repository-in-moblin/</link>
		<comments>http://www.ostalks.com/2010/03/10/how-to-create-your-own-yum-repository-in-moblin/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 14:32:28 +0000</pubDate>
		<dc:creator>clintcan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[meego]]></category>
		<category><![CDATA[moblin]]></category>
		<category><![CDATA[RedHat]]></category>
		<category><![CDATA[rpm]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://www.ostalks.com/?p=350</guid>
		<description><![CDATA[I received a question from an email on how to create your own yum repository.
I am basing it on Moblin/Meego, but should mostly work on Fedora/RedHat too.
I am assuming that you have already installed the development tools of Moblin in your installed Moblin distribution by using this command:
sudo yum groupinstall “Development Tools”
To start, we install <a href='http://www.ostalks.com/2010/03/10/how-to-create-your-own-yum-repository-in-moblin/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>I received a question from an email on how to create your own yum repository.</p>
<p>I am basing it on Moblin/Meego, but should mostly work on Fedora/RedHat too.</p>
<p>I am assuming that you have already installed the development tools of Moblin in your installed Moblin distribution by using this command:</p>
<p><code>sudo yum groupinstall “Development Tools”</code></p>
<p>To start, we install the createrepo package &#8211; we can get it from the Manage Apps application in the Moblin Applications->Settings tab.</p>
<p><a href="http://www.ostalks.com/wp-content/uploads/2010/03/addremove.png"><img src="http://www.ostalks.com/wp-content/uploads/2010/03/addremove-300x163.png" alt="" title="addremove" width="300" height="163" class="alignnone size-medium wp-image-352" /></a></p>
<p>Once installed we can now create the repository using the commands:</p>
<p>mkdir -p /[path of your moblin repository root]/Moblin/[moblin-release version]/{SRPMS,i586}</p>
<p>We use i586, because Intel atom processors are basically of arch type i586.</p>
<p>You may want to create i386 generic files for whatever use you want, so you can use {SRPMS,i386,i586} instead above.</p>
<p>If you do so, you may want to automate the process by creating a bash script named createrepo.sh and writing in the following code:</p>
<p><code><br />
#!/bin/sh<br />
destdir="[path of your moblin repository root]/[moblin-release version]"<br />
for arch in i386 i586<br />
do<br />
    pushd ${destdir}/${arch} >/dev/null 2>&#038;1<br />
        createrepo .<br />
    popd >/dev/null 2>&#038;1<br />
done<br />
</code></p>
<p>Every time you add a package, call this script and it will create the metadata using the createrepo tool in the i386 and i586 directories.</p>
<p>Upload this directory structure to the server where you&#8217;ll be hosting your repository.</p>
<p>The .repo file you will create will most like be similar to this:</p>
<p>[mymoblinrepo]<br />
name=My Repository<br />
baseurl=http://myserver.com/repo/Moblin/2/$basearch<br />
enabled=1</p>
<p>$basearch will be the arch type of the distribution.  For Moblin you can hardcode it to i586 instead.</p>
<p>Anyways, that&#8217;s about it.  Cheers!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ostalks.com/2010/03/10/how-to-create-your-own-yum-repository-in-moblin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moblin 2.1: Short Review and It&#8217;s Future As Meego</title>
		<link>http://www.ostalks.com/2010/02/17/moblin-2-1-short-review-and-its-future-as-meego/</link>
		<comments>http://www.ostalks.com/2010/02/17/moblin-2-1-short-review-and-its-future-as-meego/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 14:39:10 +0000</pubDate>
		<dc:creator>clintcan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Benq Joybook]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[intel]]></category>
		<category><![CDATA[maemo]]></category>
		<category><![CDATA[meego]]></category>
		<category><![CDATA[moblin]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.ostalks.com/?p=255</guid>
		<description><![CDATA[The way that Moblin is organized is, in my opinion, one of the best interfaces that I've seen in a linux distribution for netbooks.  It simply is the best optimization of space for 8" to 12" screens.]]></description>
			<content:encoded><![CDATA[<p>A few days ago, we heard of the big news that Intel and Nokia have started consolidating their Moblin and Maemo codebases and have come up with a new distribution named <a href="http://moblin.org/community/blogs/imad/2010/welcome-meego">Meego</a>.</p>
<p>From the blog, it states that they &#8220;are taking the best pieces from these two open source projects and are creating the MeeGo software platform. Both teams have worked for a long time to support the needs of the mobile user experience &#8211; and MeeGo will make this even better.&#8221;</p>
<p>As I knew that Maemo&#8217;s interface was more suited for the mobile phone area for Meego, I decided to look into Moblin itself and see how it would serve the role of addressing the netbook part of the new platform.</p>
<p>As we see it currently, the pre-built Moblin live image is a largely Fedora 10 based distribution.  It can however be built from Fedora 12, and Ubuntu 9.10.  It is interestingly enough that the resulting build with be rpm based, not deb based.</p>
<p>Installing the live image to harddisk on my Benq Joybook was simple enough &#8211; it was actually similar to the Fedora/RedHat installs that I am used to.</p>
<p>Booting up was a treat: compared to Ubuntu Netbook Remix, the interface was intuitive and smooth.</p>
<p><a href="http://www.ostalks.com/wp-content/uploads/2010/02/myzone.png"><img src="http://www.ostalks.com/wp-content/uploads/2010/02/myzone-300x168.png" alt="" title="myzone" width="300" height="168" class="alignnone size-medium wp-image-259" /></a></p>
<p>The Miser interface upon first boot shows practically a wonderful display of your tasks, favorite apps, documents opened and other stuff that you&#8217;ve just used.</p>
<p><a href="http://www.ostalks.com/wp-content/uploads/2010/02/media.png"><img src="http://www.ostalks.com/wp-content/uploads/2010/02/media-300x168.png" alt="" title="media" width="300" height="168" class="alignnone size-medium wp-image-258" /></a></p>
<p><a href="http://www.ostalks.com/wp-content/uploads/2010/02/applications.png"><img src="http://www.ostalks.com/wp-content/uploads/2010/02/applications-300x168.png" alt="" title="applications" width="300" height="168" class="alignnone size-medium wp-image-256" /></a></p>
<p>Different tabs allows the user to navigate through different sections of Moblin &#8211; easily categorized into media, internet, status, applications, zones, people and pasteboard.</p>
<p>The way that Moblin is organized is, in my opinion, one of the best interfaces that I&#8217;ve seen in a linux distribution for netbooks.  It simply is the best optimization of space for 8&#8243; to 12&#8243; screens.</p>
<p>There are drawbacks however.</p>
<p>For one thing, NTFS is not supported in moblin.  And due to licensing issues, the MP3s and H264 video is not supported out of the box, as well as proprietary codecs.</p>
<p>Another thing is that Moblin&#8217;s repository is still rather small.  Understandable though, because this distribution is meant for netbooks.</p>
<p>There are a number of hacks you can do though, one is you can use the Fedora 10 (and sometimes 11) repository to download other programs.</p>
<p><a href="http://www.ostalks.com/wp-content/uploads/2010/02/zone.png"><img src="http://www.ostalks.com/wp-content/uploads/2010/02/zone-300x168.png" alt="" title="zone" width="300" height="168" class="alignnone size-medium wp-image-262" /></a></p>
<p>Another option is to compile the source rpms from the fedora repositories yourself.  The trick is to enable the development tools of moblin by typing in the command:</p>
<p>sudo yum groupinstall &#8220;Development Tools&#8221;</p>
<p>If you&#8217;re a little lazy to compile gstreamer yourself, you can use a repository created by a Moblin user named Matthi.  The repository, albeit small, includes some nice programs to install for Moblin, such as WINE, Blender, and the gstreamer plugins to make your Moblin distribution run codecs supported by ffmpeg.  You can get instructions for his repository <a href="http://www.matthis-kleine-welt.de/en/2009/12/17/kleines-repo-fur-moblin/">here</a>.</p>
<p><a href="http://www.ostalks.com/wp-content/uploads/2010/02/internet.png"><img src="http://www.ostalks.com/wp-content/uploads/2010/02/internet-300x168.png" alt="" title="internet" width="300" height="168" class="alignnone size-medium wp-image-257" /></a></p>
<p>What is the Moblin&#8217;s future as Meego?  I would say, rather bright.  Seeing how the interface really compliments the Intel Atom netbook specifications nicely, I believe that most of the GUI Moblin has implemented will be carried on in the netbook versions of Meego.  A possible challenge will be on how to implement the user experience on the Qt toolkit (Meego will be based on it, rather on GTK that Moblin uses).  Since Moblin uses the Mozilla codebase for it&#8217;s integrated browser, it is not farfetched to assume that Meego will implement the Webkit browser as it&#8217;s integrated browser for the Qt for it&#8217;s WM/Miser interface.</p>
<p>As Qt has integrated media, browsing, APIs, as well as a compositing engine compared to GTK (Gnome still uses Compiz as it&#8217;s compisiting engine), we would probably see a more integrated architecture internally, when Meego reaches it&#8217;s final stages of development into stable.</p>
<p><a href="http://www.ostalks.com/wp-content/uploads/2010/02/newapps.png"><img src="http://www.ostalks.com/wp-content/uploads/2010/02/newapps-300x168.png" alt="" title="newapps" width="300" height="168" class="alignnone size-medium wp-image-270" /></a></p>
<p><a href="http://www.ostalks.com/wp-content/uploads/2010/02/newapps2.png"><img src="http://www.ostalks.com/wp-content/uploads/2010/02/newapps2-300x168.png" alt="" title="newapps2" width="300" height="168" class="alignnone size-medium wp-image-271" /></a></p>
<p>Nokia and Intel would benefit each other, because for one reason, Nokia has a netbook. Also, Nokia&#8217;s design principles are horrible and clunky (see the S60 interface on symbian as an example) and is also seeing pressure on their interface designs from competitors like Google and Apple.  One thing that Nokia has, is that they&#8217;re great at hardware R&#038;D (especially mobile), and it is my belief that Intel is also looking into the mobile sector, especially considering that OSes like chrome, and android run on ARM processors and are indirectly competitors with Intel on this space.</p>
<p>All in all, I would say that if both Intel and Nokia play their cards right, Meego will be a very good competitive platform for mobile and netbook apps in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ostalks.com/2010/02/17/moblin-2-1-short-review-and-its-future-as-meego/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lenovo 3000 G430 and Fedora 10</title>
		<link>http://www.ostalks.com/2009/03/24/lenovo-3000-g430-and-fedora-10/</link>
		<comments>http://www.ostalks.com/2009/03/24/lenovo-3000-g430-and-fedora-10/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 22:23:03 +0000</pubDate>
		<dc:creator>clintcan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Broadcom]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Fedora 10]]></category>
		<category><![CDATA[Lenovo]]></category>
		<category><![CDATA[Lenovo 3000 G430]]></category>
		<category><![CDATA[Lenovo G430]]></category>
		<category><![CDATA[Synaptics]]></category>
		<category><![CDATA[touchpad]]></category>

		<guid isPermaLink="false">http://ostalks.wordpress.com/?p=31</guid>
		<description><![CDATA[A friend of mine asked me to help him set up linux on his newly purchased Lenovo laptop (doesn't have an OS preinstalled).]]></description>
			<content:encoded><![CDATA[<p>A friend of mine asked me to help him set up linux on his newly purchased Lenovo laptop (doesn&#8217;t have an OS preinstalled).  Few observations:</p>
<p>Ubuntu Intrepid failed to install on this laptop (messed up X resolution when it goes to the ubiquity setup screen).<br />
Fedora 10 does install successfully.</p>
<p>There are two hardware gotchas that do not work after install, namely, the touchpad and the wireless.  The laptop&#8217;s webcam gets detected and runs out of the box.</p>
<p>For the touchpad problem, disabling then enabling the touchpad by pressing the Fn+F8 key combination on the login screen twice does the trick.</p>
<p>As the wifi card of this laptop uses the Broadcom chipset, we have to install the Broadcom driver from the non-free repository of the rpmfusion website:</p>
<p>su -c &#8216;rpm -Uvh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm&#8217;</p>
<p>and then running</p>
<p>su -<br />
yum update<br />
yum install broadcom-wl</p>
<p>and then rebooting the laptop will enable the user to use his wifi with no problems at all.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ostalks.com/2009/03/24/lenovo-3000-g430-and-fedora-10/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.688 seconds -->
