Originally posted by Shabakthanai
View Post
Code:
steven@Yeshuah-desktop:~$ find ~ -iname kwinrulesrc find: `/home/steven/.cache/dconf': Permission denied
Code:
steve@t520:~$ find ~ -iname kwinrulesrc /home/steve/.kde/share/config/kwinrulesrc steve@t520:~$
However: we have learned one thing that's a problem. If the command is unable to search inside a subdirectory, it will tell you why. In your case, there is a permissions problem with the ~/.cache/dconf subdirectory. Let's fix that. Please run the following command: sudo chown -R steven:steven ~/.cache/dconf
Code:
steven@Yeshuah-desktop:~$ sudo find ~ -iname kwinrulesrc [sudo] password for steven:
Generally, it's never right to augment instructions provided on the forum in this fashion. If someone advises to run command foo and it appears not to work, never attempt to force it to work by running sudo foo. Instead, just report back here what happened.
Code:
steven@Yeshuah-desktop:~$ kdesudo ~ -iname kwinrulesrc
Code:
steven@Yeshuah-desktop:~$ sudo ~-iname kwinrulesrc sudo: ~-iname: command not found
Comment