ubuntu20.04安装vncserver

1.安装桌面环境和VNCServer

apt update
#ubuntu20上没有了vnc4server安装包,可以安装tightvncserver
apt install tightvncserver
#启动vncserver
vncserver

按照启动后的提示设置vncserver的密码
现在从VNCViewer连接之后的桌面是一片灰白,还需要配置一下vncserver的环境

2.环境配置

先安装图形所需内容

apt-get install gnome-panel gnome-settings-daemon metacity nautilus gnome-terminal

然后修改xstartup文件

#备份原来的配置文件
mv ~/.vnc/xstartup ~/.vnc/xstartup.bak
#编辑新的配置文件
vim ~/.vnc/xstartup

在xstartup中添加以下内容:


#!/bin/sh
 
# Uncomment the following two lines for normal desktop:
export XKL_XMODMAP_DISABLE=1
 unset SESSION_MANAGER
# exec /etc/X11/xinit/xinitrc
unset DBUS_SESSION_BUS_ADDRESS

xsetroot -solid grey
vncconfig -iconic&
gnome-panel &
gnmoe-settings-daemon &
metacity &
nautilus &
gnome-terminal &

设置文档权限

chmod +x ~/.vnc/xstartup

之后再次启动vncserver并通过VNC Viewer连接

你可能感兴趣的:(ubuntuvnc)