<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Upgrading from Fedora 9 to Fedora 10 with yum</title>
	<atom:link href="http://www.ioncannon.net/system-administration/142/upgrading-from-fedora-9-to-fedora-10-with-yum/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ioncannon.net/system-administration/142/upgrading-from-fedora-9-to-fedora-10-with-yum/</link>
	<description>Thoughts on Software Development and Engineering</description>
	<lastBuildDate>Tue, 16 Mar 2010 00:32:58 +0000</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Fedora 12 Bootable Root EBS on EC2</title>
		<link>http://www.ioncannon.net/system-administration/142/upgrading-from-fedora-9-to-fedora-10-with-yum/comment-page-1/#comment-163253</link>
		<dc:creator>Fedora 12 Bootable Root EBS on EC2</dc:creator>
		<pubDate>Tue, 16 Feb 2010 12:31:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.ioncannon.net/?p=142#comment-163253</guid>
		<description>[...] the instance to Fedora 10. This is pretty easy and can be done by following my instructions on upgrading from Fedora 9 to Fedora 10 (don&#039;t worry about skipping 9 it will work). Here are the commands needed to do the [...]</description>
		<content:encoded><![CDATA[<p>[...] the instance to Fedora 10. This is pretty easy and can be done by following my instructions on upgrading from Fedora 9 to Fedora 10 (don&#39;t worry about skipping 9 it will work). Here are the commands needed to do the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elias</title>
		<link>http://www.ioncannon.net/system-administration/142/upgrading-from-fedora-9-to-fedora-10-with-yum/comment-page-1/#comment-114293</link>
		<dc:creator>Elias</dc:creator>
		<pubDate>Fri, 09 Jan 2009 02:30:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.ioncannon.net/?p=142#comment-114293</guid>
		<description>Thanks for this great set of upgrade posts. I upgraded from FC5-&gt;FC6-&gt;FC7-&gt;FC8 --&gt; FC10 in two days. Had to remove some packages for dependencies resolution. Left the packages out until at FC10. Then reinstalled the removed packages.

Elias</description>
		<content:encoded><![CDATA[<p>Thanks for this great set of upgrade posts. I upgraded from FC5-&gt;FC6-&gt;FC7-&gt;FC8 &#8211;&gt; FC10 in two days. Had to remove some packages for dependencies resolution. Left the packages out until at FC10. Then reinstalled the removed packages.</p>
<p>Elias</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Kohles</title>
		<link>http://www.ioncannon.net/system-administration/142/upgrading-from-fedora-9-to-fedora-10-with-yum/comment-page-1/#comment-112669</link>
		<dc:creator>Jason Kohles</dc:creator>
		<pubDate>Mon, 29 Dec 2008 22:26:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.ioncannon.net/?p=142#comment-112669</guid>
		<description>You can solve the i386/x86_64 problem with this command to find the dups instead...

rpm -qa --qf=&quot;%{NAME}.%{ARCH}\n&quot; &#124; sort &#124; uniq -c &#124; awk &#039;$1 &gt; 1 { print $2 }&#039; &#124; egrep -v &#039;^(gpg-pubkey&#124;kernel)&#039; &gt; dupes.txt</description>
		<content:encoded><![CDATA[<p>You can solve the i386/x86_64 problem with this command to find the dups instead&#8230;</p>
<p>rpm -qa &#8211;qf=&#034;%{NAME}.%{ARCH}\n&#034; | sort | uniq -c | awk &#039;$1 &gt; 1 { print $2 }&#039; | egrep -v &#039;^(gpg-pubkey|kernel)&#039; &gt; dupes.txt</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cliff Stanford</title>
		<link>http://www.ioncannon.net/system-administration/142/upgrading-from-fedora-9-to-fedora-10-with-yum/comment-page-1/#comment-111038</link>
		<dc:creator>Cliff Stanford</dc:creator>
		<pubDate>Tue, 16 Dec 2008 15:39:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.ioncannon.net/?p=142#comment-111038</guid>
		<description>Brilliant Martin.  Worked well on the i386 machine.

Problem on an x86_64 was that it tried to remove *both* packages where both the i386 and the x86_64 versions were installed.

Thanks.</description>
		<content:encoded><![CDATA[<p>Brilliant Martin.  Worked well on the i386 machine.</p>
<p>Problem on an x86_64 was that it tried to remove *both* packages where both the i386 and the x86_64 versions were installed.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martinb</title>
		<link>http://www.ioncannon.net/system-administration/142/upgrading-from-fedora-9-to-fedora-10-with-yum/comment-page-1/#comment-110412</link>
		<dc:creator>Martinb</dc:creator>
		<pubDate>Mon, 08 Dec 2008 12:38:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.ioncannon.net/?p=142#comment-110412</guid>
		<description>I just did a FC8 to FC10 and it worked after some extra little steps

I did have some double rpms from old fedora and I did need to remove them first

I did found the following 2 scripts 

rpm --last -qa &#124; perl -n -e &#039;/^(\S+)-\S+-\S+/; print &quot;$&amp;\n&quot; if $SEEN{$1}; $SEEN{$1} &#124;&#124;= $_;&#039; &#124; sort &#124; uniq &gt;dupes.txt

and then you can do a

for i in $(cat dupes.txt); do rpm -e $i &amp;&amp; echo $i; done

After those 2 steps i could do the update without one problem</description>
		<content:encoded><![CDATA[<p>I just did a FC8 to FC10 and it worked after some extra little steps</p>
<p>I did have some double rpms from old fedora and I did need to remove them first</p>
<p>I did found the following 2 scripts </p>
<p>rpm &#8211;last -qa | perl -n -e &#039;/^(\S+)-\S+-\S+/; print &#034;$&amp;\n&#034; if $SEEN{$1}; $SEEN{$1} ||= $_;&#039; | sort | uniq &gt;dupes.txt</p>
<p>and then you can do a</p>
<p>for i in $(cat dupes.txt); do rpm -e $i &amp;&amp; echo $i; done</p>
<p>After those 2 steps i could do the update without one problem</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cliff Stanford</title>
		<link>http://www.ioncannon.net/system-administration/142/upgrading-from-fedora-9-to-fedora-10-with-yum/comment-page-1/#comment-110067</link>
		<dc:creator>Cliff Stanford</dc:creator>
		<pubDate>Mon, 01 Dec 2008 21:34:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.ioncannon.net/?p=142#comment-110067</guid>
		<description>Have you ever tried hopping over releases?  In other words, could I go straight from FC7 to F10?  Or do I have to go one step at a time?

Thanks for a great guide, by the way.

Cliff.</description>
		<content:encoded><![CDATA[<p>Have you ever tried hopping over releases?  In other words, could I go straight from FC7 to F10?  Or do I have to go one step at a time?</p>
<p>Thanks for a great guide, by the way.</p>
<p>Cliff.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deepak Mahajan</title>
		<link>http://www.ioncannon.net/system-administration/142/upgrading-from-fedora-9-to-fedora-10-with-yum/comment-page-1/#comment-109972</link>
		<dc:creator>Deepak Mahajan</dc:creator>
		<pubDate>Sat, 29 Nov 2008 08:03:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.ioncannon.net/?p=142#comment-109972</guid>
		<description>It&#039;s now working, root user is disabled by default, Fixed Grub with Super Grub for booting problem.  For info check Fedora Forum.</description>
		<content:encoded><![CDATA[<p>It&#039;s now working, root user is disabled by default, Fixed Grub with Super Grub for booting problem.  For info check Fedora Forum.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deepak Mahajan</title>
		<link>http://www.ioncannon.net/system-administration/142/upgrading-from-fedora-9-to-fedora-10-with-yum/comment-page-1/#comment-109861</link>
		<dc:creator>Deepak Mahajan</dc:creator>
		<pubDate>Fri, 28 Nov 2008 11:17:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.ioncannon.net/?p=142#comment-109861</guid>
		<description>sorry it is VolGroup01 not 00</description>
		<content:encoded><![CDATA[<p>sorry it is VolGroup01 not 00</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deepak Mahajan</title>
		<link>http://www.ioncannon.net/system-administration/142/upgrading-from-fedora-9-to-fedora-10-with-yum/comment-page-1/#comment-109845</link>
		<dc:creator>Deepak Mahajan</dc:creator>
		<pubDate>Fri, 28 Nov 2008 08:38:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.ioncannon.net/?p=142#comment-109845</guid>
		<description>Dear Carson,

Thanks for your tips again, I got update from above server with x86_64.  But now while restarting to Fedora 10 it saying VolumeGroup00 could not found. I have HP Xeon with SCSI disks.  Please guide.

It boot&#039;s with privious kernel but fail to login in X with unable to authenticate user.

Regards,

Deepak Mahajan</description>
		<content:encoded><![CDATA[<p>Dear Carson,</p>
<p>Thanks for your tips again, I got update from above server with x86_64.  But now while restarting to Fedora 10 it saying VolumeGroup00 could not found. I have HP Xeon with SCSI disks.  Please guide.</p>
<p>It boot&#039;s with privious kernel but fail to login in X with unable to authenticate user.</p>
<p>Regards,</p>
<p>Deepak Mahajan</p>
]]></content:encoded>
	</item>
</channel>
</rss>
