tried the following commands from the link to regain access rights of my userfolder
You can verify this with:
$ find ~/ -mount ! -user $(whoami)
You can correct this with:
$ sudo chown -R $(whoami):$(whoami) ~/
And I get the results:
username@username:~$ find ~/ -mount ! -user $(whoami)
find: "/home/username/.gvfs": Keine Berechtigung
/home/username/.gvfs
username@username:~$ sudo chown -R $(whoami):$(whoami) ~/
chown: der Eigentümer von '/home/username/.gvfs' wird geändert: Die angeforderte Funktion ist nicht implementiert
How can I resolve the issue?
Similar: Firefox only runs with `sudo`