要在Ubuntu上实现TightVNC的多用户支持,可以按照以下步骤进行操作:
sudo apt-get update
sudo apt-get install tightvncserver
vncserver :1
会提示输入密码,然后设置密码即可。
sudo nano /etc/vnc.conf
在文件末尾添加以下内容:
VNCSERVERS="1:username"
VNCSERVERARGS[1]="-geometry 1024x768 -depth 24"
其中,1代表VNC的端口号,username代表要登录的用户名。
sudo systemctl restart vncserver
现在,您就可以使用不同的用户名和密码登录不同的VNC会话了。