<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
<channel>
  <title>Linux Format forums</title>
  <link>http://linuxformat.com/forums/index.php</link>
  <description>Help, discussion, magazine feedback and more</description>
  <language>english</language>
  <copyright>(c) Copyright Sun May 19, 2013 11:17 pm by Linux Format forums</copyright>
  <managingEditor>webmaster@linuxformat.com</managingEditor>
  <webMaster>webmaster@linuxformat.com</webMaster>
  <pubDate>Sun May 19, 2013 11:17 pm</pubDate>
  <lastBuildDate>Sun May 19, 2013 11:17 pm</lastBuildDate>
  <docs>http://backend.userland.com/rss</docs>
  <generator>phpBB2 RSS Syndication Mod by Lucas</generator>
  <ttl>1</ttl>

  <image>
    <title>Linux Format forums</title>
    <url></url>
    <link>http://linuxformat.com/forums/</link>
    <description>Help, discussion, magazine feedback and more</description>
  </image>

                                      <item>
                                        <title>Re: error in restore code</title>
                                        <link>http://linuxformat.com/forums/viewtopic.php?p=97620#97620</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=5'&gt;nelz&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Thu Mar 10, 2011 9:19 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      If the tarball is given as the argument, you can get it's directory with dirname, e.g.&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;cd $&amp;#40;dirname $1&amp;#41;&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;</description>
                                        <comments>http://linuxformat.com/forums/viewtopic.php?p=97620#97620</comments>
                                        <author>nelz</author>
                                        <pubDate>Thu Mar 10, 2011 9:19 am</pubDate>
                                        <guid isPermaLink="true">http://linuxformat.com/forums/viewtopic.php?p=97620#97620</guid>
                                      </item>
                                      <item>
                                        <title>Re: error in restore code</title>
                                        <link>http://linuxformat.com/forums/viewtopic.php?p=97612#97612</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=14187'&gt;Dutch_Master&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Thu Mar 10, 2011 2:45 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      LXF126 is quite a while ago, so I can't remember exactly, but IMO it is the intention of the script to specify the required backup to restore. You may have made more then one backup over a period of time, so which one should the script use to restore?</description>
                                        <comments>http://linuxformat.com/forums/viewtopic.php?p=97612#97612</comments>
                                        <author>Dutch_Master</author>
                                        <pubDate>Thu Mar 10, 2011 2:45 am</pubDate>
                                        <guid isPermaLink="true">http://linuxformat.com/forums/viewtopic.php?p=97612#97612</guid>
                                      </item>
                                      <item>
                                        <title>Re: error in restore code</title>
                                        <link>http://linuxformat.com/forums/viewtopic.php?p=97604#97604</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=67286'&gt;Red Bow Tie&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Thu Mar 10, 2011 12:44 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Try as I might I cannot get the restore script to recognize an existing tarball. Again this is taken from LXF#126. Here is the compress.sh script &lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;&amp;nbsp;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
