diff --git a/Software/System/Linux/Editions/Ubuntu/Ubuntu14/Ubuntu14_开启_VNC_服务.md b/Software/System/Linux/Editions/Ubuntu/Ubuntu14/Ubuntu14_开启_VNC_服务.md index 1d879d5..c040b7f 100644 --- a/Software/System/Linux/Editions/Ubuntu/Ubuntu14/Ubuntu14_开启_VNC_服务.md +++ b/Software/System/Linux/Editions/Ubuntu/Ubuntu14/Ubuntu14_开启_VNC_服务.md @@ -6,12 +6,18 @@ # VNC Server apt-get install vnc4server # Xfce4 -apt-get install xinit lightdm xubuntu-desktop xubuntu-default-settings xubuntu-artwork xubuntu-icon-theme +apt-get install xinit lightdm xubuntu-desktop ``` ## 2.配置 -可通过编辑 ~/.vnc/xstartup 文件实现对 vnc 服务的配置。 +首先确保 ~/.vnc/xstartup 文件具有可执行权限: + +```bash +chmod u+x ~/.vnc/xstartup +``` + +然后可通过编辑 ~/.vnc/xstartup 文件实现对 vnc 服务的配置。 ### 2.1.Xfce4 @@ -36,6 +42,7 @@ x-session-manager & xfdesktop & xfce4-panel & xfsettingsd & xfwm4 & # 设置 VNC 访问密码 vncpasswd # 开启 VNC 服务 +export USER= vncserver :1 -geometry 1920x1080 -depth 24 # 停止 VNC 服务 vncserver -kill :1 diff --git a/Software/System/Linux/Editions/Ubuntu/Ubuntu20/Ubuntu20_开启_VNC_服务.md b/Software/System/Linux/Editions/Ubuntu/Ubuntu20/Ubuntu20_开启_VNC_服务.md index a3d931f..8e1ff34 100644 --- a/Software/System/Linux/Editions/Ubuntu/Ubuntu20/Ubuntu20_开启_VNC_服务.md +++ b/Software/System/Linux/Editions/Ubuntu/Ubuntu20/Ubuntu20_开启_VNC_服务.md @@ -1,35 +1,49 @@ # Ubuntu20 开启 VNC 服务 -TODO: 还没有验证通过 - ## 1.安装 ```bash # VNC Server -apt-get install tigervnc-standalone-server -# Cinnamon -apt-get install xinit lightdm cinnamon cinnamon-common cinnamon-control-center cinnamon-core cinnamon-session +apt install tightvncserver +# Mate +apt install ubuntu-mate-desktop +# Xfce +apt install xubuntu-desktop ``` ## 2.配置 -可通过编辑 ~/.vnc/xstartup 文件实现对 vnc 服务的配置。 +首先确保 ~/.vnc/xstartup 文件具有可执行权限: -### 2.1.Cinnamon +```bash +chmod u+x ~/.vnc/xstartup +``` -针对 Cinnamon 的配置如下: +然后可通过编辑 ~/.vnc/xstartup 文件实现对 vnc 服务的配置。 + +### 2.1.Mate + +针对 Mate 的配置如下: ```ini #!/bin/sh unset SESSION_MANAGER unset DBUS_SESSION_BUS_ADDRESS -# For Cinnamon -exec dbus-launch cinnamon-session -# For Xfce -#exec dbus-launch xfce4-session -# For GNOME -#exec dbus-launch gnome-session +# For Mate Desktop +exec mate-session & +# For Cinnamon Desktop +#exec cinnamon-session & +# For Xfce Desktop +#exec xfce4-session & +# For GNOME Desktop +#exec gnome-session & +``` + +使用 VNC 远程连接到 Mate 桌面后,由于无法渲染阴影导致窗口边缘区域存在黑边,此时通过 Mate Tweak 工具修改下设置就好。 + +```blk +Mate Tweak->Windows->Window manager->Marco(No Compositor) ``` ## 3.使用 @@ -38,6 +52,7 @@ exec dbus-launch cinnamon-session # 设置 VNC 访问密码 vncpasswd # 开启 VNC 服务 +export USER= vncserver :1 -geometry 1920x1080 -depth 24 # 停止 VNC 服务 vncserver -kill :1