Thread: Wierd Crash
View Single Post
spanner's Avatar
Posts: 253 | Thanked: 184 times | Joined on Nov 2009 @ Bristol, UK
#10
Originally Posted by Figa View Post
As user.
drwxr-xr-x 2 root root 4096 Mar 1 18:35 /home/usr/.app
The ls output shows that you have created the directory /home/usr/.app (and the files within it) as root. So neither the directory, nor the files in it, have write access for 'user'.

if you do
Code:
chown -R user.user /home/usr/.app
to change ownership of the files, you'll find that 'user' now has access to them.

Originally Posted by Figa View Post
THX /home/user/.app is better?
Yes, much better. That's the normal place to put application config information, and it goes on the same partition as /opt, so it doesn't use space on the root filesystem.