vnc-server

Resizing an Xvfb display

让人想犯罪 __ 提交于 2019-12-13 11:38:09
问题 Simple Question: Is there a way to resize a Xvfb display? I tried with RandR but it seems that the RandR extension is not supported by Xvfb. Are there other ways to resize the screen? Thanks for your help! 回答1: You can use the server-args command line argument to specify a custom resolution for the virtual frame buffer being created, but this does not change the resolution of an existing virtual frame buffer: xvfb-run --server-args="-screen 0, 1024x768x24" ... 回答2: Most distributions now ship

How to set Vncserver in bash script (redhat6)

橙三吉。 提交于 2019-12-12 03:36:51
问题 I am using a script to automatically set up a computer. I need to assign a password to the vnc server for the user, which is normally done using the vncserver command. However, it prompts for the user to enter and re-enter their password, neither of which the script is capable of doing. So, how can I set up the VNC password without an interactive prompt? 回答1: Please try following bash script sample: #!/bin/sh vncpasswd << EOF 123456 123456 EOF 来源: https://stackoverflow.com/questions/31851343

Connect to a VNC inside a docker which is on remote server

耗尽温柔 提交于 2019-12-11 01:03:01
问题 I have an Amazon Linux AMI server on AWS EC2, i have deployed "selenium docker" on it "https://github.com/elgalu/docker-selenium", the docker have a VNC running inside it. Now how i could access this VNC? I did some google search but did not found anything, also i tried to connect to the server ip and give the VNC display number but it gives connection refused. I have added the VNC port as a rule on the server security rules. Thanks. 回答1: Since you have already specified the firewall rules

How to properly configure xstartup file for TightVNC with Ubuntu VPS GNOME environment

ぐ巨炮叔叔 提交于 2019-12-09 12:39:58
问题 I'd like to access my Ubuntu 16.10 VPS (Contabo) with using a GNOME environment with VNC, however I am still facing some issues that I couldn't solve so far. To install and configure the software I ran the following commands: sudo apt-get install ubuntu-gnome-desktop sudo apt-get install tightvncserver xtightvncviewer tightvnc-java sudo locale-gen de_DE.UTF-8 sudo apt-get install xfonts-75dpi sudo apt-get install xfonts-100dpi sudo apt-get install gnome-panel sudo apt-get install metacity

How to configure jenkins with xvnc on OSX Lion for maven project

╄→尐↘猪︶ㄣ 提交于 2019-12-08 12:50:27
问题 When the jenkins job runs I get this output: ... Starting xvnc [workspace] $ /Applications/VNCServer.app/OSXvnc-server -rfbauth /Applications/VNCServer.app/pass.word :11 -geometry 800x600 2012-02-08 22:04:05.375 OSXvnc-server[3412:707] Arguments: -rfbauth /Applications/VNCServer.app/pass.word :11 -geometry 800x600 2012-02-08 22:04:05.394 OSXvnc-server[3412:707] Main Bundle: /Applications/VNCServer.app [workspace] $ /bin/sh -xe /var/folders/5d/jp_23pvd3bq5331x7myfcrym0000gq/T

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.

Remote Control WinCE 6.0 device from Windows 7

戏子无情 提交于 2019-12-03 13:46:41
I am trying to find out a tool to remote control a Motorola MC3190 device running Windows CE 6.0 from a Windows 7 machine. I have already used Mymobiler with Intermec CN3 device so I tried the answers in this question but I am unable to get it to work. I have tried both remote.exe.40 and remote.exe.50 in the Mymobiler folder Using Task Manager on CodeProject mentioned in a question on superuser it seems remote.exe completes execution very quickly (or is crashing silently). My Start/Programs menu has a MyMobiler entry, so somewhere along the line something seems to have got installed But when I

Xlib: extension “XInputExtension” missing on display “:1” Atom Ubuntu

喜夏-厌秋 提交于 2019-12-03 12:16:22
问题 I have an Amazon EC2 instance that runs Ubuntu 16.04 server. I installed atom and for some reason I am not able to start Atom. Everytime I start atom with the command line I see the following Xlib: extension "XInputExtension" missing on display ":1". I used vnc to setup ubuntu desktop and I am using vncviewer to access the desktop and start atom. I am not sure what I am doing wrong. My vncconfig file looks like this #!/bin/sh # Uncomment the following two lines for normal desktop: # unset

Resizing an Xvfb display

女生的网名这么多〃 提交于 2019-12-03 05:08:29
Simple Question: Is there a way to resize a Xvfb display? I tried with RandR but it seems that the RandR extension is not supported by Xvfb. Are there other ways to resize the screen? Thanks for your help! edigu You can use the server-args command line argument to specify a custom resolution for the virtual frame buffer being created, but this does not change the resolution of an existing virtual frame buffer: xvfb-run --server-args="-screen 0, 1024x768x24" ... Most distributions now ship a version of Xvfb with randr support. The code as committed in late 2015 vfb: add randr support (v2) . To

Xlib: extension “XInputExtension” missing on display “:1” Atom Ubuntu

和自甴很熟 提交于 2019-12-03 02:45:07
I have an Amazon EC2 instance that runs Ubuntu 16.04 server. I installed atom and for some reason I am not able to start Atom. Everytime I start atom with the command line I see the following Xlib: extension "XInputExtension" missing on display ":1". I used vnc to setup ubuntu desktop and I am using vncviewer to access the desktop and start atom. I am not sure what I am doing wrong. My vncconfig file looks like this #!/bin/sh # Uncomment the following two lines for normal desktop: # unset SESSION_MANAGER # exec /etc/X11/xinit/xinitrc gnome-session & gnome-panel & gnome-settings-daemon &