<?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: Fixing Mac OSX File Permissions and ACLs From the Command Line</title>
	<atom:link href="http://backdrift.org/fixing-mac-osx-file-permissions-and-acls-from-the-command-line/feed" rel="self" type="application/rss+xml" />
	<link>http://backdrift.org/fixing-mac-osx-file-permissions-and-acls-from-the-command-line</link>
	<description></description>
	<lastBuildDate>Sat, 21 Jan 2012 13:22:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: John</title>
		<link>http://backdrift.org/fixing-mac-osx-file-permissions-and-acls-from-the-command-line/comment-page-1#comment-986</link>
		<dc:creator>John</dc:creator>
		<pubDate>Thu, 05 Jan 2012 22:04:40 +0000</pubDate>
		<guid isPermaLink="false">http://backdrift.org/?p=346#comment-986</guid>
		<description>that was exactly what I needed!  I had restored from a Time Machine backup and was everything looked OK on permissions, but I could not delete a file without an username and password prompt.  It turns out deny delete was on.  Removing the ACL was exactly the thing that worked.  I used the chmod -R -N command on each folder in my home directory.  Thank you!</description>
		<content:encoded><![CDATA[<p>that was exactly what I needed!  I had restored from a Time Machine backup and was everything looked OK on permissions, but I could not delete a file without an username and password prompt.  It turns out deny delete was on.  Removing the ACL was exactly the thing that worked.  I used the chmod -R -N command on each folder in my home directory.  Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Locked Files in Mac OS X &#124; 603</title>
		<link>http://backdrift.org/fixing-mac-osx-file-permissions-and-acls-from-the-command-line/comment-page-1#comment-983</link>
		<dc:creator>Locked Files in Mac OS X &#124; 603</dc:creator>
		<pubDate>Thu, 08 Dec 2011 14:27:28 +0000</pubDate>
		<guid isPermaLink="false">http://backdrift.org/?p=346#comment-983</guid>
		<description>[...] Your file may have an ACL that prevents writing by the current user. To view ACLs for a file, issue ls -le. Use chmod to modify ACLs. Run chmod -N to remove the ACL. [...]</description>
		<content:encoded><![CDATA[<p>[...] Your file may have an ACL that prevents writing by the current user. To view ACLs for a file, issue ls -le. Use chmod to modify ACLs. Run chmod -N to remove the ACL. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://backdrift.org/fixing-mac-osx-file-permissions-and-acls-from-the-command-line/comment-page-1#comment-982</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Mon, 28 Nov 2011 21:55:01 +0000</pubDate>
		<guid isPermaLink="false">http://backdrift.org/?p=346#comment-982</guid>
		<description>Rather than deleting the ACL in its entirety, I chose to give myself more specific permissions for the file.  In my case .ssh/config had these settings:

&lt;pre&gt;
green:.ssh ben$ ls -le
-rw-r--r--@ 1 ben  staff    73 Sep 14 10:23 config
 0: group:everyone deny write,delete,append,writeattr,writeextattr,chown
&lt;/pre&gt;

I ran &lt;code&gt;chmod +a# 0  &quot;ben allow write&quot; config&lt;/code&gt;, after which I could modify the file.  The permissions finally look like this:

&lt;pre&gt;
green:.ssh ben$ ls -le config 
-rw-r--r--@ 1 ben  staff  73 Sep 14 10:23 config
 0: user:ben allow write
 1: group:everyone deny write,delete,append,writeattr,writeextattr,chown
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Rather than deleting the ACL in its entirety, I chose to give myself more specific permissions for the file.  In my case .ssh/config had these settings:</p>
<pre>
green:.ssh ben$ ls -le
-rw-r--r--@ 1 ben  staff    73 Sep 14 10:23 config
 0: group:everyone deny write,delete,append,writeattr,writeextattr,chown
</pre>
<p>I ran <code>chmod +a# 0  "ben allow write" config</code>, after which I could modify the file.  The permissions finally look like this:</p>
<pre>
green:.ssh ben$ ls -le config
-rw-r--r--@ 1 ben  staff  73 Sep 14 10:23 config
 0: user:ben allow write
 1: group:everyone deny write,delete,append,writeattr,writeextattr,chown
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keith</title>
		<link>http://backdrift.org/fixing-mac-osx-file-permissions-and-acls-from-the-command-line/comment-page-1#comment-976</link>
		<dc:creator>Keith</dc:creator>
		<pubDate>Wed, 19 Oct 2011 01:34:41 +0000</pubDate>
		<guid isPermaLink="false">http://backdrift.org/?p=346#comment-976</guid>
		<description>@Erin, you could add the -R (recursive) flag to chmod which will update anything below the current directory.  For instance if your problem files are located in /Volumes/foo you could run this:
&lt;code&gt;
chmod -R -N /Volumes/foo 
&lt;/code&gt;
However, if you&#039;re dealing with system files, you may want to be a bit more clever and script something to enumerate the list of files with broken permissions and loop through them individually.</description>
		<content:encoded><![CDATA[<p>@Erin, you could add the -R (recursive) flag to chmod which will update anything below the current directory.  For instance if your problem files are located in /Volumes/foo you could run this:<br />
<code><br />
chmod -R -N /Volumes/foo<br />
</code><br />
However, if you&#8217;re dealing with system files, you may want to be a bit more clever and script something to enumerate the list of files with broken permissions and loop through them individually.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erin</title>
		<link>http://backdrift.org/fixing-mac-osx-file-permissions-and-acls-from-the-command-line/comment-page-1#comment-975</link>
		<dc:creator>Erin</dc:creator>
		<pubDate>Wed, 19 Oct 2011 01:26:05 +0000</pubDate>
		<guid isPermaLink="false">http://backdrift.org/?p=346#comment-975</guid>
		<description>This was a really useful post! After using Migration Assistant in Lion, I did what I could to move all my files from the user account created via MA to my user account when I set up my system. Of course, I was getting prompted by Finder to move any of the files from the old user - super annoying!

I tested using chmod -N fixed on one of my files and sure enough, it does the trick! Unfortunately I have a *ton* of files that have this problem.

Is there any kind of shortcut or guidance you could give in order to do this for multiple (i.e. thousands of) files?

Thanks so much for the great article!</description>
		<content:encoded><![CDATA[<p>This was a really useful post! After using Migration Assistant in Lion, I did what I could to move all my files from the user account created via MA to my user account when I set up my system. Of course, I was getting prompted by Finder to move any of the files from the old user &#8211; super annoying!</p>
<p>I tested using chmod -N fixed on one of my files and sure enough, it does the trick! Unfortunately I have a *ton* of files that have this problem.</p>
<p>Is there any kind of shortcut or guidance you could give in order to do this for multiple (i.e. thousands of) files?</p>
<p>Thanks so much for the great article!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pedro Maldonado</title>
		<link>http://backdrift.org/fixing-mac-osx-file-permissions-and-acls-from-the-command-line/comment-page-1#comment-360</link>
		<dc:creator>Pedro Maldonado</dc:creator>
		<pubDate>Wed, 30 Jun 2010 18:06:00 +0000</pubDate>
		<guid isPermaLink="false">http://backdrift.org/?p=346#comment-360</guid>
		<description>This post is wonderful! Just cleared up an issue with Parallels and a backup from TimeMachine just like you described!  Thank you!</description>
		<content:encoded><![CDATA[<p>This post is wonderful! Just cleared up an issue with Parallels and a backup from TimeMachine just like you described!  Thank you!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- This Quick Cache file was built for (  backdrift.org/fixing-mac-osx-file-permissions-and-acls-from-the-command-line/feed ) in 0.36222 seconds, on Feb 5th, 2012 at 2:55 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 5th, 2012 at 3:55 pm UTC -->
