-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remote cursor not visible #101
Comments
Is it help if appending |
@fcwu it wont help, i have tried. We have 2 problems for the remote cursor visibility (on novnc).
to work around this after all the installation, i am building and installing the latest version from the source. Following is my Dockerfile now. FROM dorowu/ubuntu-desktop-lxde-vnc:xenial
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - \
&& curl -fsSL https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
&& echo "deb http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list \
&& apt-get update \
&& apt-get install -y nodejs \
&& apt-get install -y google-chrome-stable \
# need git to download source
&& apt-get install -y git
...
# update x11vnc to latest
RUN supervisorctl stop x:x11vnc \
&& mkdir x11vncLatest \
&& cd x11vncLatest \
&& git clone git://github.com/LibVNC/x11vnc
RUN apt-get build-dep -y x11vnc
RUN cd x11vncLatest/x11vnc \
&& autoreconf -fiv
RUN cd x11vncLatest/x11vnc \
&& ./configure \
&& ls \
&& make
RUN cd x11vncLatest/x11vnc \
&& sudo make install
RUN supervisorctl restart x:x11vnc
# updated x11vnc to latest
# copy supervisor.conf from local repository to the image
COPY image/etc/supervisor/conf.d/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
... You can plan this change in your Dockerfile as well if you want. You will also have to change your
|
Thanks @imixtron I will create a .deb for this, and make this as a Docker env |
Support X11VNC_ARGS now
|
After using the -multiptr option, the local cursor disables, and there is a static cursor in the middle of the desktop, |
I want to see the cursor of the remote system I am accessing to. Currently I can see only my local cursor, if an automation script is run, I cannot see the cursor moving for the novnc.
The text was updated successfully, but these errors were encountered: