如何通过终端设置vino的密码?

如何通过终端设置vino的密码?

如何在 Ubuntu 18.04 中通过终端设置 vino 的密码?

这里它使用vino-passwd命令,但这给了我vino-passwd: command not found

答案1

我还没有在 18.04 上专门尝试过,但我过去曾成功使用 gsettings 来做到这一点:

gsettings set org.gnome.Vino vnc-password $(echo -n 'mypasswd'|base64)

Vino 的 Arch Wiki描述了一些可以使用 gsettings 修改的其他有用选项。我的标准设置是:

gsettings set org.gnome.Vino prompt-enabled false
gsettings set org.gnome.Vino authentication-methods "['vnc']"
gsettings set org.gnome.Vino require-encryption false
gsettings set org.gnome.Vino vnc-password $(echo -n 'mypasswd'|base64)
gsettings set org.gnome.settings-daemon.plugins.sharing active true
eths=$(nmcli -t -f uuid,type c s --active | grep 802 | awk -F  ":" '{ print "'\''" $1 "'\''" }' | paste -s -d, -)
gsettings set org.gnome.settings-daemon.plugins.sharing.service:/org/gnome/settings-daemon/plugins/sharing/vino-server/ enabled-connections "[ $eths ]"

再次强调,以上内容尚未在 18.04 上测试,因此您的里程可能会有所不同。

相关内容