Sometimes ,it happens that nothing works for you. You struggle and struggle again for a task which seems very very easy for you.
It happened to me few days ago when i was trying to do some graphical installation on my VMWare based RHEL-5 and was not able to do see graphical screen properly due to some resolution issues.
So after trying for hours and hours to fix this resolution issue, i finally decided to try some remote desktop software ( which are commonly as xwindows software ) on my windows machine .
It was a hard selection as nowadays so many xwindows software available on internet. Off course ideas was to use some freely available software so i selected cygwin/X for this purpose.
Cygwin/X installation/download was pretty simple however main trick was to select specific packages from x11 category. I took help from cygwin/x installation/user guide and installed this siftware very easily.
Then next step was to start cygwin bash shell and on this bash shell i tried
xwin -query 192.168.1.234 ( which was IP address of my RHEL-5), but no success.
i was sure that xwin command was right , as all cygwin manuals point to same command. After hours and hours effort , i concluded that Linux is not opening any remote graphical sessions from cygwin , as due to new RHEL-5 security standards XDCMP protocol is disabled by default.
So then i modified the file /etc/gdm/custom.conf and under the [xdmcp] section, added this line: Enable=true
Finally restarted GDM by using command gdm-restart
and then tried same xwin command from cygwin ,,,, Ahh it was successfull and finally i got graphical remote desktop on my windows machine connecting to Linux server.Thanks google again!!!
This is blog for IT Infrastructure consultants , who want to use latest technologies for building high profile solutions with reliability and high performance.
Subscribe to:
Post Comments (Atom)
How to Enable Graphical Mode on Red Hat 7 he recommended way to enable graphical mode on RHEL V7 is to install first following packages # ...
-
Putting the physical control panel in manual operating mode There are many instances , where you want to use ASMI interface to login to Hype...
-
Fortunately enough i got a recent opportunity to work with IBM IVM, but offcourse in a very difficult customer situation. And when on a very...
-
* Which client nodes currently locked from server access? select node_name from nodes where locked='YES' *How to use string operator...
Thank you for this!! Attempting to use Cygwin/X from Windows 7 to a RHEL5 box and all I could see was a black screen. After a minute or two a fat "X" cursor would show up, but no login screen.
ReplyDeleteadding Enable=true under the [xdmcp] key then restarting gdm was part of the solution. The other part was to disable the firewall with
service iptables stop
Thanks for posting this!!