<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: LINUX AND XDMCP in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/linux-and-xdmcp/m-p/4301982#M34377</link>
    <description>Any luck Joe?</description>
    <pubDate>Fri, 14 Nov 2008 21:14:24 GMT</pubDate>
    <dc:creator>~sesh</dc:creator>
    <dc:date>2008-11-14T21:14:24Z</dc:date>
    <item>
      <title>LINUX AND XDMCP</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-and-xdmcp/m-p/4301974#M34369</link>
      <description>Hello...&lt;BR /&gt;&lt;BR /&gt;I have recently been given the opprotunity to expand my bandwidth and be a linux admin.&lt;BR /&gt;&lt;BR /&gt;I currently like to use X windows with my unix machines by via the XDMCP broadcast using Reflections X emulator.&lt;BR /&gt;&lt;BR /&gt;I'm having great difficulty getting my linux server (redhat enterprise release 4 update 6)&lt;BR /&gt;to accept xdmcp broadcasts.&lt;BR /&gt;&lt;BR /&gt;I've read a wonderful article that i thought was going to solve my problems. A redhat xdmcp howto by Thomas Chao.  It didn't.&lt;BR /&gt;&lt;BR /&gt;Any other publications/howto/recommendations would be appreciated.&lt;BR /&gt;&lt;BR /&gt;Thanks...&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 06 Nov 2008 20:18:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-and-xdmcp/m-p/4301974#M34369</guid>
      <dc:creator>Joe Sullivan</dc:creator>
      <dc:date>2008-11-06T20:18:40Z</dc:date>
    </item>
    <item>
      <title>Re: LINUX AND XDMCP</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-and-xdmcp/m-p/4301975#M34370</link>
      <description>I have got it to work in the past, don't Think I did much more than run gdmconfig and turn on xdmcp and  unchecked always disallow TCP connections to X server.</description>
      <pubDate>Thu, 06 Nov 2008 20:32:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-and-xdmcp/m-p/4301975#M34370</guid>
      <dc:creator>Justin_99</dc:creator>
      <dc:date>2008-11-06T20:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: LINUX AND XDMCP</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-and-xdmcp/m-p/4301976#M34371</link>
      <description>Normally, running at runlevel 5, running gdmsetup to enable XDMCP and gdm-restart to reload the configuration should be enough.</description>
      <pubDate>Thu, 06 Nov 2008 21:21:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-and-xdmcp/m-p/4301976#M34371</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2008-11-06T21:21:11Z</dc:date>
    </item>
    <item>
      <title>Re: LINUX AND XDMCP</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-and-xdmcp/m-p/4301977#M34372</link>
      <description>Joe,&lt;BR /&gt;&lt;BR /&gt;I'm not one to tell you what to run on your PC or Linux system, but I'll tell you it's much easier to setup XVNC on Linux and use it than it would be to setup XDMCP.&lt;BR /&gt;&lt;BR /&gt;To setup Xvnc, Telnet into your system or ssh into it as you normally do, and execute the command to create a Xvnc Password...&lt;BR /&gt;&lt;BR /&gt;#/usr/bin/vncpasswd&lt;BR /&gt;&lt;BR /&gt;Follow the prompts...&lt;BR /&gt;&lt;BR /&gt;This will create a hidden directory in your $HOME directory named .vnc&lt;BR /&gt;&lt;BR /&gt;Next, you will want to startup Xvnc so that it will create the necessary files you will need to modify to run a session.&lt;BR /&gt;&lt;BR /&gt;# /usr/bin/vncserver :1&lt;BR /&gt;&lt;BR /&gt;This will then startup the server on your system on ports: 5901 and 5801.&lt;BR /&gt;&lt;BR /&gt;Shutdown the server using this command:&lt;BR /&gt;&lt;BR /&gt;# /usr/bin/vncserver -kill :1&lt;BR /&gt;&lt;BR /&gt;Now, change directory into your .vnc directory and vi the file named "xstartup".&lt;BR /&gt;&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;&lt;BR /&gt;# Uncomment the following two lines for normal desktop:&lt;BR /&gt;&lt;BR /&gt; unset SESSION_MANAGER&lt;BR /&gt; exec /etc/X11/xinit/xinitrc&lt;BR /&gt;&lt;BR /&gt;[ -x /etc/vnc/xstartup ] &amp;amp;&amp;amp; exec /etc/vnc/xstartup&lt;BR /&gt;[ -r $HOME/.Xresources ] &amp;amp;&amp;amp; xrdb &lt;BR /&gt;&lt;BR /&gt;$HOME/.Xresources&lt;BR /&gt;xsetroot -solid grey&lt;BR /&gt;vncconfig -iconic &amp;amp;&lt;BR /&gt;xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &amp;amp;&lt;BR /&gt;#twm &amp;amp;&lt;BR /&gt;&lt;BR /&gt;Once you have uncommented the two lines, save the file and exit your editor.&lt;BR /&gt;&lt;BR /&gt;Now, restart the vncserver again just like before...&lt;BR /&gt;&lt;BR /&gt;# /usr/bin/vncserver :1&lt;BR /&gt;&lt;BR /&gt;It will start the server and then load your desktop.&lt;BR /&gt;&lt;BR /&gt;Now, all you need to do is to bring up a web browser on your PC and connect to your system by specifying the port you started your session on.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://your.rhel.system.address:5901/" target="_blank"&gt;http://your.rhel.system.address:5901/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;This will then connect to the vnc server using the port you selected, 5900 + your port number you started the server on.&lt;BR /&gt;&lt;BR /&gt;If you had used port # 3, then you would use this port number on your URL.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://your.rhel.system.address:5903/" target="_blank"&gt;http://your.rhel.system.address:5903/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;When the login prompt comes up, enter the password you created with the "vncpasswd" tool, and wait for the session to come up in your browser.&lt;BR /&gt;&lt;BR /&gt;Now, if you don't like using the browser, you can download a VNC client tool such as TightVNC or one of the others and it will allow you to run VNC on your PC just as if it were running using ReflectionsX.&lt;BR /&gt;&lt;BR /&gt;You can also setup the VNCSERVER to startup at boot time on your Linux system, by modifying the file located in /etc/sysconfig/vncservers&lt;BR /&gt;&lt;BR /&gt;In this file you simply add your username, and the server number you want your server to startup on.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Example:&lt;BR /&gt;&lt;BR /&gt;"vi" the file /etc/sysconfig/vncservers&lt;BR /&gt;&lt;BR /&gt;Read the comments in the file.&lt;BR /&gt;&lt;BR /&gt;VNCSERVERS="3:retterer"&lt;BR /&gt;VNCSERVERARGS[3]="-geometry 1280x1024 -depth 16"&lt;BR /&gt;&lt;BR /&gt;Save the file and exit vi.&lt;BR /&gt;&lt;BR /&gt;Make sure that you use the "services" utility and enable VNC Servers to startup&lt;BR /&gt;VNC at boot time.&lt;BR /&gt;&lt;BR /&gt;If you have any questions, be sure to read the man pages on Xvnc, vncserver, vncpasswd and any other vnc components listed in the man pages.&lt;BR /&gt;&lt;BR /&gt;Please have a look at these websites for details about the information that I have provided to you here.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.rhic.bnl.gov/RCF/UserInfo/Software/VNC/vnc.html" target="_blank"&gt;http://www.rhic.bnl.gov/RCF/UserInfo/Software/VNC/vnc.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://bobpeers.com/linux/vnc.php" target="_blank"&gt;http://bobpeers.com/linux/vnc.php&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://www.linuxtopia.org/HowToGuides/VNC_setup_Linux_Windows.html" target="_blank"&gt;http://www.linuxtopia.org/HowToGuides/VNC_setup_Linux_Windows.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Here is the link to TightVNC&lt;BR /&gt;&lt;A href="http://www.tightvnc.com/download.html" target="_blank"&gt;http://www.tightvnc.com/download.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Good Luck to you, I hope you find VNC as useful as I do.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Rick Retterer&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 07 Nov 2008 00:10:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-and-xdmcp/m-p/4301977#M34372</guid>
      <dc:creator>Rick Retterer</dc:creator>
      <dc:date>2008-11-07T00:10:10Z</dc:date>
    </item>
    <item>
      <title>Re: LINUX AND XDMCP</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-and-xdmcp/m-p/4301978#M34373</link>
      <description>I made a error in the port number, you should connect using port 58xx.. for example 5803.&lt;BR /&gt;&lt;BR /&gt;58xx is the ports used for browsers and such&lt;BR /&gt;59xx is for the vnc client connections like tightvnc.&lt;BR /&gt;&lt;BR /&gt;Sorry about the mixup.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Rick&lt;BR /&gt;</description>
      <pubDate>Fri, 07 Nov 2008 00:20:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-and-xdmcp/m-p/4301978#M34373</guid>
      <dc:creator>Rick Retterer</dc:creator>
      <dc:date>2008-11-07T00:20:46Z</dc:date>
    </item>
    <item>
      <title>Re: LINUX AND XDMCP</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-and-xdmcp/m-p/4301979#M34374</link>
      <description>Here's an article I used quite a bit when I used XDMCP -- &lt;A href="http://www.starnet.com/xwin32kb/How_do_I_enable_XDMCP_on_my_Unix_machine/" target="_blank"&gt;http://www.starnet.com/xwin32kb/How_do_I_enable_XDMCP_on_my_Unix_machine/&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;However, I've since gone on to just using Cygwin-X with putty -- &lt;A href="http://x.cygwin.com/" target="_blank"&gt;http://x.cygwin.com/&lt;/A&gt; -- I'm not sure why its unmaintained, since everyone I know uses it rather than paying for ReflectionX or Exceed.&lt;BR /&gt;&lt;BR /&gt;Other options include VNC (mentioned previously, though I think it is dog-slow) and xrdp (&lt;A href="http://xrdp.sourceforge.net/)" target="_blank"&gt;http://xrdp.sourceforge.net/)&lt;/A&gt;</description>
      <pubDate>Fri, 07 Nov 2008 16:15:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-and-xdmcp/m-p/4301979#M34374</guid>
      <dc:creator>Alan_152</dc:creator>
      <dc:date>2008-11-07T16:15:00Z</dc:date>
    </item>
    <item>
      <title>Re: LINUX AND XDMCP</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-and-xdmcp/m-p/4301980#M34375</link>
      <description>My MASTER host is called M2404TXP.&lt;BR /&gt;&lt;BR /&gt;My LAPTOP that gets a login window on it that says "welcome to M2404TXP" is HAMMY.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;HAMMY has the following entry in its /etc/inittab file:&lt;BR /&gt;&lt;BR /&gt;# Run xdm in runlevel 5&lt;BR /&gt;x:5:respawn:/usr/bin/X11/X -query m2404txp&lt;BR /&gt;&lt;BR /&gt;When I want to use HAMMY by itself I start it up in init 4.&lt;BR /&gt;&lt;BR /&gt;When I want HAMMY to be a login device to M2404TXP I do &lt;INIT 5=""&gt; and the login window from M2404TXP appears.&lt;BR /&gt;&lt;BR /&gt;--&lt;BR /&gt;&lt;BR /&gt;If you go into /etc/X11/xdm you'll find some files that need to be tweaked.&lt;BR /&gt;&lt;BR /&gt;I don't remember what all - but they are simple ASCII text files - and if you like, I can make a tarball of them and e-mail them to you. The whole directory is only 176KB. REMIND ME to include the /etc/rc.d/init.d/xdm file as well.&lt;BR /&gt;&lt;BR /&gt;If you'd like them, send me e-mail at hunybuny@eskimo.com&lt;BR /&gt;&lt;BR /&gt;(eskimo.com is a Linux-friendly site).&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;tonyp&lt;BR /&gt;&lt;/INIT&gt;</description>
      <pubDate>Mon, 10 Nov 2008 02:35:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-and-xdmcp/m-p/4301980#M34375</guid>
      <dc:creator>tony j. podrasky</dc:creator>
      <dc:date>2008-11-10T02:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: LINUX AND XDMCP</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-and-xdmcp/m-p/4301981#M34376</link>
      <description>Perhaps you could check the documention from RedHat, you can find it here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.redhat.com/docs/manuals/enterprise/RHEL-4-Manual/s390-multi-install-guide/s1-trouble-after.html#S2-TROUBLE-REMOTEX" target="_blank"&gt;http://www.redhat.com/docs/manuals/enterprise/RHEL-4-Manual/s390-multi-install-guide/s1-trouble-after.html#S2-TROUBLE-REMOTEX&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;AND&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://kbase.redhat.com/faq/FAQ_85_9053.shtm" target="_blank"&gt;http://kbase.redhat.com/faq/FAQ_85_9053.shtm&lt;/A&gt;</description>
      <pubDate>Wed, 12 Nov 2008 07:44:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-and-xdmcp/m-p/4301981#M34376</guid>
      <dc:creator>~sesh</dc:creator>
      <dc:date>2008-11-12T07:44:27Z</dc:date>
    </item>
    <item>
      <title>Re: LINUX AND XDMCP</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-and-xdmcp/m-p/4301982#M34377</link>
      <description>Any luck Joe?</description>
      <pubDate>Fri, 14 Nov 2008 21:14:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-and-xdmcp/m-p/4301982#M34377</guid>
      <dc:creator>~sesh</dc:creator>
      <dc:date>2008-11-14T21:14:24Z</dc:date>
    </item>
  </channel>
</rss>

