Alternative to Chicken of the VNC - vnc

I need to VNC into a remote Debian server from my Mac to use Remote Console via an iLO-integrated Java Integrated Remote Console (IRC). I use Chicken of the VNC for that purpose. Is there any other open-source alternatives available? Thanks.

You can try to use "NoMachine" or "chrome remote desktop". it is not open-source products - free licence.
NoMachine - https://www.nomachine.com/
CRD - https://chrome.google.com/webstore/detail/chrome-remote-desktop/gbchcmhmhahfdphkhkmpfmihenigjmpp?hl=en
or you can use PORT forwarding from Linux to iLO IP. connect to Linux from MAC via ssh with tunnel and open iLO from MAC browser

Related

remote access from ubuntu client to debian server

My PC : Ubuntu 16.05
The server : Debian 8.4 Jessie
So far I've been using ssh to connect to remote Linux servers and interfere with them through the console.
Can I connect to the server and see and interact with the graphical environment?
Like we do on remote desktop connection on Windows.
Is this possible?
You can use NX technology or VNC to access the server with graphical environment.
Remmina is the default linux application, which is used to connect the remote server/PC from client.
Assuming the server has a graphical environment, then yes. You can install a VNC server on the server, and then use any VNC client to connect to it.

Remote access to web server on linux

I have access to a server running CentOS 6.7 on which I installed apache and configured the /etc/httpd/conf/httpd.conf file.
I can see the webpage if I ssh to the server and run
$ lynx http://192.99.x.x
but I would like to access it using a real browser. If I try to access it from my computer, it tells me that this webpage is unavailable and if I try to run firefox on the CentOS terminal, I get error: No Display specified.
Is there a way to see the webpage in a browser without port forwarding ?
Without port forwarding, you will need to setup X11 forwarding in SSH. This will allow you to open graphical applications remotely. Below is a link to configure X11 forwarding for SSH.
X11 Forwarding with SSH
CentOS 6 SSH Configuration

VNC Server IS running on ::1:5901

I am new to Linux. I have installed qemu-kvm when I started it shows command
VNC server running on `::1:5901'
Can any one please tell me how can I can access vnc server I have real vnc server and viewer also
When the shell prompts VNC server running on ::1:5901
you can then use
virt-viewer vnc://localhost:5901
to connect the guest or you can open the remote desktop viewer (a GUI tool) to connect it by vnc protocol and localhost:1.
This works in my case, hope it will work for you too!
If you want to access you machine over vnc first thing you need to do is configure vnc to listen on all interface.
To do that enable/add vnc_listen = "0.0.0.0" in your /etc/libvirt/qemu.conf file and restart libvirtd. Now you can access you guest on yourkvmhostip:5901 through vnc.

Accessing guest (Ubuntu) localhost from host (Windows)

Is there any way to access guest's localhost through a browser inside the host? I am running Ubuntu with Virtualbox on Win7.
You can configure network interface for guest system. E.g. bridge should help you.
Or you can use port forwarding through NAT.
Look at official docs to more info.

Gitolite and Firewall

So, I just enabled Firewall on my MacOSX Lion machine which runs the gitolite server and git can no longer connect to remote from other machines in the same home network.
More Info: I've kept the ssh standard port open the server machine.
I also found this http://www.42.mach7x.com/2011/07/12/using-gitolite-in-a-non-standard-ssh-port/. But it does not apply to me as I have the standard port open.
What could I be missing?

Resources