먼저 리눅스서버에서 아래와 같이 설정하자.
실습환경 : CentOS 5.5
실습과제 :Xmanager 설정하기
1.#su -
password:
#gdmsetup
원격에서 모양새(S) 를 로컬과 같이 로 변경
보안에서 원격관리자 로그인 박스 체크 함
보안에서 X서버에서 TCP연결거부 박스 체크 해제 함.
닫기 를 눌러 닫는다.
Xmanager 를 실행하자.
#init 3; init 5
리눅스 시스템의 런레벨이 5인지 확인하자
#vi etc/inittab
#
# inittab This file describes how the INIT process should set up
# the system in a certain run-level.
#
# Author: Miquel van Smoorenburg, <miquels@drinkel.nl.mugnet.org>
# Modified for RHS Linux by Marc Ewing and Donnie Barnes
#
# Default runlevel. The runlevels used by RHS are:
# 0 - halt (Do NOT set initdefault to this)
# 1 - Single user mode
# 2 - Multiuser, without NFS (The same as 3, if you do not have networking)
# 3 - Full multiuser mode
# 4 - unused
# 5 - X11
# 6 - reboot (Do NOT set initdefault to this)
#
id:5:initdefault: <------ 별도의 설정을 안했다면 5로 되어 있다
# System initialization.
si::sysinit:/etc/rc.d/rc.sysinit
2.XDMCP 접속 허용
[root@CentOS5 /]# vi /etc/gdm/custom.conf
# NOTE: Lines that begin with "#" are considered comments.
# Have fun!
[daemon]
RemoteGreeter=/usr/libexec/gdmgreeterZZ
[security]
AllowRemoteRoot=true
DisallowTCP=false <----- 이부분 확인 또는 없으면 추가 하자.
[xdmcp]
#Enable=true <-- 기본이 Enable=True 로 되어있으니 1로 변경 하자
Enable=1
[gui]
[greeter]
[chooser]
[debug]
----------------------------------------------------------------------------------------
다음은 XP에서 Xbrowser를 통해 접근해보자