Problems with User rights and write access after replacing /home directory

One example:
~/Desktop/*.desktop need to be executable
~/Downloads/* should never be executable

4 Likes

2 posts were split to a new topic: No, please don’t do this?

Here’s a snippet to fix permissions - making files non executable.

sudo chown USERNAME:USERNAME -r
find . -type f | sudo xargs -d'\n' chmod 600
find . -type d | sudo xargs -d'\n' chmod 700
1 Like

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.