I need some help here. Is there a way to set the VNC password without a user interaction? When I run vncpasswd it prompts for a password and then verification of it. I would like to change the password from script. Is this possible?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 2 down vote accepted

I don't have vncserver, so reading the man page over the web and no way to test....

Have you tried writing the password twice to a temp file and using that as stdin to vncpasswd?

echo $password >/tmp/file
echo $password >>/tmp/file  # note >> for append
vncpasswd </tmp/file >/tmp/vncpasswd.1 2>/tmp/vncpasswd.2

That's for the bash shell. But the basic idea should be obvious. Prompting will wind up in the .1 file and errors in the .2 file

link|improve this answer
Gonna give it a try thanks! – poopa Feb 22 '10 at 7:35
Ran into the same problem, and this solution helped me. Thanks! – Michael Schmook May 4 at 9:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.