vnc-viewer

How to fix broken paste clipboard in VNC on Windows [closed]

拥有回忆 提交于 2021-02-05 12:55:13
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 8 years ago . Improve this question When using RealVNC on Windows, I can sometimes cut and paste from VNC into Window's apps, and sometimes it just stops working. How can I get it reset so it works again? I've tried restarting VNC, but that doesn't do it. 回答1: http://rreddy.blogspot.com/2009/07/vncviewer-clipboard-operations

Get error “Too many authentication failures” by connecting to AWS EC2 through vnc viewer

爱⌒轻易说出口 提交于 2021-01-28 18:51:24
问题 I have set up an environment with AWS EC2 based on ubuntu 14.04 and configure vncserver under it. After everything is done, I am able to connect the EC2 instance with VNC viewer and see the desktop. However, after a period of time idle on vncviewer , the connection is disconnected and I have error "Too many authentication failures" After I restart the vncserver by going through ssh to EC2, I am able to use vncviewer to connect to the instance again. Any solution for me to not having the error

Is it possible to have multiple vncserver users on the same port?

霸气de小男生 提交于 2020-07-23 08:19:08
问题 I have a Red Hat server running tiger-vncserver. This is a hardened system and security doesn't like having so many ports open for VNC users so currently we have 15 (5901-5915). We are getting more users onboarded and anticipate more users after, not sure how many though. Is there a way to make every user have a stateful VNC connection available but share ports? From security's perspective, we would only use like port 5900 or something. If it matters, I am using Apache Guacamole in lieu of a

Is it possible to have multiple vncserver users on the same port?

会有一股神秘感。 提交于 2020-07-23 08:18:21
问题 I have a Red Hat server running tiger-vncserver. This is a hardened system and security doesn't like having so many ports open for VNC users so currently we have 15 (5901-5915). We are getting more users onboarded and anticipate more users after, not sure how many though. Is there a way to make every user have a stateful VNC connection available but share ports? From security's perspective, we would only use like port 5900 or something. If it matters, I am using Apache Guacamole in lieu of a

Is it possible to have multiple vncserver users on the same port?

≡放荡痞女 提交于 2020-07-23 08:17:38
问题 I have a Red Hat server running tiger-vncserver. This is a hardened system and security doesn't like having so many ports open for VNC users so currently we have 15 (5901-5915). We are getting more users onboarded and anticipate more users after, not sure how many though. Is there a way to make every user have a stateful VNC connection available but share ports? From security's perspective, we would only use like port 5900 or something. If it matters, I am using Apache Guacamole in lieu of a

VNC viewer with multiple monitors [closed]

元气小坏坏 提交于 2019-12-18 12:15:28
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I am running a VNC server on Linux and a TightVNC viewer (ver.1.3.10 from 2/10/2009) on Windows with 2 monitors attached to it. I would like to have a full-screen session on both monitors at the same time, but whenever I do that, my full-screen always uses only one monitor. Is it possible to extend the full

Get key combinations

一曲冷凌霜 提交于 2019-12-12 07:18:34
问题 How can I get key combination of keys on keyboard E.G. ( Ctrl + somekey , Alt + somekey ) with Java? I use KeyEvent listener, MouseEvent listener for all keys on keyboard. I can catch all key event on keyboard by using that listener. But, I cannot catch key combination such as ( Ctrl + Alt + Del )....etc. 回答1: public void keyPressed(KeyEvent kevt) { if(kevt.getKeyChar()=='c') { if(kevt.isAltDown()) //Code if Alt+c pressed if(kevt.isControlDown()) //Code if Ctrl+c pressed if(kevt.isShiftDown()

Where can i get the source code for VNC in DOtnet c#?

狂风中的少年 提交于 2019-12-11 14:03:46
问题 My requirement is to remove the menu bar of TightVNC Viewer, because i dont want the user to use any of them in menu bar. For which i need the source code of TightVNC, so that i can remove or disable the menu bar in UI Form. Can i get the source code in c# and i want to open the project in Visual studio Dot Net and change the form. Or any other ideas for removing the menu bar will be helpful. Thanks. 回答1: The source code off the TightVNC website is C++. If you're looking specifically for C#,

Can I launch VNC Viewer for Google Chrome webapp from my web page?

好久不见. 提交于 2019-12-11 01:01:56
问题 I am building a web service that gives VNC connections to remote machines. Currently I am using a project called novnc to embed the VNC inside a element in my web page. However, it is very slow, especially web browsers, eclipse etc. When I tried the VNC Viewer for Google Chrome webapp released by novnc, however, it seems really fast. This might be because its running native (native VNC clients are also very snappy). I was wondering whether I can have my users install the Real VNC webapp, but

How Droid VNC works?

烈酒焚心 提交于 2019-12-04 14:00:17
问题 I have install Droid VNC Server on my tablet. I also checkout it's source at http://github.com/oNaiPs/droid-VNC-server but i don't find any line of codes where it capture the screen and upload to Viewer. So, How does it work? How can it capture the Droid's screen? 回答1: Look in the jni/vnc/ folder. Sure looks like a VNC server to me. 回答2: It has 3 modes to try and read your screen: Framebuffer SurfaceFlinger Gralloc I've only tried it on Android x86 and only got the framebuffer mode working.