Tag: vnc

  • 如何在ubuntu16上安装google chrome浏览器

    如何在ubuntu16上安装google chrome浏览器

    apt-get update & apt-get -y upgrade apt-get install xfce4 xfce4-goodies gnome-icon-theme tightvncserver adduser vnc apt-get install sudo gpasswd -a vnc sudo su – vnc vncserver vi /usr/local/bin/myvncserver #!/bin/bash PATH=”$PATH:/usr/bin/” DISPLAY=”1″ DEPTH=”16″ GEOMETRY=”1024×768″ OPTIONS=”-depth ${DEPTH} -geometry ${GEOMETRY} :${DISPLAY}” case “$1” in start) /usr/bin/vncserver ${OPTIONS} ;; stop) /usr/bin/vncserver -kill :${DISPLAY} ;; restart) $0 stop $0 start ;;…

  • 解决vnc不能复制粘贴问题

    解决vnc不能复制粘贴问题

    上篇文章是如何在debian8上安装vnc服务,大家可以看看: How to Install Google Chrome Web Browser on Ubuntu 18.04 安装谷歌浏览器chrome 但是有个问题,本地文本不能通过vnc客户端复制粘贴到vnc界面里,下面解决这个问题: 安装autocutsel sudo apt-get install autocutsel 打开vnc用户目录下.vnc/xstartup,添加 autocutsel -fork vnc@vultr:~/.vnc$ pwd /home/vnc/.vnc vnc@vultr:~/.vnc$ cat xstartup #!/bin/sh xrdb $HOME/.Xresources xsetroot -solid grey autocutsel -fork #x-terminal-emulator -geometry 80×24+10+10 -ls -title “$VNCDESKTOP Desktop” & #x-window-manager & # Fix to make GNOME work export XKL_XMODMAP_DISABLE=1 /etc/X11/Xsession 好了,重启服务: sudo…

  • How To Set Up VNC Server on Debian 8 如何在Debian8上安装vnc服务

    How To Set Up VNC Server on Debian 8 如何在Debian8上安装vnc服务

    介绍 Introduction VNC (Virtual Network Computing) is a system that enables users to connect and interact with graphical desktops of remote computers. It can transmit screen updates, and keyboard and mouse events, over the network. VNC is useful when you need a graphical desktop environment for your server. XFCE is a lightweight desktop environment. Because…

  • ubuntu vnc 灰屏和鼠标xx的问题

    ubuntu vnc 灰屏和鼠标xx的问题

    网上好多解决办法都是改配置文件,到头来还是google出来解决问题,地址: https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-vnc-on-ubuntu-14-04 详细: Since we are going to be changing how our VNC servers are configured, we’ll need to first stop the VNC server instance that is running on port 5901: 杀掉目前到vnc进程: vncserver -kill :1 Before we begin configuring our new xstartup file, let’s back up the original in case we need it later: 备份:…