rhel5 与 rhel4 不同的地方是, rhel5 里没有 /etc/X11/gdm/ 这个目录,因此在用xmanager连接linux时应选择“new session--->XDCMP“。
修改相关的dgm配置文件:
1. /etc/gdm/custom.conf
将 [xdmcp] 部分的 Enable 设置为 1,即:
[xdmcp]
Enable=1
Post=177
将 [security] 部分的 DisallowTCP 设置为 false,即:
[security]
DisallowTCP=false
2. /usr/share/gdm/defaults.conf确保有以下几句配置
Enable=true
DisplaysPerHost=10
Port=177
AllowRemoteRoot=true
3. /etc/inittab里把默认级别改为5
id:5:initdefault:
x:5:respawn:/usr/sbin/gdm
4. /etc/securetty增加如下内容
pts/0
pts/1
pts/2
pts/3
pts/4
5. 重启gdm服务(未重启主机的情况下)
gdm-restart
netstat -an|grep 177 ---检查是否含有177端口号,gdm服务使用的是177端口号
若没有改端口号,通过ps -ef|grep gdm查找gdm进程kill掉,然后在执行netstat -an一般就可以看到177端口号了,若还是没有端口号。
6. 执行完上述步骤后,最好是重启一下主机。
步骤e可在重启主机前先检测一下。
执行完上述步骤后,在用xmanager连接linux就可以了。
--转自