I am using a script to automatically set up a computer. I need to assign a password to the vnc server for the user, which is normally done using the vncserver
command. However, it prompts for the user to enter and re-enter their password, neither of which the script is capable of doing. So, how can I set up the VNC password without an interactive prompt?
Thanks.
I found another way of doing this in a script (as root):
Cheers!
Was able to do it this way today (from a dockerfile at least):
As far as I know, the vncserver command only prompts for a password if the password file (by default, $HOME/.vnc/passwd) is absent - typically the first time it's run for a particular user. You could either script that initial vncserver interaction using 'expect', or pre-create the user's password file by calling the vncpasswd utility via expect before you run vncserver for the first time; e.g. [CAUTION: this is absolutely minimal, you should add some sanity checks if this is used in a serious environment]
If you don't want to (or can't) use 'expect', then there are various hacks available on the web - VNC passwords apparently use a form of DES encryption so searching with the terms 'VNC' 'DES' 'password' should get you what you need (I'm not going to link here since I cannot vouch for any particular one).
For completeness, note that the default Ubuntu 'Desktop Sharing' uses vino, and the password for that appears to be simply base64 encoded, so it is possible to set it directly e.g.
Hope this helps
By slightly modifying steeldriver's version I was able to automate my usage of vncpasswd. Allows passing both the password and filename for vncpasswd to create.
Usage:
$ ./scriptname <filename> <password>
In Ansible (requires
pexpect
to be installed on target):