We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hello, i want to run on my raspberry 3 with raspbian processing 3.3.6. After the flawless installation (curl hhtps://processing.org/download/install-arm.sh | sudo sh), i get the start of processing (whether by start over terminal or menu) following error: "Could not save the Preference File".
What is the problem there. Thanks
Answers
@merida That's odd? You're using a stock (full) Raspbian distribution? Are you running as the default "pi" user?
What's the output when you do
ls -l ~/.processing/preferences.txt
? (Also try with~/.processing
and~
.)Thank you for the answer.
Yes, i use stock (full) raspbian distribution und yes i running as the default "pi" user.
output:
If I switch to root with "sudo su", the error message does not come anymore.
But does not that quite right "rw" does not mean that other users (even pi) have write permissions?
What should I change to start "processing" under pi correctly?
You must have executed Processing as root the the firs time it was run. This created a
preferences.txt
, which your normal user can't modify any longer.Delete your preferences by executing
sudo rm -Rf /home/pi/.processing
.