<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for This Godless Endeavour...</title>
	<atom:link href="http://tiagosalvador.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://tiagosalvador.wordpress.com</link>
	<description>Salvador's area.</description>
	<lastBuildDate>Wed, 06 Aug 2008 13:28:23 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on VirtualBox 1.5 on Slackware 12 by salvador</title>
		<link>http://tiagosalvador.wordpress.com/2007/09/29/virtualbox-15-on-slackware-12/#comment-24</link>
		<dc:creator>salvador</dc:creator>
		<pubDate>Wed, 06 Aug 2008 13:28:23 +0000</pubDate>
		<guid isPermaLink="false">http://tiagosalvador.wordpress.com/2007/09/29/virtualbox-15-on-slackware-12/#comment-24</guid>
		<description>Really?

Hmm, I know I haven&#039;t tested much, just copied a few files back and forth. But at any rate a new version of Vbox and a new one of Slackware have been released. Maybe I should do some tests on that version too ;)

Thanks for the input!

S.</description>
		<content:encoded><![CDATA[<p>Really?</p>
<p>Hmm, I know I haven&#8217;t tested much, just copied a few files back and forth. But at any rate a new version of Vbox and a new one of Slackware have been released. Maybe I should do some tests on that version too <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Thanks for the input!</p>
<p>S.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VirtualBox 1.5 on Slackware 12 by Renars</title>
		<link>http://tiagosalvador.wordpress.com/2007/09/29/virtualbox-15-on-slackware-12/#comment-23</link>
		<dc:creator>Renars</dc:creator>
		<pubDate>Wed, 06 Aug 2008 10:49:13 +0000</pubDate>
		<guid isPermaLink="false">http://tiagosalvador.wordpress.com/2007/09/29/virtualbox-15-on-slackware-12/#comment-23</guid>
		<description>I got trouble for usb player. After some files delete and some add it switched to ro mode. Even for root.
Sorry for mi bad english</description>
		<content:encoded><![CDATA[<p>I got trouble for usb player. After some files delete and some add it switched to ro mode. Even for root.<br />
Sorry for mi bad english</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Notebook misadventures part 1: HP dv6125BR (dv6000 series) by Salem</title>
		<link>http://tiagosalvador.wordpress.com/2008/05/08/notebook-misadventures-part-1-hp-dv6125br-dv6000-series/#comment-16</link>
		<dc:creator>Salem</dc:creator>
		<pubDate>Sun, 11 May 2008 14:14:10 +0000</pubDate>
		<guid isPermaLink="false">http://tiagosalvador.wordpress.com/?p=10#comment-16</guid>
		<description>I think you should have spent your money in candies. They bring us less headache than computers.</description>
		<content:encoded><![CDATA[<p>I think you should have spent your money in candies. They bring us less headache than computers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VirtualBox 1.5 on Slackware 12 by salvador</title>
		<link>http://tiagosalvador.wordpress.com/2007/09/29/virtualbox-15-on-slackware-12/#comment-8</link>
		<dc:creator>salvador</dc:creator>
		<pubDate>Fri, 16 Nov 2007 14:28:45 +0000</pubDate>
		<guid isPermaLink="false">http://tiagosalvador.wordpress.com/2007/09/29/virtualbox-15-on-slackware-12/#comment-8</guid>
		<description>Kewl, I guess this sorts out the problem for 2 slackware versions :) great.</description>
		<content:encoded><![CDATA[<p>Kewl, I guess this sorts out the problem for 2 slackware versions <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  great.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VirtualBox 1.5 on Slackware 12 by dborca</title>
		<link>http://tiagosalvador.wordpress.com/2007/09/29/virtualbox-15-on-slackware-12/#comment-7</link>
		<dc:creator>dborca</dc:creator>
		<pubDate>Thu, 15 Nov 2007 23:19:15 +0000</pubDate>
		<guid isPermaLink="false">http://tiagosalvador.wordpress.com/2007/09/29/virtualbox-15-on-slackware-12/#comment-7</guid>
		<description>The problem:

In Slackware 11, usbfs is mounted from rc.udev with
&lt;code&gt;
mount usbfs -t usbfs /proc/bus/usb -o devgid=10,devmode=0666
&lt;/code&gt;
In Slackware 12, usbfs is mounted from rc.S with
&lt;code&gt;
/sbin/mount -v usbfs /proc/bus/usb -t usbfs
&lt;/code&gt;
Which means that only root is able to rw in usbfs.

The solution:
You must edit rc.S to mount usbfs with rw permissions for other users (I used `wheel&#039; group):
&lt;code&gt;
/sbin/mount -v usbfs /proc/bus/usb -t usbfs -o devgid=10,devmode=0664
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>The problem:</p>
<p>In Slackware 11, usbfs is mounted from rc.udev with<br />
<code><br />
mount usbfs -t usbfs /proc/bus/usb -o devgid=10,devmode=0666<br />
</code><br />
In Slackware 12, usbfs is mounted from rc.S with<br />
<code><br />
/sbin/mount -v usbfs /proc/bus/usb -t usbfs<br />
</code><br />
Which means that only root is able to rw in usbfs.</p>
<p>The solution:<br />
You must edit rc.S to mount usbfs with rw permissions for other users (I used `wheel&#8217; group):<br />
<code><br />
/sbin/mount -v usbfs /proc/bus/usb -t usbfs -o devgid=10,devmode=0664<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VirtualBox 1.5 on Slackware 12 by salvador</title>
		<link>http://tiagosalvador.wordpress.com/2007/09/29/virtualbox-15-on-slackware-12/#comment-6</link>
		<dc:creator>salvador</dc:creator>
		<pubDate>Wed, 03 Oct 2007 02:08:24 +0000</pubDate>
		<guid isPermaLink="false">http://tiagosalvador.wordpress.com/2007/09/29/virtualbox-15-on-slackware-12/#comment-6</guid>
		<description>No problem, I&#039;m glad it was useful to someone :)</description>
		<content:encoded><![CDATA[<p>No problem, I&#8217;m glad it was useful to someone <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VirtualBox 1.5 on Slackware 12 by unixblackhole</title>
		<link>http://tiagosalvador.wordpress.com/2007/09/29/virtualbox-15-on-slackware-12/#comment-5</link>
		<dc:creator>unixblackhole</dc:creator>
		<pubDate>Tue, 02 Oct 2007 17:44:47 +0000</pubDate>
		<guid isPermaLink="false">http://tiagosalvador.wordpress.com/2007/09/29/virtualbox-15-on-slackware-12/#comment-5</guid>
		<description>Thanks for the help on the usb problem... solved my issues right away... cheers</description>
		<content:encoded><![CDATA[<p>Thanks for the help on the usb problem&#8230; solved my issues right away&#8230; cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VirtualBox 1.5 on Slackware 12 by Salem</title>
		<link>http://tiagosalvador.wordpress.com/2007/09/29/virtualbox-15-on-slackware-12/#comment-4</link>
		<dc:creator>Salem</dc:creator>
		<pubDate>Mon, 01 Oct 2007 01:53:06 +0000</pubDate>
		<guid isPermaLink="false">http://tiagosalvador.wordpress.com/2007/09/29/virtualbox-15-on-slackware-12/#comment-4</guid>
		<description>Good! Next step is try to write a new post every week. :)</description>
		<content:encoded><![CDATA[<p>Good! Next step is try to write a new post every week. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zim, the desktop wiki by Salem</title>
		<link>http://tiagosalvador.wordpress.com/2007/08/19/zim-the-desktop-wiki/#comment-2</link>
		<dc:creator>Salem</dc:creator>
		<pubDate>Tue, 21 Aug 2007 00:01:23 +0000</pubDate>
		<guid isPermaLink="false">http://tiagosalvador.wordpress.com/2007/08/19/zim-the-desktop-wiki/#comment-2</guid>
		<description>Wiki? What kind of nerd are you?
Real geeks keep their notes in a plain text file created with vi.
I suspect you&#039;ve lost your power due to your new hair style.
Shame on you.</description>
		<content:encoded><![CDATA[<p>Wiki? What kind of nerd are you?<br />
Real geeks keep their notes in a plain text file created with vi.<br />
I suspect you&#8217;ve lost your power due to your new hair style.<br />
Shame on you.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
