随着互联网的高速发展以及
Linux
企业应用的成熟,Linux被广泛应用于服务器领域,如何实现Linux的远程管理成为网络管理员的首要任务。我们经常见到的几种最为常用的
windows
下远程管理Linux服务器的方法,基本上都是利用SecureCRT,F-Secure SSH 抑或是PUTTY等客户端工具通过ssh服务来实现Windows下管理Linux服务器的,这些客户端工具几乎不需要什么配置,使用简单,但是它们都无法启动窗口服务的程序或进程,也无法达到远程桌面控制。本文将介绍通过xmanager远程桌面控制Linux的方法和技巧。本文中所指的Linux系统,如无特别说明都以RedHat 9.0为例。
有两种方法可以实现远程管理Linux桌面窗口,其中一个就是是我们所选择的X显示管理器(X display manager)或者说xdm,另一个流行的解决方案是vnc。我选择xdm而不是vnc出于两点原因。第一,vnc要有个服务端的守护进程,为每个共享的桌面运行。第二,我已经有X服务器的软件安装在所有的工作站上,不想再添加额外的客户端软件了。
我们先来了解一些X系统方面的知识,X是用在大多数
UNIX
系统中的图形支持系统。如果你在你的Linux机器上使用GNOME或者KDE的话,你就正在使用X系统。它由X联盟(www.X.org)定义并维护。大多数的Linux用户使用的都是由XFree86 项目 (www.xfree86.org)提供的X Window系统的实现。xdm 是一个显示管理器,提供了灵活的任务管理功能。然而xdm通常被认为是“GUI的登陆屏幕,可以自动启动我的X任务”,我们会看到实际上它要更为强大。
xdm 使用X联盟的X显示管理控制协议,即XDMCP,来和X服务器通信。它允许X服务器从运行xdm服务的服务器上获得会话服务。
当使用xdm管理这些X任务的时候在设置上有些复杂。但设置xdm 可以得到本地的和其他服务器上的桌面了。我们下面将介绍服务器上配置xdm的方法和步骤,这里描述的配置允许任何的 XDMCP 客户访问 Linux 服务器桌面环境(当然了影响了X的安全)。
第一步,我们在Linux系统下,修改/etc/X11/xdm/Xaccess文件,找到下面的语句:# * #any host
ca
n get a login window
vcGVuIG5ldyB3aW5kb3cmIzEwO0NUUkwrTW91c2Ugd2hlZWwgdG8gem9vbSBpbi9vdXQ=" src="http://up.2cto.com/os/201003/20100310154917987.jpg" width=896 onload="if(this.width onload=" border=0 resized="true" return imgzoom(this,550)?>
screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt=Click here to open new window
CTRL+Mouse wheel to zoom in/out;}" ?>
去掉最前面的#号,成为
seover=" {this.resized=true; this.width=screen.width*0.7; this.style.cursor=hand; this.alt=Click here to open new window
CTRL+Mouse wheel to zoom in/out;}" style="WIDTH: 554px; CURSOR: hand; HEIGHT: 57px" onclick=window.open("http://blog.51cto.com/viewpic.php?refimg=" + this.src) height=51 alt="Click here to open new window
CTRL+Mouse wheel to zoom in/out" src="http://up.2cto.com/os/201003/20100310154917181.jpg" width=896 onload="if(this.width onload=" border=0 resized="true" return imgzoom(this,550)?>
screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt=Click here to open new window
CTRL+Mouse wheel to zoom in/out;}" ?>
去掉最前面的#号,成为
screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt=Click here to open new window
CTRL+Mouse wheel to zoom in/out;}" ?>
将其中的Enable=false 改为Enable=true 或 Enable=1。
同时我们要确保存在下面的语句,因为177端口是我们要配置的xdmcp服务的监听端口,我们在后面配置xmanager将看到。
screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt=Click here to open new window
CTRL+Mouse wheel to zoom in/out;}" ?>
第三步,我们要修改/etc/inittab文件,将下面的语句
screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt=Click here to open new window
CTRL+Mouse wheel to zoom in/out;}" ?>
改为如下,如果原来就是id:5:initdefault:就不用更改。
screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt=Click here to open new window
CTRL+Mouse wheel to zoom in/out;}" ?>
同时,找到如下图文字所在的地方,
screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt=Click here to open new window
CTRL+Mouse wheel to zoom in/out;}" ?>
将它修改为x:5:respawn:/usr/bin/gdm,即如下图所示,
screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt=Click here to open new window
CTRL+Mouse wheel to zoom in/out;}" ?>
第四步