码迷,mamicode.com
首页 > 其他好文 > 详细

放弃 Tightvnc, 选择 Tigervnc

时间:2018-02-08 19:57:08      阅读:473      评论:0      收藏:0      [点我收藏+]

标签:ted   ecif   types   设置   问题   div   etc   原来   xfce   

构建headless vnc server ,我终于放弃了Tightvnc

基于以下原因

1) 已知的Qt5的键盘映射问题,导致virtualbox 的使用出现困难

https://unix.stackexchange.com/questions/346107/keyboard-mapping-wrong-only-in-specific-applications-under-tightvnc

2) tightvnc 已经好久没有更新了

 

替换的方法:


1) 移除原有的关于 tightvnc 的设置

      a) apt-get remove tightvncserver

      b) /etc/rc.local 里,把原来的设置去掉。 这回我们要用systemd了

#su oracle  -c "vncserver -geometry 1600x900 -alwaysshared :0"

      c) xstartup 文件,似乎可以简化成如下

#!/bin/bash
xrdb $HOME/.Xresources
startxfce4 &

 

2 ) 安装 Tiger Vnc

 a) 官网上的1.8版本,只有现成的 二进制版本,没有 deb 也没有 apt的仓库

cp -r user /

 b) ~/.vnc/config 文件

securitytypes=vncauth,tlsvnc
desktop=breeze-desk
geometry=1600x900
# localhost
alwaysshared

3 ) 安装到 systemd

  a) /etc/systemd/system/tigervncserver.service

[Unit]
Description=Start TigerVNC server at startup
After=syslog.target network.target

[Service]
Type=forking
User=oracle
PAMName=login
PIDFile=/home/oracle/.vnc/%H:0.pid
ExecStartPre=-/usr/bin/vncserver -kill :0 > /dev/null 2>&1
ExecStart=/usr/bin/vncserver -depth 24 -geometry 1600x900 :0
ExecStop=/usr/bin/vncserver -kill :0

[Install]
WantedBy=multi-user.target

  b) 

sudo systemctl daemon-reload

  c)

sudo systemctl enable tigervncserver.service

  d)

sudo systemctl start tigervncserver

参考:

https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-vnc-on-ubuntu-16-04

 

放弃 Tightvnc, 选择 Tigervnc

标签:ted   ecif   types   设置   问题   div   etc   原来   xfce   

原文地址:https://www.cnblogs.com/johnsonshu/p/8432307.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!