:      我的工作站有x-windows 环境,我的pc端有linux+x windows,请问我要如何把工作
:  站的x-windows 叫到我的pc screen上??

要将远端的 X application 的显示 (display) 改到自己的机器上,首先要在
自己的机器上用 xhost 这个命令将该远端机器加入 xhost 的access control
list中,该程序才能与 local 端的 X server 建立连接。你也可以用 xhost+
来取消所有的管制,使任何一部机器上的 X client 都能与你的 X server 建
立连接。其次,在用 telnet 或 rlogin 连进远端的工作站后,要用适当的命
令设定好 DISPLAY 这个环境变数,之后执行的 X applications才会知道应该
跟哪一个 X display 建立连接。假设你在工作站上的 shell 为 csh or tcsh
,而你的 Linux PC 之 IP address 为 aaa.bbb.ccc.ddd,则可以用
setenv DISLPAY aaa.bbb.ccc.ddd:0
来设定远端工作站上该 session 中,所有的 X applications应该使用的显示
设备的位址。如果你的 Linux PC 有注册 domain name,也可以在上述的命令
中用 domain name 取代 IP address。

如果你在工作站上有在 .rhosts 里设定你的 Linux PC 为一个 trusted host
,则可以更省事。只要用 xon这个命令,直接指定远端主机的位置或名称,以
及要执行的程序与该程序的参数,就可以执行了。但是,还是要先用 xhost取
消管制。使用这种方式是比较不安全的。如果你的 Linux PC 并不只有你自己
使用,也提供帐号给别人使用,要记得在 .rhosts 中指定 user,否则任何一
个在你的机器上的使用者都可以用 rlogin 在不经密码认证的过程下,进入你
在工作站的帐号。(除了自己用 xhost取消管制外,也可以用命令列参数告知
xon 去叫用 xhost 来把被指定要执行程式的远端工作站加入 access control
list 之中。)

--

==> cxm (陈陈) 提到:
>  I can connect X-server of a SGI workstation from a SUN sparc-20 workstation.
>  the error messages:
>  Xlib: connect to " hostname:0.0" refused by server
>  Xlib: Client is not authorized to connet to server
>  I have setenv DISPLAY remotehost:0;
>  and it work well between two SGI workstation.
>  who can help me?
>  please mail to me. ( in the bbs: cxm)
>  think you very much.

Try on SGI workstation:
        xhost +sunhostname
maybe ok

---
 

:::  拉了free的MIX和Xwin32(X server for 95/NT)回来,想在Win95
:::  下远端执行linux host上的X applications,
:::  但老不成功,有那位兄台有类似经验,能介绍以下吗?
 
::  弄个别的Xserver试一下,不过一般的步骤最简单是这样的,
::  telnet到UNIX机器,
::  运行setenv DISPLAY=IP:0.0
::  或者DISPLAY=IP:0.0
::  export DISPLAY
::  如果是bash的话
::  当然得先运行win95上的X server
::  然后在远程运行X的app就在本地显示了.

:   一般是host的IP设置不对或者是font没设置好;
: 如果未看到X 光标或沙漏一般是第一种情况,
: 可以试着将host上的X font server 起来试试.

已经搞好了,我是在xterm后加了-display参数,谢谢。感觉Xwin32好些,
MIX的字体有点问题,连xboard,xpaint都走不了。可惜Xwin32是个demo版,
只能用2小时,不知有没有哪位网虫已经把它crack掉呢?
 

----

【 在 wildwolf ( 野狼) 的大作中提到: 】
:  标  题: Font Server 的port号是多少?(空) (转载)
 通常是      ^^^^^^^^^^^^^^^^^^^^7100 or 7000
 
 
 

发信人: cxy (寒江雪), 信区: XWindow
标 题: Re: Font Server 的port号是多少?(空) (转载)
发信站: BBS 水木清华站 (Sun Sep 28 21:20:36 1997)

【 以下文字转载自 Unix 讨论区 】
【 原文由 cxy 所发表 】
【 在 wildwolf ( 野狼) 的大作中提到: 】

你可随便设置于一个config文件中如

#
# sample font server configuration file
#
# allow a max of 10 clients to connect to this font server
client-limit = 10

# when a font server reaches its limit, start up a new one
clone-self = on
port=7777

# where to look for fonts
# the first is a set of Speedo outlines, the second is a set of
# misc bitmaps and the last is a set of 100dpi bitmaps
#
catalogue = /usr/openwin/lib/X11/fonts/misc/,/usr/local/lib/X11/fonts/Chinese

# in 12 points, decipoints
default-point-size = 120

# 100 x 100 and 75 x 75
default-resolutions = 100,100,75,75
use-syslog = off
 

存成如fs7777.conf
用命令
xfs(或fs) -config fs7777.conf&
启动
则将起font server 于端口7777
不过一般说来设置为大于7000
 

本文转自中文Linux论坛