<?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>David Nash &#187; find</title>
	<atom:link href="http://davidnash.com.au/tag/find/feed/" rel="self" type="application/rss+xml" />
	<link>http://davidnash.com.au</link>
	<description>Freelance PHP developer - builder of high-quality dynamic websites</description>
	<lastBuildDate>Sun, 25 Jul 2010 23:56:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Fixing Windows File Permissions in Linux</title>
		<link>http://davidnash.com.au/2009/02/fixing-windows-file-permissions-in-linux/</link>
		<comments>http://davidnash.com.au/2009/02/fixing-windows-file-permissions-in-linux/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 00:22:59 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[permissions]]></category>

		<guid isPermaLink="false">http://davidnash.com.au/?p=125</guid>
		<description><![CDATA[Find all files (not directories) and remove the eXecutable bit. I don&#8217;t know what the characters on the end do:
find . -type f -exec chmod a-x {} \;
Make all directories executable to user, read/writable to groups others (good for when the web server is in &#8216;others&#8217;):
find . -type d -exec chmod 755 {} \;
Make all [...]]]></description>
			<content:encoded><![CDATA[<p>Find all files (not directories) and remove the eXecutable bit. I don&#8217;t know what the characters on the end do:<br />
<code>find . -type f -exec chmod a-x {} \;</code></p>
<p>Make all directories executable to user, read/writable to groups others (good for when the web server is in &#8216;others&#8217;):<br />
<code>find . -type d -exec chmod 755 {} \;</code></p>
<p>Make all files read/write/executable for user, readable for the group and others:<br />
<code>find . -type f -exec chmod 644 {} \;</code></p>



Share:


	<a rel="nofollow" target="_blank" href="http://del.icio.us/post?url=http%3A%2F%2Fdavidnash.com.au%2F2009%2F02%2Ffixing-windows-file-permissions-in-linux%2F&amp;title=Fixing%20Windows%20File%20Permissions%20in%20Linux" title="del.icio.us"><img src="http://davidnash.com.au/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdavidnash.com.au%2F2009%2F02%2Ffixing-windows-file-permissions-in-linux%2F&amp;t=Fixing%20Windows%20File%20Permissions%20in%20Linux" title="Facebook"><img src="http://davidnash.com.au/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdavidnash.com.au%2F2009%2F02%2Ffixing-windows-file-permissions-in-linux%2F&amp;title=Fixing%20Windows%20File%20Permissions%20in%20Linux" title="Google"><img src="http://davidnash.com.au/wp-content/plugins/sociable/images/googlebookmark.png" title="Google" alt="Google" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="mailto:?subject=Fixing%20Windows%20File%20Permissions%20in%20Linux&amp;body=http%3A%2F%2Fdavidnash.com.au%2F2009%2F02%2Ffixing-windows-file-permissions-in-linux%2F" title="E-mail this story to a friend!"><img src="http://davidnash.com.au/wp-content/plugins/sociable/images/email_link.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fdavidnash.com.au%2F2009%2F02%2Ffixing-windows-file-permissions-in-linux%2F" title="Technorati"><img src="http://davidnash.com.au/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow" target="_blank" href="http://twitter.com/home?status=http%3A%2F%2Fdavidnash.com.au%2F2009%2F02%2Ffixing-windows-file-permissions-in-linux%2F" title="TwitThis"><img src="http://davidnash.com.au/wp-content/plugins/sociable/images/twitter.gif" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://davidnash.com.au/2009/02/fixing-windows-file-permissions-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
