1.安装tiger vnc server
使用下面的 apt 命令安装 TigerVNC 服务器软件包。
sudo apt update
sudo apt install tigervnc-standalone-server
输入 Y 进行确认,然后按回车键继续安装。现在安装将开始。
2.初始化 VNC 服务器
切换到需要使用的用户
cd username
使用以下命令初始化 VNC 服务器配置。命令行 vncserver 可用于管理 VNC 服务器配置,包括初始化、检查状态、设置启动脚本等。
vncserver
输入密码后,选n不设置只读用户
如果需要修改密码
vncpasswd
3. 配置vnc服务
vncserver -kill :1
安装gnome组件
sudo apt install gnome-session gnome-terminal ubuntu-desktop
新建~/.vnc/xstartup文件以在开机时运行桌面环境
nano ~/.vnc/xstartup
#!/bin/sh
# Start up the standard system desktop
unset SESSION_MANAGER
unset DBUS_SESSION_BUS_ADDRESS/usr/bin/gnome-session
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
x-window-manager &
添加权限
chmod +x ~/.vnc/xstartup
再次启动
vncserver -localhost no :1
查看已启动进程
vncserver -list
结束进程
vncserver -kill :1
4. 添加用户
sudo vim /etc/tigervnc/vncserver.users
加入
:1=username