@Dude4Linux: A few notes:

- On my system, the root user is also affected by this bug. Your find command 
doesn't scan root's home directory, but can be easily modified.
- Find can detect certain permissions with the `-perm` flag. No need for pipes, 
xargs or a second sudo.

This command will list all instances of 'nautilus-actions' where the
'user' does not have 'read' permission:

sudo find /root /home -name 'nautilus-actions' -not -perm /u=r -ls

A similar command utilizing the `-exec` flag can also fix the problem.
Something like this should work, but I have not tested this well so be
warned:

sudo find /root /home -name 'nautilus-actions' -not -perm /u=r -ls -exec
chmod --verbose u+r {} \;

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1000543

Title:
  Odd permissions on $HOME/.config/nautilus-actions make the directory
  unreadable by the owner

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nautilus-actions/+bug/1000543/+subscriptions

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to