Sometime Today, manuvi@eth.net assembled some asciibets to say:
I am not able to load X windows on my node. I have booted the diskless node under LTSP and I tried to load X windows. The mother board is intel 810e chipset. I have also tried with Trident SVGA
XFS is running on the server when given the command
ps aux | grep xfs, it shown as follows.
xfs 1331 0.0 1.6 5312 4144 ? S Sep22 0:00 xfs -port -1 -dae vinod 1805 0.0 0.2 1636 612 pts/1 S 00:34 0:00 grep xfs
Your problem is that xfs is running on port -1 (ie, it creates a socket file on the local machine). This is not accessible from outside. You have to tell xfs to run on port 7100 (the default) in order to work
In /etc/init.d/xfs, search for the start part, and change -port -1 to -port 7100
That should work.
Philip