[quote="luddwig27, post:30, topic:1905, full:true]
devel-su -c kill -9 $(ps aux | grep .*android\.hardware.camera.* | tr -s ' ' | cut -f2 -d' '); killall -r .*camera.*;
I got the error:
kill: sending signal to 22552 failed: No process found
cameraserver(8354): Opteration not permitted
.*camera.*: no process found
[/quote]
I wrote above command from memory.
Both kill needs to be executed as root!
So better to do devel-su first and then issue both commands.
As one-liner (updated):
devel-su; kill -9 $(ps aux | grep .*android\.hardware\.camera.* | grep -v grep | tr -s ' ' | cut -f2 -d' ') || kill -9 $(ps aux | grep .*android\.hardware\.camera.* | grep -v grep | tr -s ' ' | cut -f3 -d' '); killall -r .*camera.*; echo done; exit
Good, so android can server is/was the culprit.
No idea, this is up to @Jolla!
(I still believe in bad menory management or misuage from Android side…)