Thursday, November 7, 2013

For Navigatrix users of the WeatherWizard

Apparently, the soft has been installed as root, and some write permissions are not granted to everyone.
That makes it difficult to write on the file system, like when downloading a file!
To fix that, you need to go to a Console, and enter the following commands:
 Prompt> cd /opt/WeatherWizard
 Prompt> sudo find . -name '*' -exec chown $USER {} \;
You might as well change the group of the same files. If your group is "mygrp", then just type:
 Prompt> cd /opt/WeatherWizard
 Prompt> sudo find . -name '*' -exec chgrp mygrp {} \;
Be careful, all characters are important.
That's a bit cryptic, but that should work!

No comments: