<?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; RedHat</title>
	<atom:link href="http://www.ostalks.com/tag/redhat/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ostalks.com</link>
	<description>Open Source, Operating Systems, Offtopic Stuff!</description>
	<lastBuildDate>Fri, 04 Nov 2011 13:16:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<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” [...]]]></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>PHP SSH2 Source RPMS for CentOS/RedHat</title>
		<link>http://www.ostalks.com/2008/11/10/php-ssh2-source-rpms-for-centosredhat/</link>
		<comments>http://www.ostalks.com/2008/11/10/php-ssh2-source-rpms-for-centosredhat/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 07:09:28 +0000</pubDate>
		<dc:creator>clintcan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[pecl]]></category>
		<category><![CDATA[RedHat]]></category>
		<category><![CDATA[ssh2]]></category>

		<guid isPermaLink="false">http://ostalks.wordpress.com/?p=13</guid>
		<description><![CDATA[You might have heard of ssh2 pecl bindings for php. Unfortunately, the "stable" version fails to compile for php 5.2.x.]]></description>
			<content:encoded><![CDATA[<p>You might have heard of ssh2 pecl bindings for php. Unfortunately, the &#8220;stable&#8221; version fails to compile for php 5.2.x.</p>
<p>I am providing source rpms for CentOS/RedHat which fixes this problem.  Please take note I&#8217;m using a free file hosting service to host this source rpm.  If you know of anything better than this, please tell me.</p>
<p><a href="http://www.fileqube.com/file/OlRMZKrXh146893">CentOS/RedHat php-pecl-ssh source rpms</a></p>
<p>There&#8217;s a useful link below that should help you get started with php ssh2:</p>
<p><a href="http://kevin.vanzonneveld.net/techblog/article/make_ssh_connections_with_php/">Make ssh connections with php</a></p>
<p><strong><em>Update: You can now get this php extension at my repository</em></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ostalks.com/2008/11/10/php-ssh2-source-rpms-for-centosredhat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

