<?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"
	>
<channel>
	<title>Comments on: .Trashes, .fseventsd, and .Spotlight-V100</title>
	<atom:link href="http://hostilefork.com/2009/12/02/trashes-fseventsd-and-spotlight-v100/feed/" rel="self" type="application/rss+xml" />
	<link>http://hostilefork.com/2009/12/02/trashes-fseventsd-and-spotlight-v100/</link>
	<description>a disgruntled developer taking a stand in the information multiverse</description>
	<pubDate>Fri, 24 May 2013 12:54:44 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>By: Michael</title>
		<link>http://hostilefork.com/2009/12/02/trashes-fseventsd-and-spotlight-v100/#comment-1345</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Tue, 09 Apr 2013 03:17:12 +0000</pubDate>
		<guid isPermaLink="false">http://hostilefork.com/?p=129#comment-1345</guid>
		<description>Hi, everyone!
First of all, I'd like to mention that I'm NOT a confident user and that's why I want to draw the audience's attention to the unanswered question:

If these files are already on the removable drive, can they just be deleted without causing any corruption, or is there a specific process to remove them?

I have those files on my removable drive and know for sure that they are not to be removed without a specific procedure. Would appreciate the detailed description of what I have to do.</description>
		<content:encoded><![CDATA[<p>Hi, everyone!<br />
First of all, I&#8217;d like to mention that I&#8217;m NOT a confident user and that&#8217;s why I want to draw the audience&#8217;s attention to the unanswered question:</p>
<p>If these files are already on the removable drive, can they just be deleted without causing any corruption, or is there a specific process to remove them?</p>
<p>I have those files on my removable drive and know for sure that they are not to be removed without a specific procedure. Would appreciate the detailed description of what I have to do.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://hostilefork.com/2009/12/02/trashes-fseventsd-and-spotlight-v100/#comment-1342</link>
		<dc:creator>John</dc:creator>
		<pubDate>Thu, 21 Mar 2013 16:45:08 +0000</pubDate>
		<guid isPermaLink="false">http://hostilefork.com/?p=129#comment-1342</guid>
		<description>Can you write a create a file called .metadata_never_index in the root directory of the removable drive in the MAC because Windows XP will not let you - It has to have a filename. But you can create a *directory* that starts with a dot in Windows.</description>
		<content:encoded><![CDATA[<p>Can you write a create a file called .metadata_never_index in the root directory of the removable drive in the MAC because Windows XP will not let you - It has to have a filename. But you can create a *directory* that starts with a dot in Windows.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gary Taylor</title>
		<link>http://hostilefork.com/2009/12/02/trashes-fseventsd-and-spotlight-v100/#comment-1338</link>
		<dc:creator>Gary Taylor</dc:creator>
		<pubDate>Tue, 12 Feb 2013 23:17:02 +0000</pubDate>
		<guid isPermaLink="false">http://hostilefork.com/?p=129#comment-1338</guid>
		<description>Not using my macbook for development anymore, will NOT work with a company that uses macbooks. Got my USB drive back and had to erase around 4000ish useless 4k files off my 1T drive, it was like i didn't even recognize the drive anymore. If your company uses macbooks and requires you to plug in my usb drive to do whatever task you are paid to do.. you just lost my business..</description>
		<content:encoded><![CDATA[<p>Not using my macbook for development anymore, will NOT work with a company that uses macbooks. Got my USB drive back and had to erase around 4000ish useless 4k files off my 1T drive, it was like i didn&#8217;t even recognize the drive anymore. If your company uses macbooks and requires you to plug in my usb drive to do whatever task you are paid to do.. you just lost my business..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: porg</title>
		<link>http://hostilefork.com/2009/12/02/trashes-fseventsd-and-spotlight-v100/#comment-1333</link>
		<dc:creator>porg</dc:creator>
		<pubDate>Wed, 09 Jan 2013 12:55:37 +0000</pubDate>
		<guid isPermaLink="false">http://hostilefork.com/?p=129#comment-1333</guid>
		<description>Sadly the big software companies tend to enforce a culture of opt-out rather than opt-in, as other example show, i.e. Google's automatic WLAN SSID indexing except if YOU put "_nomap" at the end of your SSID.</description>
		<content:encoded><![CDATA[<p>Sadly the big software companies tend to enforce a culture of opt-out rather than opt-in, as other example show, i.e. Google&#8217;s automatic WLAN SSID indexing except if YOU put &#8220;_nomap&#8221; at the end of your SSID.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: M Nicole</title>
		<link>http://hostilefork.com/2009/12/02/trashes-fseventsd-and-spotlight-v100/#comment-1332</link>
		<dc:creator>M Nicole</dc:creator>
		<pubDate>Tue, 25 Dec 2012 00:35:55 +0000</pubDate>
		<guid isPermaLink="false">http://hostilefork.com/?p=129#comment-1332</guid>
		<description>Thanks a lot for this tip !
It's now some time that I cannot accept longer this ugly stuff !
Hope there is "macports" with this apple system :-(

Here is a script I made immediately (tested; but simple), if it can avoid some minutes of work for others...

--- script begin ---

#!/bin/sh
#
# Tip for putting off those apple ugly shitty dirs
# ( .Spotlight-V100 / .Trashes / .fseventsd )
#
# Change to the concerned directory for running this script


dir1="./.Spotlight-V100"
dir2="./.Trashes"
dir3="./.fseventsd"

tag1=".metadata_never_index"
tag2=".Trashes"
tag3="no_log"


echo "Removing recursively dirs [$dir1, $dir2, $dir3] ..."
rm -rf $dir1 $dir2 $dir3


# -- spotlight off
#
touch $tag1
echo "Tagfile [$tag1] created."

# -- trash off
#
touch $tag2
echo "Tagfile [$tag2] created."

# -- fseventsd off
#
mkdir $dir3 &#38;&#38; touch $dir3/$tag3 &#38;&#38; \
    (echo "Tagfile [$dir3/$tag3] created.") &#124;&#124; \
    (echo "ERROR tagfile [$dir3/$tag3] "; exit 1)


chmod 400 $tag1 $tag2 $dir3/$tag3

#

--- script end ---</description>
		<content:encoded><![CDATA[<p>Thanks a lot for this tip !<br />
It&#8217;s now some time that I cannot accept longer this ugly stuff !<br />
Hope there is &#8220;macports&#8221; with this apple system <img src='http://hostilefork.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<p>Here is a script I made immediately (tested; but simple), if it can avoid some minutes of work for others&#8230;</p>
<p>&#8212; script begin &#8212;</p>
<p>#!/bin/sh<br />
#<br />
# Tip for putting off those apple ugly shitty dirs<br />
# ( .Spotlight-V100 / .Trashes / .fseventsd )<br />
#<br />
# Change to the concerned directory for running this script</p>
<p>dir1=&#8221;./.Spotlight-V100&#8243;<br />
dir2=&#8221;./.Trashes&#8221;<br />
dir3=&#8221;./.fseventsd&#8221;</p>
<p>tag1=&#8221;.metadata_never_index&#8221;<br />
tag2=&#8221;.Trashes&#8221;<br />
tag3=&#8221;no_log&#8221;</p>
<p>echo &#8220;Removing recursively dirs [$dir1, $dir2, $dir3] &#8230;&#8221;<br />
rm -rf $dir1 $dir2 $dir3</p>
<p># &#8212; spotlight off<br />
#<br />
touch $tag1<br />
echo &#8220;Tagfile [$tag1] created.&#8221;</p>
<p># &#8212; trash off<br />
#<br />
touch $tag2<br />
echo &#8220;Tagfile [$tag2] created.&#8221;</p>
<p># &#8212; fseventsd off<br />
#<br />
mkdir $dir3 &amp;&amp; touch $dir3/$tag3 &amp;&amp; \<br />
    (echo &#8220;Tagfile [$dir3/$tag3] created.&#8221;) || \<br />
    (echo &#8220;ERROR tagfile [$dir3/$tag3] &#8220;; exit 1)</p>
<p>chmod 400 $tag1 $tag2 $dir3/$tag3</p>
<p>#</p>
<p>&#8212; script end &#8212;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nostalgia</title>
		<link>http://hostilefork.com/2009/12/02/trashes-fseventsd-and-spotlight-v100/#comment-1318</link>
		<dc:creator>Nostalgia</dc:creator>
		<pubDate>Mon, 05 Nov 2012 01:35:10 +0000</pubDate>
		<guid isPermaLink="false">http://hostilefork.com/?p=129#comment-1318</guid>
		<description>Now, for anyone defending those damn mac files, keep in mind that I don't have a mac, and I don't want one putting any file on my flash drive unless it's told to do so by a user.  Another interesting bug you overlooked, the mac also, for some strange reason known only to Steve Jobs and sea slugs, changes the icon of the flash drive to some messed up file folder.  I don't want my friends' computers to do this to my flash drive.  The reason as to why Steve Jobs has had to counter every innovation he made with the lack of a windows innovation  (i.e. mouse pointer speed precision), I do not know.  I also do not understand why Macs have to alienate themselves from windows machines, a move that can only work if you control the better halves of both the market and the software (Macs do not dominate either of these fields).  Mistaking my flash drive as a porcelain throne is just another reason I can't stand those damn macs.</description>
		<content:encoded><![CDATA[<p>Now, for anyone defending those damn mac files, keep in mind that I don&#8217;t have a mac, and I don&#8217;t want one putting any file on my flash drive unless it&#8217;s told to do so by a user.  Another interesting bug you overlooked, the mac also, for some strange reason known only to Steve Jobs and sea slugs, changes the icon of the flash drive to some messed up file folder.  I don&#8217;t want my friends&#8217; computers to do this to my flash drive.  The reason as to why Steve Jobs has had to counter every innovation he made with the lack of a windows innovation  (i.e. mouse pointer speed precision), I do not know.  I also do not understand why Macs have to alienate themselves from windows machines, a move that can only work if you control the better halves of both the market and the software (Macs do not dominate either of these fields).  Mistaking my flash drive as a porcelain throne is just another reason I can&#8217;t stand those damn macs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Allen Huffman</title>
		<link>http://hostilefork.com/2009/12/02/trashes-fseventsd-and-spotlight-v100/#comment-1313</link>
		<dc:creator>Allen Huffman</dc:creator>
		<pubDate>Mon, 24 Sep 2012 13:41:02 +0000</pubDate>
		<guid isPermaLink="false">http://hostilefork.com/?p=129#comment-1313</guid>
		<description>I have been fighting these files for several years now. When I plug in an UltraProjector (solid state projector, www.ultraprojector.com), the Mac put those files there and the stupid ROCKCHIP player hardware in this projector just locks up. Because of this, making these files would probably not help.

But, the Eject to Windows can simplify the command-line "rm" option I have been using to kill the ".*" files.

I am glad I found this post -- I am in the process of documenting how to use the UltraProjector on a Mac, and I fear my list of Terminal commands might have been a bit overwhelming to casual users :)</description>
		<content:encoded><![CDATA[<p>I have been fighting these files for several years now. When I plug in an UltraProjector (solid state projector, <a href="http://www.ultraprojector.com" rel="nofollow" target="_blank" class="liexternal">http://www.ultraprojector.com</a>), the Mac put those files there and the stupid ROCKCHIP player hardware in this projector just locks up. Because of this, making these files would probably not help.</p>
<p>But, the Eject to Windows can simplify the command-line &#8220;rm&#8221; option I have been using to kill the &#8220;.*&#8221; files.</p>
<p>I am glad I found this post &#8212; I am in the process of documenting how to use the UltraProjector on a Mac, and I fear my list of Terminal commands might have been a bit overwhelming to casual users <img src='http://hostilefork.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elvis</title>
		<link>http://hostilefork.com/2009/12/02/trashes-fseventsd-and-spotlight-v100/#comment-1308</link>
		<dc:creator>Elvis</dc:creator>
		<pubDate>Thu, 09 Aug 2012 19:13:37 +0000</pubDate>
		<guid isPermaLink="false">http://hostilefork.com/?p=129#comment-1308</guid>
		<description>When I use the lock switch on a SD card, OS/X freezes as soon as I plug the card in. Then the computer will not work until it is turned off and back on again</description>
		<content:encoded><![CDATA[<p>When I use the lock switch on a SD card, OS/X freezes as soon as I plug the card in. Then the computer will not work until it is turned off and back on again</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anthony</title>
		<link>http://hostilefork.com/2009/12/02/trashes-fseventsd-and-spotlight-v100/#comment-1306</link>
		<dc:creator>Anthony</dc:creator>
		<pubDate>Wed, 18 Jul 2012 21:10:17 +0000</pubDate>
		<guid isPermaLink="false">http://hostilefork.com/?p=129#comment-1306</guid>
		<description>"If you want to stop this from happening, you have to put some special files on that disk before you plug it in."

Um, catch-22 anyone?</description>
		<content:encoded><![CDATA[<p>&#8220;If you want to stop this from happening, you have to put some special files on that disk before you plug it in.&#8221;</p>
<p>Um, catch-22 anyone?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: André</title>
		<link>http://hostilefork.com/2009/12/02/trashes-fseventsd-and-spotlight-v100/#comment-1302</link>
		<dc:creator>André</dc:creator>
		<pubDate>Fri, 22 Jun 2012 17:10:30 +0000</pubDate>
		<guid isPermaLink="false">http://hostilefork.com/?p=129#comment-1302</guid>
		<description>Take a look at Eject for Windows. Eject for Windows is a small application for Mac OS X that removes hidden files in a USB flash drive mounted on your Desktop and eject it. 

http://www011.upp.so-net.ne.jp/decafish/EjectForWindows/EjectForWindowsE.html</description>
		<content:encoded><![CDATA[<p>Take a look at Eject for Windows. Eject for Windows is a small application for Mac OS X that removes hidden files in a USB flash drive mounted on your Desktop and eject it. </p>
<p><a href="http://www011.upp.so-net.ne.jp/decafish/EjectForWindows/EjectForWindowsE.html" rel="nofollow" target="_blank" class="liexternal">http://www011.upp.so-net.ne.jp/decafish/EjectForWindows/EjectForWindowsE.html</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