if &amp;#91; -f $1/../backup.tar.gz &amp;#93;&lt;br /&gt;
then&lt;br /&gt;
tar -uz --file=$1/../backup.tar.gz $1&lt;br /&gt;
elif &amp;#91; -d $1 &amp;#93;&lt;br /&gt;
then&lt;br /&gt;
tar -cz --file=$1/../backup.tar.gz $1&lt;br /&gt;
echo &amp;quot;Backup packaged&amp;quot;&lt;br /&gt;
else&lt;br /&gt;
echo &amp;quot;Backup packaging failed&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
I can create the tarball. $1 is the Backup folder I created under the home folder. My scripts are in a Shellscripting folder I created also under the home folder. Here is the code I used to run the compress.sh script contained within the Shellscripting folder. &lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;&amp;nbsp;sh compress.sh ../Backup &lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt; I used ../Backup as the  Backup folder is in the parent of the Shellscripting folder. With the code above this creates a tarball in the home folder.&lt;br /&gt;
Here is the restore script &lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;&amp;nbsp;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
if &amp;#91; -f $1/../backup.tar.gz &amp;#93;&lt;br /&gt;
then&lt;br /&gt;
tar -xz --file=$1/../backup.tar.gz&lt;br /&gt;
rsync --recursive --times --perms $1 $2&lt;br /&gt;
rm -rf $1&lt;br /&gt;
echo &amp;quot;Restore successful&amp;quot;&lt;br /&gt;
elif &amp;#91; -d $1 &amp;#93;&lt;br /&gt;
then&lt;br /&gt;
rsync --recursive --times --perms $1 $2&lt;br /&gt;
tar -cz --file=$2/../backup.tar.gz $1&lt;br /&gt;
rm -rf $1&lt;br /&gt;
echo &amp;quot;Restore successful&amp;quot;&lt;br /&gt;
else&lt;br /&gt;
echo &amp;quot;Restore failed&amp;quot;&lt;br /&gt;
fi &lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
Actually I corrected an out of place then statement (This was taken from LXF#126) My question is, if I am in my Shellscripting folder and run the restore.sh script, how do I get it to see the backup.tar.gz archive in the parent directory of my Shellscripting folder so that line 2 in the script above will carry out lines 4 to 7? I can restore successfully if I specify the Backup folder as $1. Then lines 8 to 12 do the job, but how can I use the archived tarball to restore? &lt;img src=&quot;images/smiles/icon_cry.gif&quot; alt=&quot;Crying or Very sad&quot; border=&quot;0&quot; /&gt;</description>
                                        <comments>http://linuxformat.com/forums/viewtopic.php?p=97604#97604</comments>
                                        <author>Red Bow Tie</author>
                                        <pubDate>Thu Mar 10, 2011 12:44 am</pubDate>
                                        <guid isPermaLink="true">http://linuxformat.com/forums/viewtopic.php?p=97604#97604</guid>
                                      </item>
                                      <item>
                                        <title>Re: error in restore code</title>
                                        <link>http://linuxformat.com/forums/viewtopic.php?p=97603#97603</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=2326'&gt;ollie&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Thu Mar 10, 2011 12:17 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      &lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;towy71 wrote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;What are you talking about ollie &lt;img src=&quot;images/smiles/icon_wink.gif&quot; alt=&quot;Wink&quot; border=&quot;0&quot; /&gt;&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
Thanks Towy - you deleted the wrong one &lt;img src=&quot;images/smiles/icon_wink.gif&quot; alt=&quot;Wink&quot; border=&quot;0&quot; /&gt;  &lt;img src=&quot;images/smiles/icon_razz.gif&quot; alt=&quot;Razz&quot; border=&quot;0&quot; /&gt;</description>
                                        <comments>http://linuxformat.com/forums/viewtopic.php?p=97603#97603</comments>
                                        <author>ollie</author>
                                        <pubDate>Thu Mar 10, 2011 12:17 am</pubDate>
                                        <guid isPermaLink="true">http://linuxformat.com/forums/viewtopic.php?p=97603#97603</guid>
                                      </item>
                                      <item>
                                        <title>Re: error in restore code</title>
                                        <link>http://linuxformat.com/forums/viewtopic.php?p=97602#97602</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=39'&gt;towy71&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Thu Mar 10, 2011 12:15 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      What are you talking about ollie &lt;img src=&quot;images/smiles/icon_wink.gif&quot; alt=&quot;Wink&quot; border=&quot;0&quot; /&gt;</description>
                                        <comments>http://linuxformat.com/forums/viewtopic.php?p=97602#97602</comments>
                                        <author>towy71</author>
                                        <pubDate>Thu Mar 10, 2011 12:15 am</pubDate>
                                        <guid isPermaLink="true">http://linuxformat.com/forums/viewtopic.php?p=97602#97602</guid>
                                      </item>
                                      <item>
                                        <title>Re: error in restore code</title>
                                        <link>http://linuxformat.com/forums/viewtopic.php?p=97600#97600</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=2326'&gt;ollie&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Thu Mar 10, 2011 12:12 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Got a bit of a stutter there nelz &lt;img src=&quot;images/smiles/icon_razz.gif&quot; alt=&quot;Razz&quot; border=&quot;0&quot; /&gt;  &lt;img src=&quot;images/smiles/icon_lol.gif&quot; alt=&quot;Laughing&quot; border=&quot;0&quot; /&gt;</description>
                                        <comments>http://linuxformat.com/forums/viewtopic.php?p=97600#97600</comments>
                                        <author>ollie</author>
                                        <pubDate>Thu Mar 10, 2011 12:12 am</pubDate>
                                        <guid isPermaLink="true">http://linuxformat.com/forums/viewtopic.php?p=97600#97600</guid>
                                      </item>
                                      <item>
                                        <title>Re: error in restore code</title>
                                        <link>http://linuxformat.com/forums/viewtopic.php?p=97536#97536</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=5'&gt;nelz&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Tue Mar 08, 2011 3:41 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      .. is the parent directory.&lt;br /&gt;
&lt;br /&gt;
It sounds like you don't want the BackupFolder in the archive in the first place, go into it before creating the archive. You can do this with&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;cd BackupFolder&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
before running tar, but it is cleaner to use the -C option with tar&lt;br /&gt;
&lt;br /&gt;
[code]tar -C BackupFolder czf somebackup.tar.gz .[code]</description>
                                        <comments>http://linuxformat.com/forums/viewtopic.php?p=97536#97536</comments>
                                        <author>nelz</author>
                                        <pubDate>Tue Mar 08, 2011 3:41 pm</pubDate>
                                        <guid isPermaLink="true">http://linuxformat.com/forums/viewtopic.php?p=97536#97536</guid>
                                      </item>
                                      <item>
                                        <title>error in restore code</title>
                                        <link>http://linuxformat.com/forums/viewtopic.php?p=97535#97535</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=67286'&gt;Red Bow Tie&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Tue Mar 08, 2011 3:10 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Thanks to both Dutch_Master and nelz for their help. Actually, you're right Dutch_Master for suggesting it as an exercise. I looked at the code over and over, compared it to other if elif else conditionals and came to the same conclusion that you and nelz stated. The then is in the wrong place. &lt;br /&gt;
The strange part is that this code was taken directly from the ShellScripting article on page 51 of LXF#126. Seems no one has actually tried the code out or no correction was ever published unless it was caught in a later issue of LXF. If it wasn't maybe someone should inform the publishers of a correction for this script.&lt;br /&gt;
Could you please answer one more question I have about this script? I'm not sure what you mean by code tags Dutch_Master, so if I do it wrong below please show me how to correct it.&lt;br /&gt;
What does this mean?&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;&amp;nbsp;tar -xz --file=$1/../backup.tar.gz &lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
I know the tar command is extracting the files from a previously compressed file specified on the command line, but what does the &lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;/../ &lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt; refer to? I assume it's some kind of path statement &lt;img src=&quot;images/smiles/icon_question.gif&quot; alt=&quot;Question&quot; border=&quot;0&quot; /&gt;&lt;br /&gt;
Also, how would I restore the files only and not the folder? For example, I used the script as an exercise to backup the Pictures folder in another folder called BackupFolder. How do I restore the Pictures folder w/o restoring the BackupFolder inside the Pictures folder (i.e when I run the restore.sh script I get the BackupFolder inside the Pictures folder which, in turn, stores the actual pictures.)</description>
                                        <comments>http://linuxformat.com/forums/viewtopic.php?p=97535#97535</comments>
                                        <author>Red Bow Tie</author>
                                        <pubDate>Tue Mar 08, 2011 3:10 pm</pubDate>
                                        <guid isPermaLink="true">http://linuxformat.com/forums/viewtopic.php?p=97535#97535</guid>
                                      </item>
                                      <item>
                                        <title>Re: error in restore code</title>
                                        <link>http://linuxformat.com/forums/viewtopic.php?p=97532#97532</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=5'&gt;nelz&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Tue Mar 08, 2011 9:28 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Your second then is in the wrong place, it should be after the elif line, not before the else.</description>
                                        <comments>http://linuxformat.com/forums/viewtopic.php?p=97532#97532</comments>
                                        <author>nelz</author>
                                        <pubDate>Tue Mar 08, 2011 9:28 am</pubDate>
                                        <guid isPermaLink="true">http://linuxformat.com/forums/viewtopic.php?p=97532#97532</guid>
                                      </item>
                                      <item>
                                        <title>Re: error in restore code</title>
                                        <link>http://linuxformat.com/forums/viewtopic.php?p=97528#97528</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=14187'&gt;Dutch_Master&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Tue Mar 08, 2011 3:48 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      That code is either missing something or you managed to mess things up. Why invoke the backup twice? Check syntax, punctuation and correct order of commands given. (it's an exercise, try finding the fault yourself)&lt;br /&gt;
&lt;br /&gt;
Oh and btw: when posting code, use the code tags, like this:&lt;br /&gt;
 &lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;&amp;#91;code&amp;#93;code goes here&amp;#91;/code&amp;#93;&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;(but only one code tag, I used 2 to let you see it)</description>
                                        <comments>http://linuxformat.com/forums/viewtopic.php?p=97528#97528</comments>
                                        <author>Dutch_Master</author>
                                        <pubDate>Tue Mar 08, 2011 3:48 am</pubDate>
                                        <guid isPermaLink="true">http://linuxformat.com/forums/viewtopic.php?p=97528#97528</guid>
                                      </item>
                                      <item>
                                        <title>error in restore code</title>
                                        <link>http://linuxformat.com/forums/viewtopic.php?p=97527#97527</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://linuxformat.com/forums/profile.php?mode=viewprofile&amp;u=67286'&gt;Red Bow Tie&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Tue Mar 08, 2011 3:19 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Could someone tell me what I am doing wrong by entering the following code take from the restore script in LXF#126?&lt;br /&gt;
&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
if [ -f $1/../backup.tar.gz ]&lt;br /&gt;
then&lt;br /&gt;
tar -xz --file=$1/../backup.tar.gz&lt;br /&gt;
rsync --recursive --times --perms $1 $2&lt;br /&gt;
rm -rf $1&lt;br /&gt;
echo &amp;quot;Restore successful&amp;quot;&lt;br /&gt;
elif [ -d $1 ]&lt;br /&gt;
rsync --recursive --&lt;br /&gt;
times --perms $1 $2&lt;br /&gt;
tar -cz --file=$2/../backup.tar.gz $1 $2&lt;br /&gt;
rm -rf $1&lt;br /&gt;
echo &amp;quot;Restore successful&amp;quot;&lt;br /&gt;
then&lt;br /&gt;
else&lt;br /&gt;
echo &amp;quot;Restore failed&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
Every time I run it I get the following error &lt;br /&gt;
restore.sh: line 15: syntax error near unexpected token `else'&lt;br /&gt;
restore.sh: line 15: `else'</description>
                                        <comments>http://linuxformat.com/forums/viewtopic.php?p=97527#97527</comments>
                                        <author>Red Bow Tie</author>
                                        <pubDate>Tue Mar 08, 2011 3:19 am</pubDate>
                                        <guid isPermaLink="true">http://linuxformat.com/forums/viewtopic.php?p=97527#97527</guid>
                                      </item></channel></rss>