compiz실행시 에러메시지.

Submitted by westporch on 2009.06.21.(Sun) - 15:45

compiz를 설치하기 위해서 다음과 같은 패키지를 설치했어요.

localhost:/home/westporch# apt-get install compiz compizconfig-settings-manager compiz-fusion-plugins-main 

이후, 프롬프트에서 compiz를 실행했더니 아래와 같은 에러메시지가 뜨네요.

localhost:/home/westporch# compiz 
Checking for Xgl: not present. Detected PCI ID for VGA: 01:05.0 0300: 1002:5a61 (prog-if 00 [VGA controller]) 
Checking for texture_from_pixmap: present. Checking for non power of two support: present. 
Checking for Composite extension: present. Comparing resolution (1280x1024) to maximum 3D texture size (2048): Passed. 
Checking for nVidia: not present. Checking for FBConfig: present. 
Checking for Xgl: not present. Starting gtk-window-decorator /usr/bin/compiz.real (core) - 
Warn: SmcOpenConnection failed: Authentication Rejected, reason : 
None of the authentication protocols specified are supported and host-based authentication failed /usr/bin/compiz.real (core) - 
Fatal: No GLXFBConfig for default depth, this isn't going to work. /usr/bin/compiz.real (core) - 
Error: Failed to manage screen: 0 /usr/bin/compiz.real (core) - 
Fatal: No manageable screens found on display :0.0 

위 에러메시지중에 Checking for Xgl: not present. 이란 항목이 있더라고요 Xgl이 설치되지 않은것 같아서 apt-get install xserver-xgl을 입력했더니 패키지를 찾을수 없다는군요.

localhost:/home/westporch# apt-get install xserver-xgl 
패키지 목록을 읽는 중입니다... 완료 
의존성 트리를 만드는 중입니다 
상태 정보를 읽는 중입니다... 완료 
E: xserver-xgl 패키지를 찾을 수 없습니다


/etc/X11/xorg.conf설정 내용이에요.
Section "Device"
Identifier "Configured Video Device" --(수정)---> Identifier "ATI Technologies Inc RC410 [Radeon Xpress 200]"
Device 부분에서 위와 같이 수정해줬어요.

Section "InputDevice" 
	Identifier "Generic Keyboard"
	Driver "kbd" 
	Option "XkbRules" "xorg" 
	Option "XkbModel" "pc104" 
	Option "XkbLayout" "us" 
EndSection 

Section "InputDevice" 
	Identifier "Configured Mouse" 
	Driver "mouse" 
EndSection 

Section "Device" 
	Identifier "ATI Technologies Inc RC410 [Radeon Xpress 200]" 
	Driver "ati" 
	Option "XAANoOffscreenPixmaps" "true" 
	Option "AccelMethod" "EXA" 
EndSection 

Section "Monitor" 
	Identifier "Configured Monitor" 
EndSection 

Section "Screen" 
	Identifier "Default Screen" 
	Monitor "Configured Monitor" 
EndSection 

Section "ServerFlags" 
	Option "IgnoreABI" "on" 
	Option "AIGLX" "true" 
EndSection 

Section "Extensions" 
	Option "DAMAGE" "true" 
	Option "Composite" "true" 
EndSection


그래픽 카드는 ATI사 제품을 이용합니다.

localhost:/home/westporch# lspci | grep ATI 
00:00.0 Host bridge: ATI Technologies Inc Radeon Xpress 200 Host Bridge (rev 01) 
00:01.0 PCI bridge: ATI Technologies Inc RS480 PCI Bridge 
00:11.0 IDE interface: ATI Technologies Inc IXP SB400 Serial ATA Controller (rev 80) 
00:12.0 IDE interface: ATI Technologies Inc IXP SB400 Serial ATA Controller (rev 80) 
00:13.0 USB Controller: ATI Technologies Inc IXP SB400 USB Host Controller (rev 80) 
00:13.1 USB Controller: ATI Technologies Inc IXP SB400 USB Host Controller (rev 80) 
00:13.2 USB Controller: ATI Technologies Inc IXP SB400 USB2 Host Controller (rev 80) 
00:14.0 SMBus: ATI Technologies Inc IXP SB400 SMBus Controller (rev 82) 00:14.1 IDE interface: 
ATI Technologies Inc IXP SB400 IDE Controller (rev 80) 
00:14.2 Audio device: ATI Technologies Inc IXP SB4x0 High Definition Audio Controller (rev 01) 
00:14.3 ISA bridge: ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) 
00:14.4 PCI bridge: ATI Technologies Inc IXP SB400 PCI-PCI Bridge (rev 80) 
01:05.0 VGA compatible controller: ATI Technologies Inc RC410 [Radeon Xpress 200]


compiz 버전

localhost:/home/westporch# compiz.real --version 
compiz 0.7.6


uname -a

localhost:/home/westporch# uname -a 
Linux localhost 2.6.26-2-amd64 #1 SMP Fri Mar 27 04:02:59 UTC 2009 x86_64 GNU/Linux 


구글에서 /usr/bin/compiz.real (core) - Fatal: No manageable screens found on display :0.0
위 에러메시지로 검색을 해봐도 만족스런 답을 얻지 못하고 있어요.
제 생각엔 /etc/X11/xorg.conf 파일에서 그래픽카드 설정부분이 잘못 된것같기도 한데 어떻게 해야 compiz를 실행할 수 있을까요?