[미결] 놋북에 모니터를 하나 더 달아서 쓰고 싶습니다.

yuni의 이미지

놋북에 모니터를 하나 더 달아서 쓰고 싶습니다.

둘다 해상도는 동일하게 나오면 됩니다.
지금은 외부에 연결한 모니터와 놋북이 동일한 화면이 나옵니다.
이렇게 말고, 한쪽엔 모질라 다른 한쪽엔 아비워드 이런식으로 쓸려고 합니다.
어떻게 하면 되나요?

배포판: 우분투 대퍼
그래픽카드: ATI Technologies Inc Rage Mobility P/M A GP 2x (rev 64)
좀 걱정됩니다.
잠시 구글신의 도움을 받아 보았는데, 신통하지는 않습니다.

/etc/X11/xorg.conf 를 이런식으로 대충 흉내를 내보았습니다.

Section "Device"
        Identifier      "ATI Technologies, Inc. Rage Mobility P/M AGP 2x"
        Driver          "ati"
        BusID           "PCI:1:0:0"
        Option "CRT2Position" "Below" #이부분을 추가 하였습니다.
EndSection
 
Section "Monitor"
        Identifier      "Generic Monitor"
        Option          "DPMS"
EndSection
#이부분을 추가 하였습니다.
Section "Monitor"
        Identifier      "kds"
        Option          "DPMS"
EndSection
#
 
Section "Screen"
        Identifier      "Default Screen"
        Device          "ATI Technologies, Inc. Rage Mobility P/M AGP 2x"
        Monitor         "Generic Monitor"
        DefaultDepth    24
        SubSection "Display"
                Depth           1
                Modes           "1024x768"
        EndSubSection
        SubSection "Display"
                Depth           4
                Modes           "1024x768"
        EndSubSection
        SubSection "Display"
                Depth           8
                Modes           "1024x768"
        EndSubSection
        SubSection "Display"
                Depth           15
                Modes           "1024x768"
        EndSubSection
        SubSection "Display"
                Depth           16
                Modes           "1024x768"
        EndSubSection
        SubSection "Display"
        SubSection "Display"
                Depth           24
                Modes           "1024x768"
        EndSubSection
EndSection
#
Section "Screen" #이부분을 추가 하였습니다.
        Identifier      "kds"
        Device          "ATI Technologies, Inc. Rage Mobility P/M AGP 2x"
        Monitor         "Generic Monitor"
        DefaultDepth    24
        SubSection "Display"
                Depth           1
                Modes           "1024x768"
        EndSubSection
        SubSection "Display"
                Depth           4
                Modes           "1024x768"
        EndSubSection
        SubSection "Display"
                Depth           8
                Modes           "1024x768"
        EndSubSection
        SubSection "Display"
                Depth           15
                Modes           "1024x768"
        EndSubSection
        SubSection "Display"
                Depth           16
                Modes           "1024x768"
        EndSubSection
        SubSection "Display"
                Depth           24
                Modes           "1024x768"
        EndSubSection
EndSection
#
Section "ServerLayout"
        Identifier      "Dual Head Layout"      #이부분을 추가 하였습니다.
        Screen          "Default Screen"0 0   #이부분을 추가 하였습니다.
 
        InputDevice     "Generic Keyboard"
        InputDevice     "Configured Mouse"
        InputDevice     "stylus" "SendCoreEvents"
 
        InputDevice     "cursor" "SendCoreEvents"
        InputDevice     "eraser" "SendCoreEvents"
        InputDevice     "Synaptics Touchpad"
EndSection
 
Section "DRI"
        Mode    0666
EndSection
 
Section "Extensions"   #이부분을 추가 하였습니다.
        Option "Composite" "Enable"
EndSection

저처럼 쓸려는 것을 빅데스크탑이라고 하는 것 같더군요.
도움을 주시면 정말 고압겠습니다.

dalgarak의 이미지

흠.. 놋북의 어댑터가 같은 역할을 할 수 있는지는 모르겠습니다만, 같은 역할을 한다면 다음과 같이 설정해서 구성할 수 있습니다.
일단 놋북에서 Dual head support 가 되어야 하는게 가장 중요하겠지요. 출력 전환 핫키를 쓰게 되어있는 놋북이라면 불가능하지 않을까.. 싶습니다.
설정자체는 데탑이랑 놋북이랑 별로 다를게 없습니다.

요새야 Twinview니 뭐니 독점 드라이버에서 지원하는 각종 멀티헤드 기능이 있긴 합니다만.. 아래와 같은 구성은 이런 기능과 무관합니다.

여하간.. Xinerama로 넓게 쓰는게 아니라, 스크린 2개가 분리되어 있는 형태를 원하시는것 같아 보이는데....

1.Device 섹션을 2개 잡아야 합니다. 같은 Bus ID를 가지는 디바이스를, Identifier만 각기 다르게 잡습니다.
하나는 "Ati Rage out 1", 다른 하나는 "Ati Rage out 2" 이런식으로 말이죠.

2. 이미 하신대로, Monitor 섹션을 2개 잡아놓습니다. 저정도면 이상이 없을껍니다.

3. Screen 섹션 역시 2개를 잡는데.. Identifier를 좀 단순하게 쓰시는게 설정하기 편할껍니다. (구별하기도 말이죠. ;))
각 스크린 섹션에, 각기 다른 디바이스 Identifier를 적어줍니다. 지금처럼 한꺼번에 지정하시는게 아니라..

4. ServerLayout 섹션은.. 스크린 순서가 빠져있다는 것 빼고는 별 이상이 없군요. 아래처럼 한줄 더 넣어주면 될 껍니다.
절대위치를 사용하는 터치패드가 약간 맘에 걸리긴 합니다만...

Section "ServerLayout"
        Identifier      "Dual Head Layout"
        Screen          "Default Screen" 0 0
        Screen          "Default Screen" RightOf "kds"
 
        InputDevice     "Generic Keyboard"
        InputDevice     "Configured Mouse"
        InputDevice     "stylus" "SendCoreEvents"
 
        InputDevice     "cursor" "SendCoreEvents"
        InputDevice     "eraser" "SendCoreEvents"
        InputDevice     "Synaptics Touchpad"
EndSection

Xinerama 같은 경우가 아니면, RightOf 대신에 LeftOf나 기타 등등을 사용해도 상관은 없습니다. 기준화면이 어디냐에 대한건 개인 취향에 달린거고..
Xinerama 형태라면 서버 레이아웃 섹션에서 Option "Xinerama" "true" 만 더 넣어주면 됩니다.

사실 듀얼헤드 서포트는 XFree86 4 시절 문서들이 많다고 해도 실 내용은 똑같습니다. xorg.conf 로 이름 바뀐것 외에는 말이죠.
----
:LOL:

http://lunapapa.egloos.com

yuni의 이미지

먼저 친절한 답변에 감사 드립니다.
덕분에 제가 하고자 하는 기능이 Xinerama라는 것을 알게 되었습니다.
조언을 해 주신 것을 바탕으로 xorg.conf파일을 수정 하였습니다.
문제는 동일한 디바이스로 두번 이렇게 쓰면 안된다고 합니다.

다시 한번 설정파일을 올립니다. 한번 검토나 첨언해 주시겠습니까?
거듭 감사 드립니다.

Section "Module"
	Load	"i2c"
	Load	"bitmap"
	Load	"ddc"
	Load	"dri"
	Load	"extmod"
	Load	"freetype"
	Load	"glx"
	Load	"int10"
	Load	"type1"
	Load	"vbe"
EndSection
 
Section "InputDevice"
	Identifier	"Generic Keyboard"
	Driver		"kbd"
	Option		"CoreKeyboard"
	Option		"XkbRules"	"xorg"
	Option		"XkbModel"	"pc104"
	Option		"XkbLayout"	"us"
EndSection
 
Section "InputDevice"
	Identifier	"Configured Mouse"
	Driver		"mouse"
	Option		"CorePointer"
	Option		"Device"		"/dev/input/mice"
	Option		"Protocol"		"ExplorerPS/2"
	Option		"ZAxisMapping"		"4 5"
	Option		"Emulate3Buttons"	"true"
EndSection
 
Section "InputDevice"
	Identifier	"Synaptics Touchpad"
	Driver		"synaptics"
	Option		"SendCoreEvents"	"true"
	Option		"Device"		"/dev/psaux"
	Option		"Protocol"		"auto-dev"
	Option		"HorizScrollDelta"	"0"
EndSection
 
Section "InputDevice"
  Driver        "wacom"
  Identifier    "stylus"
  Option        "Device"        "/dev/wacom"          # Change to 
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "stylus"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection
 
Section "InputDevice"
  Driver        "wacom"
  Identifier    "eraser"
  Option        "Device"        "/dev/wacom"          # Change to 
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "eraser"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection
 
Section "InputDevice"
  Driver        "wacom"
  Identifier    "cursor"
  Option        "Device"        "/dev/wacom"          # Change to 
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "cursor"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection
 
Section "Device"
	Identifier	"ATI Rage Out 1"
	Driver		"ati"
	BusID		"PCI:1:0:0"
EndSection
 
#Section "Device"
#	Identifier	"ATI Rage Out 2"
#	Driver		"ati"
#	BusID		"PCI:1:0:0"
#EndSection
 
Section "Monitor"
	Identifier	"vio"
	Option		"DPMS"
EndSection
#
Section "Monitor"
        Identifier      "kds"
        Option          "DPMS"
EndSection
#
 
Section "Screen"
	Identifier	"vio 1"
	Device		"ATI Rage Out 1"
	Monitor		"vio"
	DefaultDepth	24
	SubSection "Display"
		Depth		1
		Modes		"1024x768"
	EndSubSection
	SubSection "Display"
		Depth		4
		Modes		"1024x768"
	EndSubSection
	SubSection "Display"
		Depth		8
		Modes		"1024x768"
	EndSubSection
	SubSection "Display"
		Depth		15
		Modes		"1024x768"
	EndSubSection
	SubSection "Display"
		Depth		16
		Modes		"1024x768"
	EndSubSection
	SubSection "Display"
		Depth		24
		Modes		"1024x768"
	EndSubSection
EndSection
#
Section "Screen"
        Identifier      "vio 2"
        Device          "ATI Rage Out 1"
        Monitor         "kds"
        DefaultDepth    24
        SubSection "Display"
                Depth           1
                Modes           "1024x768"
        EndSubSection
        SubSection "Display"
                Depth           4
                Modes           "1024x768"
        EndSubSection
        SubSection "Display"
                Depth           8
                Modes           "1024x768"
        EndSubSection
        SubSection "Display"
                Depth           15
                Modes           "1024x768"
        EndSubSection
        SubSection "Display"
                Depth           16
                Modes           "1024x768"
        EndSubSection
        SubSection "Display"
                Depth           24
                Modes           "1024x768"
        EndSubSection
EndSection
#
Section "ServerLayout"
	Identifier	"Simple Layout"
	Screen  	"vio 1" 0 0
        Screen  "vio 1" RightOf "vio 2"
        Option "Xinerama" "true"
	InputDevice	"Generic Keyboard"
	InputDevice	"Configured Mouse"
	InputDevice     "stylus" "SendCoreEvents"
	InputDevice     "cursor" "SendCoreEvents"
	InputDevice     "eraser" "SendCoreEvents"
	InputDevice	"Synaptics Touchpad"
 
EndSection
 
Section "DRI"
	Mode	0666
EndSection
 
Section "Extensions"
	Option "Composite" "Enable"
EndSection

감사합니다.
==========================
안녕하세요? 인간이 덜 영글어서 실수가 많습니다. :-)
=====================
"지금하는 일을 꼭 완수하자."

==========================
부양가족은 많은데, 시절은 왜 이리 꿀꿀할까요?
=====================
"지금하는 일을 꼭 완수하자."

dalgarak의 이미지

흠.. 같은 Bus ID가 안된다면 (X가 안떠있는 상태에서, 두개의 모니터를 모두 연결 후) Xorg -scanpci 명령어를 사용, 각각의 출력에 잡히는 Bus ID를 잡을 수 있습니다.

옛날에 Xinerama로 묶어쓰던 당시의 설정이 있었는데.. 안보이는군요. 모니터 치울때 백업까지 없애버렸나 봅니다. orz

Bus ID는 BUS:Device:Function (각각의 자리에 숫자) 로 구성됩니다. 아마 Function 0, 1 이 매핑될테니.. 디바이스 섹션을 다음과같이 고쳐보세요.

Section "Device"
	Identifier	"ATI Rage Out 1"
	Driver		"ati"
	BusID		"PCI:1:0:0"
        Screen        0
EndSection
 
Section "Device"
	Identifier	"ATI Rage Out 2"
	Driver		"ati"
	BusID		"PCI:1:0:1"
        Screen        1
EndSection

아, 추가로 Xinerama를 켜시면 DRI가 자동으로 꺼질 수 있습니다. glxgears 돌리시고 맘상해하지 마시길..;

여러모로 불편한 사항이 있을 수 있으니.. 위의 설정이 정상적으로 먹히면 Xinerama 옵션만 빼고 다시 띄워보세요. 개인적으로는 Xinerama 안쓴것을 선호합니다.

에.. 오프토픽이지만, 스크린 섹션의 Display 서브섹션 들 중 사용하지 않는 Depth가 정의되어있는건 정리하시는게 설정 파일을 뒤져보기에 깔끔할 것입니다. ;)

----
:LOL:

http://lunapapa.egloos.com

yuni의 이미지

친절하고 자세한 설명에 깊이 감사 드립니다.

아직 문제를 해결을 못하고 있어서 다시 한번 염치 없이 도움을 청합니다.

각각의 모니터를 연결하고 Xorg -scanpci 것으로 출력한 결과 입니다.
어느것이 kds라고 명명한 외부 모니터로 가는 것인지 모르겠습니다.

root@Vio:~#Xorg -scanpci
Probing for PCI devices (Bus:Device:Function)
 
(0:0:0) unknown card (0x104d/0x803d) using a VIA Technologies, Inc. VT8363/8365 [KT133/KM133]
(0:1:0) unknown card (0xffff/0xffff) using a VIA Technologies, Inc. VT8363/8365 [KT133/KM133] PCI Bridge
(0:7:0) unknown card (0x104d/0x803d) using a VIA Technologies, Inc. VT82C686 [Apollo Super South]
(0:7:1) VIA Technologies, Inc. VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE
(0:7:2) unknown card (0x0925/0x1234) using a VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller
(0:7:3) unknown card (0x0925/0x1234) using a VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller
(0:7:4) VIA Technologies, Inc. VT82C686 [Apollo Super ACPI]
(0:7:5) unknown card (0x104d/0x80e3) using a VIA Technologies, Inc. VT82C686 AC97 Audio Controller
(0:7:6) unknown card (0x104d/0x80e3) using a VIA Technologies, Inc. AC'97 Modem Controller
(0:10:0) unknown card (0x2000/0x0000) using a Texas Instruments PCI1420
(0:10:1) unknown card (0x2800/0x0000) using a Texas Instruments PCI1420
(0:14:0) unknown card (0x104d/0x80e3) using a Texas Instruments TSB12LV26 IEEE-1394 Controller (Link)
(0:16:0) unknown card (0x104d/0x80e3) using a Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+
(1:0:0) unknown card (0x104d/0x80e3) using a ATI Technologies Inc Rage Mobility P/M AGP 2x
(2:0:0) unknown card (0x1186/0x3b08) using a Atheros Communications, Inc. AR5005G 802.11abg NIC

다음은 xorg.conf 파일입니다.
조언을 해 주신 것 처럼 동일한 디바이스를 다시 한번 더 쓰고, Bus ID를 다르게 주어보고, 다시 안되서 같이 주어보고,
스크린 0와 1도 해보았다가 지웠다가 해보았습니다.

Section "Device"
	Identifier	"ATI Rage Out 1"
	Driver		"ati"
	BusID		"PCI:1:0:0"
	Screen    0
EndSection
 
Section "Device"
	Identifier	"ATI Rage Out 2"
	Driver		"ati"
	BusID		"PCI:1:0:0"
        Screen  1
EndSection
 
Section "Monitor"
	Identifier	"vio"
	Option		"DPMS"
EndSection
#
Section "Monitor"
        Identifier      "kds"
        Option          "DPMS"
EndSection
#
 
Section "Screen"
	Identifier	"vio 1"
	Device		"ATI Rage Out 1"
	Monitor		"vio"
	DefaultDepth	24
	SubSection "Display"
		Depth		16
		Modes		"1024x768"
	EndSubSection
	SubSection "Display"
		Depth		24
		Modes		"1024x768"
	EndSubSection
EndSection
#
Section "Screen"
        Identifier      "vio 2"
        Device          "ATI Rage Out 1"
        Monitor         "kds"
        DefaultDepth    24
        SubSection "Display"
                Depth           16
                Modes           "1024x768"
        EndSubSection
        SubSection "Display"
                Depth           24
                Modes           "1024x768"
        EndSubSection
EndSection

그리고 파일의 마지막 부분입니다.
역기서 심플레이아웃으로 또는 더블레이아웃으로 해보았습니다.
그리고 스크린 에 있는 "vio 1" 0 0 부분은 맞는 것인지요?
그리고 Xinerama의 옵션은 넣기도 해보고 빼기도 해 보았습니다.
Section "ServerLayout"
	Identifier	"Simple Layout"
	Screen  	"vio 1" 0 0
        Screen  "vio 1" RightOf "vio 2"
        Option "Xinerama" "true"
	InputDevice	"Generic Keyboard"
	InputDevice	"Configured Mouse"
	InputDevice     "stylus" "SendCoreEvents"
	InputDevice     "cursor" "SendCoreEvents"
	InputDevice     "eraser" "SendCoreEvents"
	InputDevice	"Synaptics Touchpad"
 
EndSection
 
Section "DRI"
	Mode	0666
EndSection
 
Section "Extensions"
	Option "Composite" "Enable"
EndSection

로그 파일에 실마리가 있을지도 몰라서 올립니다.

X Window System Version 7.0.0
Release Date: 21 December 2005
X Protocol Version 11, Revision 0, Release 7.0
Build Operating System:Linux 2.6.15.7 i686
Current Operating System: Linux Vio 2.6.15-27-386 #1 PREEMPT Sat Sep 16 01:51:59 UTC 2006 i686
Build Date: 16 March 2006
	Before reporting problems, check <a href="http://wiki.x.org" rel="nofollow">http://wiki.x.org</a>
	to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Sat Feb 24 22:20:02 2007
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Simple Layout"
(**) |-->Screen "vio 1" (0)
(**) |   |-->Monitor "vio"
(**) |   |-->Device "ATI Rage Out 1"
(**) |-->Screen "vio 1" (1)
(**) |   |-->Monitor "vio"
(**) |   |-->Device "ATI Rage Out 1"
(EE) Screen vio 2 doesn't exist: deleting placement
(**) |-->Input Device "Generic Keyboard"
(**) |-->Input Device "Configured Mouse"
(**) |-->Input Device "stylus"
(**) |-->Input Device "cursor"
(**) |-->Input Device "eraser"
(**) |-->Input Device "Synaptics Touchpad"
(WW) The directory "/usr/share/X11/fonts/cyrillic" does not exist.
	Entry deleted from font path.
(**) FontPath set to "/usr/share/X11/fonts/misc,/usr/share/X11/fonts/100dpi/:unscaled,/usr/share/X11/fonts/75dpi/:unscaled,/usr/share/X11/fonts/Type1,/usr/share/X11/fonts/100dpi,/usr/share/X11/fonts/75dpi,/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
(==) RgbPath set to "/etc/X11/rgb"
(==) ModulePath set to "/usr/lib/xorg/modules"
(**) Option "Xinerama" "true"
(**) Xinerama: enabled
(**) Extension "Composite" is enabled
(II) Module ABI versions:
	X.Org ANSI C Emulation: 0.2
	X.Org Video Driver: 0.8
	X.Org XInput driver : 0.5
	X.Org Server Extension : 0.2
	X.Org Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/lib/xorg/modules/fonts/libbitmap.so
(II) Module bitmap: vendor="X.Org Foundation"
	compiled for 7.0.0, module version = 1.0.0
	Module class: X.Org Font Renderer
	ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/lib/xorg/modules/libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
	compiled for 7.0.0, module version = 1.0.0
	ABI class: X.Org Video Driver, version 0.8
(++) using VT number 7
 
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1106,0305 card 104d,803d rev 03 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 1106,b115 card ffff,ffff rev 00 class 06,04,00 hdr 01
(II) PCI: 00:07:0: chip 1106,0686 card 104d,803d rev 22 class 06,01,00 hdr 80
(II) PCI: 00:07:1: chip 1106,0571 card 0000,0000 rev 10 class 01,01,8a hdr 00
(II) PCI: 00:07:2: chip 1106,3038 card 0925,1234 rev 10 class 0c,03,00 hdr 00
(II) PCI: 00:07:3: chip 1106,3038 card 0925,1234 rev 10 class 0c,03,00 hdr 00
(II) PCI: 00:07:4: chip 1106,3057 card 0000,0000 rev 30 class 06,01,00 hdr 00
(II) PCI: 00:07:5: chip 1106,3058 card 104d,80e3 rev 20 class 04,01,00 hdr 00
(II) PCI: 00:07:6: chip 1106,3068 card 104d,80e3 rev 20 class 07,80,00 hdr 00
(II) PCI: 00:0a:0: chip 104c,ac51 card 2000,0000 rev 00 class 06,07,00 hdr 82
(II) PCI: 00:0a:1: chip 104c,ac51 card 2800,0000 rev 00 class 06,07,00 hdr 82
(II) PCI: 00:0e:0: chip 104c,8020 card 104d,80e3 rev 00 class 0c,00,10 hdr 00
(II) PCI: 00:10:0: chip 10ec,8139 card 104d,80e3 rev 10 class 02,00,00 hdr 00
(II) PCI: 01:00:0: chip 1002,4c4d card 104d,80e3 rev 64 class 03,00,00 hdr 00
(II) PCI: 02:00:0: chip 168c,001a card 1186,3b08 rev 01 class 02,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,6), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
	[0] -1	0	0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000c (VGA_EN is set)
(II) Bus 1 I/O range:
	[0] -1	0	0x00009000 - 0x000090ff (0x100) IX[B]
	[1] -1	0	0x00009400 - 0x000094ff (0x100) IX[B]
	[2] -1	0	0x00009800 - 0x000098ff (0x100) IX[B]
	[3] -1	0	0x00009c00 - 0x00009cff (0x100) IX[B]
(II) Bus 1 non-prefetchable memory range:
	[0] -1	0	0xe8100000 - 0xe9ffffff (0x1f00000) MX[B]
(II) Bus 1 prefetchable memory range:
	[0] -1	0	0x28000000 - 0x280fffff (0x100000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:7:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:7:4), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) PCI-to-CardBus bridge:
(II) Bus 2: bridge is at (0:10:0), (0,2,5), BCTRL: 0x0500 (VGA_EN is cleared)
(II) Bus 2 I/O range:
	[0] -1	0	0x00002000 - 0x000020ff (0x100) IX[B]
	[1] -1	0	0x00002400 - 0x000024ff (0x100) IX[B]
(II) Bus 2 non-prefetchable memory range:
	[0] -1	0	0x22000000 - 0x23ffffff (0x2000000) MX[B]
(II) Bus 2 prefetchable memory range:
	[0] -1	0	0x20000000 - 0x21ffffff (0x2000000) MX[B]
(II) PCI-to-CardBus bridge:
(II) Bus 6: bridge is at (0:10:1), (0,6,9), BCTRL: 0x05c0 (VGA_EN is cleared)
(II) Bus 6 I/O range:
	[0] -1	0	0x00002800 - 0x000028ff (0x100) IX[B]
	[1] -1	0	0x00002c00 - 0x00002cff (0x100) IX[B]
(II) Bus 6 non-prefetchable memory range:
	[0] -1	0	0x26000000 - 0x27ffffff (0x2000000) MX[B]
(II) Bus 6 prefetchable memory range:
	[0] -1	0	0x24000000 - 0x25ffffff (0x2000000) MX[B]
(--) PCI:*(1:0:0) ATI Technologies Inc Rage Mobility P/M AGP 2x rev 100, Mem @ 0xe9000000/24, 0xe8100000/12, I/O @ 0x9000/8
(II) Addressable bus resource ranges are
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
	[1] -1	0	0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
	[0] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[1] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[2] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[3] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[4] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[5] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
(II) PCI Memory resource overlap reduced 0xf0000000 from 0xf7ffffff to 0xefffffff
(II) Active PCI resource ranges:
	[0] -1	0	0x22000000 - 0x2200ffff (0x10000) MX[B]
	[1] -1	0	0xe8004800 - 0xe80048ff (0x100) MX[B]
	[2] -1	0	0xe8000000 - 0xe8003fff (0x4000) MX[B]
	[3] -1	0	0xe8004000 - 0xe80047ff (0x800) MX[B]
	[4] -1	0	0xf0000000 - 0xefffffff (0x0) MX[B]O
	[5] -1	0	0xe8100000 - 0xe8100fff (0x1000) MX[B](B)
	[6] -1	0	0xe9000000 - 0xe9ffffff (0x1000000) MX[B](B)
	[7] -1	0	0x00001800 - 0x000018ff (0x100) IX[B]
	[8] -1	0	0x00001400 - 0x000014ff (0x100) IX[B]
	[9] -1	0	0x00001c50 - 0x00001c53 (0x4) IX[B]
	[10] -1	0	0x00001c54 - 0x00001c57 (0x4) IX[B]
	[11] -1	0	0x00001000 - 0x000010ff (0x100) IX[B]
	[12] -1	0	0x00001c20 - 0x00001c3f (0x20) IX[B]
	[13] -1	0	0x00001c00 - 0x00001c1f (0x20) IX[B]
	[14] -1	0	0x00001c40 - 0x00001c4f (0x10) IX[B]
	[15] -1	0	0x00009000 - 0x000090ff (0x100) IX[B](B)
(II) Active PCI resource ranges after removing overlaps:
	[0] -1	0	0x22000000 - 0x2200ffff (0x10000) MX[B]
	[1] -1	0	0xe8004800 - 0xe80048ff (0x100) MX[B]
	[2] -1	0	0xe8000000 - 0xe8003fff (0x4000) MX[B]
	[3] -1	0	0xe8004000 - 0xe80047ff (0x800) MX[B]
	[4] -1	0	0xf0000000 - 0xefffffff (0x0) MX[B]O
	[5] -1	0	0xe8100000 - 0xe8100fff (0x1000) MX[B](B)
	[6] -1	0	0xe9000000 - 0xe9ffffff (0x1000000) MX[B](B)
	[7] -1	0	0x00001800 - 0x000018ff (0x100) IX[B]
	[8] -1	0	0x00001400 - 0x000014ff (0x100) IX[B]
	[9] -1	0	0x00001c50 - 0x00001c53 (0x4) IX[B]
	[10] -1	0	0x00001c54 - 0x00001c57 (0x4) IX[B]
	[11] -1	0	0x00001000 - 0x000010ff (0x100) IX[B]
	[12] -1	0	0x00001c20 - 0x00001c3f (0x20) IX[B]
	[13] -1	0	0x00001c00 - 0x00001c1f (0x20) IX[B]
	[14] -1	0	0x00001c40 - 0x00001c4f (0x10) IX[B]
	[15] -1	0	0x00009000 - 0x000090ff (0x100) IX[B](B)
(II) OS-reported resource ranges after removing overlaps with PCI:
	[0] -1	0	0x00100000 - 0x21ffffff (0x21f00000) MX[B]E(B)
	[1] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[2] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[3] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[4] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[5] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
	[0] -1	0	0x00100000 - 0x21ffffff (0x21f00000) MX[B]E(B)
	[1] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[2] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[3] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[4] -1	0	0x22000000 - 0x2200ffff (0x10000) MX[B]
	[5] -1	0	0xe8004800 - 0xe80048ff (0x100) MX[B]
	[6] -1	0	0xe8000000 - 0xe8003fff (0x4000) MX[B]
	[7] -1	0	0xe8004000 - 0xe80047ff (0x800) MX[B]
	[8] -1	0	0xf0000000 - 0xefffffff (0x0) MX[B]O
	[9] -1	0	0xe8100000 - 0xe8100fff (0x1000) MX[B](B)
	[10] -1	0	0xe9000000 - 0xe9ffffff (0x1000000) MX[B](B)
	[11] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[12] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
	[13] -1	0	0x00001800 - 0x000018ff (0x100) IX[B]
	[14] -1	0	0x00001400 - 0x000014ff (0x100) IX[B]
	[15] -1	0	0x00001c50 - 0x00001c53 (0x4) IX[B]
	[16] -1	0	0x00001c54 - 0x00001c57 (0x4) IX[B]
	[17] -1	0	0x00001000 - 0x000010ff (0x100) IX[B]
	[18] -1	0	0x00001c20 - 0x00001c3f (0x20) IX[B]
	[19] -1	0	0x00001c00 - 0x00001c1f (0x20) IX[B]
	[20] -1	0	0x00001c40 - 0x00001c4f (0x10) IX[B]
	[21] -1	0	0x00009000 - 0x000090ff (0x100) IX[B](B)
(II) LoadModule: "i2c"
(II) Loading /usr/lib/xorg/modules/libi2c.so
(II) Module i2c: vendor="X.Org Foundation"
	compiled for 7.0.0, module version = 1.2.0
	ABI class: X.Org Video Driver, version 0.8
(II) LoadModule: "bitmap"
(II) Reloading /usr/lib/xorg/modules/fonts/libbitmap.so
(II) Loading font Bitmap
(II) LoadModule: "ddc"
(II) Loading /usr/lib/xorg/modules/libddc.so
(II) Module ddc: vendor="X.Org Foundation"
	compiled for 7.0.0, module version = 1.0.0
	ABI class: X.Org Video Driver, version 0.8
(II) LoadModule: "dri"
(II) Loading /usr/lib/xorg/modules/extensions/libdri.so
(II) Module dri: vendor="X.Org Foundation"
	compiled for 7.0.0, module version = 1.0.0
	ABI class: X.Org Server Extension, version 0.2
(II) Loading sub module "drm"
(II) LoadModule: "drm"
(II) Loading /usr/lib/xorg/modules/linux/libdrm.so
(II) Module drm: vendor="X.Org Foundation"
	compiled for 7.0.0, module version = 1.0.0
	ABI class: X.Org Server Extension, version 0.2
(II) Loading extension XFree86-DRI
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
	compiled for 7.0.0, module version = 1.0.0
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 0.2
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "freetype"
(II) Loading /usr/lib/xorg/modules/fonts/libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
	compiled for 7.0.0, module version = 2.1.0
	Module class: X.Org Font Renderer
	ABI class: X.Org Font Renderer, version 0.4
(II) Loading font FreeType
(II) LoadModule: "glx"
(II) Loading /usr/lib/xorg/modules/extensions/libglx.so
(II) Module glx: vendor="X.Org Foundation"
	compiled for 7.0.0, module version = 1.0.0
	ABI class: X.Org Server Extension, version 0.2
(II) Loading sub module "GLcore"
(II) LoadModule: "GLcore"
(II) Loading /usr/lib/xorg/modules/extensions/libGLcore.so
(II) Module GLcore: vendor="X.Org Foundation"
	compiled for 7.0.0, module version = 1.0.0
	ABI class: X.Org Server Extension, version 0.2
(II) Loading extension GLX
(II) LoadModule: "int10"
(II) Loading /usr/lib/xorg/modules/libint10.so
(II) Module int10: vendor="X.Org Foundation"
	compiled for 7.0.0, module version = 1.0.0
	ABI class: X.Org Video Driver, version 0.8
(II) LoadModule: "type1"
(II) Loading /usr/lib/xorg/modules/fonts/libtype1.so
(II) Module type1: vendor="X.Org Foundation"
	compiled for 7.0.0, module version = 1.0.2
	Module class: X.Org Font Renderer
	ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Type1
(II) LoadModule: "vbe"
(II) Loading /usr/lib/xorg/modules/libvbe.so
(II) Module vbe: vendor="X.Org Foundation"
	compiled for 7.0.0, module version = 1.1.0
	ABI class: X.Org Video Driver, version 0.8
(II) LoadModule: "ati"
(II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
(II) Module ati: vendor="X.Org Foundation"
	compiled for 7.0.0, module version = 6.5.8
	Module class: X.Org Video Driver
	ABI class: X.Org Video Driver, version 0.8
(II) LoadModule: "kbd"
(II) Loading /usr/lib/xorg/modules/input/kbd_drv.so
(II) Module kbd: vendor="X.Org Foundation"
	compiled for 7.0.0, module version = 1.0.1
	Module class: X.Org XInput Driver
	ABI class: X.Org XInput driver, version 0.5
(II) LoadModule: "mouse"
(II) Loading /usr/lib/xorg/modules/input/mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
	compiled for 7.0.0, module version = 1.0.3
	Module class: X.Org XInput Driver
	ABI class: X.Org XInput driver, version 0.5
(II) LoadModule: "wacom"
(II) Loading /usr/lib/xorg/modules/input/wacom_drv.so
(II) Module wacom: vendor="X.Org Foundation"
	compiled for 4.3.99.902, module version = 1.0.0
	Module class: X.Org XInput Driver
	ABI class: X.Org XInput driver, version 0.5
(II) Wacom driver level: 47-0.7.2 $
(II) LoadModule: "synaptics"
(II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
(II) Module synaptics: vendor="X.Org Foundation"
	compiled for 4.3.99.902, module version = 1.0.0
	Module class: X.Org XInput Driver
	ABI class: X.Org XInput driver, version 0.5
(II) ATI: ATI driver (version 6.5.8) for chipsets: ati, ativga
(II) R128: Driver for ATI Rage 128 chipsets:
	ATI Rage 128 Mobility M3 LE (PCI), ATI Rage 128 Mobility M3 LF (AGP),
	ATI Rage 128 Mobility M4 MF (AGP), ATI Rage 128 Mobility M4 ML (AGP),
	ATI Rage 128 Pro GL PA (PCI/AGP), ATI Rage 128 Pro GL PB (PCI/AGP),
	ATI Rage 128 Pro GL PC (PCI/AGP), ATI Rage 128 Pro GL PD (PCI),
	ATI Rage 128 Pro GL PE (PCI/AGP), ATI Rage 128 Pro GL PF (AGP),
	ATI Rage 128 Pro VR PG (PCI/AGP), ATI Rage 128 Pro VR PH (PCI/AGP),
	ATI Rage 128 Pro VR PI (PCI/AGP), ATI Rage 128 Pro VR PJ (PCI/AGP),
	ATI Rage 128 Pro VR PK (PCI/AGP), ATI Rage 128 Pro VR PL (PCI/AGP),
	ATI Rage 128 Pro VR PM (PCI/AGP), ATI Rage 128 Pro VR PN (PCI/AGP),
	ATI Rage 128 Pro VR PO (PCI/AGP), ATI Rage 128 Pro VR PP (PCI),
	ATI Rage 128 Pro VR PQ (PCI/AGP), ATI Rage 128 Pro VR PR (PCI),
	ATI Rage 128 Pro VR PS (PCI/AGP), ATI Rage 128 Pro VR PT (PCI/AGP),
	ATI Rage 128 Pro VR PU (PCI/AGP), ATI Rage 128 Pro VR PV (PCI/AGP),
	ATI Rage 128 Pro VR PW (PCI/AGP), ATI Rage 128 Pro VR PX (PCI/AGP),
	ATI Rage 128 GL RE (PCI), ATI Rage 128 GL RF (AGP),
	ATI Rage 128 RG (AGP), ATI Rage 128 VR RK (PCI),
	ATI Rage 128 VR RL (AGP), ATI Rage 128 4X SE (PCI/AGP),
	ATI Rage 128 4X SF (PCI/AGP), ATI Rage 128 4X SG (PCI/AGP),
	ATI Rage 128 4X SH (PCI/AGP), ATI Rage 128 4X SK (PCI/AGP),
	ATI Rage 128 4X SL (PCI/AGP), ATI Rage 128 4X SM (AGP),
	ATI Rage 128 4X SN (PCI/AGP), ATI Rage 128 Pro ULTRA TF (AGP),
	ATI Rage 128 Pro ULTRA TL (AGP), ATI Rage 128 Pro ULTRA TR (AGP),
	ATI Rage 128 Pro ULTRA TS (AGP?), ATI Rage 128 Pro ULTRA TT (AGP?),
	ATI Rage 128 Pro ULTRA TU (AGP?)
(II) RADEON: Driver for ATI Radeon chipsets: ATI Radeon QD (AGP),
	ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
	ATI Radeon VE/7000 QY (AGP/PCI), ATI Radeon VE/7000 QZ (AGP/PCI),
	ATI ES1000 515E (PCI), ATI ES1000 5969 (PCI),
	ATI Radeon Mobility M7 LW (AGP),
	ATI Mobility FireGL 7800 M7 LX (AGP),
	ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
	ATI Radeon IGP320 (A3) 4136, ATI Radeon IGP320M (U1) 4336,
	ATI Radeon IGP330/340/350 (A4) 4137,
	ATI Radeon IGP330M/340M/350M (U2) 4337,
	ATI Radeon 7000 IGP (A4+) 4237, ATI Radeon Mobility 7000 IGP 4437,
	ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
	ATI Radeon 9100 QM (AGP), ATI Radeon 8500 AIW BB (AGP),
	ATI Radeon 8500 AIW BC (AGP), ATI Radeon 7500 QW (AGP/PCI),
	ATI Radeon 7500 QX (AGP/PCI), ATI Radeon 9000/PRO If (AGP/PCI),
	ATI Radeon 9000 Ig (AGP/PCI), ATI FireGL Mobility 9000 (M9) Ld (AGP),
	ATI Radeon Mobility 9000 (M9) Lf (AGP),
	ATI Radeon Mobility 9000 (M9) Lg (AGP),
	ATI Radeon 9100 IGP (A5) 5834,
	ATI Radeon Mobility 9100 IGP (U3) 5835, ATI Radeon 9100 PRO IGP 7834,
	ATI Radeon Mobility 9200 IGP 7835, ATI Radeon 9250 5960 (AGP),
	ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
	ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
	ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
	ATI Radeon Mobility 9200 (M9+) 5C63 (AGP), ATI Radeon 9500 AD (AGP),
	ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
	ATI FireGL Z1 AG (AGP), ATI Radeon 9700 Pro ND (AGP),
	ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP),
	ATI FireGL X1 NG (AGP), ATI Radeon 9600 AP (AGP),
	ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
	ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP),
	ATI FireGL RV360 AV (AGP),
	ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
	ATI Radeon Mobility 9600 (M10) NQ (AGP),
	ATI Radeon Mobility 9600 (M11) NR (AGP),
	ATI Radeon Mobility 9600 (M10) NS (AGP),
	ATI FireGL Mobility T2 (M10) NT (AGP),
	ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon 9650,
	ATI Radeon 9800SE AH (AGP), ATI Radeon 9800 AI (AGP),
	ATI Radeon 9800 AJ (AGP), ATI FireGL X2 AK (AGP),
	ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
	ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
	ATI Radeon X600 (RV380) 3E50 (PCIE),
	ATI FireGL V3200 (RV380) 3E54 (PCIE),
	ATI Radeon Mobility X600 (M24) 3150 (PCIE),
	ATI Radeon Mobility X300 (M24) 3152 (PCIE),
	ATI FireGL M24 GL 3154 (PCIE), ATI Radeon X300 (RV370) 5B60 (PCIE),
	ATI Radeon X600 (RV370) 5B62 (PCIE),
	ATI Radeon X550 (RV370) 5B63 (PCIE),
	ATI FireGL V3100 (RV370) 5B64 (PCIE),
	ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
	ATI Radeon Mobility X300 (M22) 5460 (PCIE),
	ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
	ATI FireGL M22 GL 5464 (PCIE), ATI Radeon XPRESS 200 5A41 (PCIE),
	ATI Radeon XPRESS 200M 5A42 (PCIE),
	ATI Radeon XPRESS 200 5A61 (PCIE),
	ATI Radeon XPRESS 200M 5A62 (PCIE),
	ATI Radeon XPRESS 200 5954 (PCIE),
	ATI Radeon XPRESS 200M 5955 (PCIE),
	ATI Radeon XPRESS 200 5974 (PCIE),
	ATI Radeon XPRESS 200M 5975 (PCIE), ATI FireGL V5000 (RV410) (PCIE),
	ATI Mobility FireGL V5000 (M26) (PCIE),
	ATI Mobility FireGL V5000 (M26) (PCIE),
	ATI Mobility Radeon X700 XL (M26) (PCIE),
	ATI Mobility Radeon X700 (M26) (PCIE),
	ATI Mobility Radeon X700 (M26) (PCIE),
	ATI Radeon X700 PRO (RV410) (PCIE),
	ATI Radeon X700 XT (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
	ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 SE (RV410) (PCIE),
	ATI Radeon X800 (R420) JH (AGP), ATI Radeon X800PRO (R420) JI (AGP),
	ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
	ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
	ATI Radeon Mobility 9800 (M18) JN (AGP),
	ATI Radeon X800XT (R420) JP (AGP), ATI Radeon X800 SE (R420) (AGP),
	ATI Radeon AIW X800 VE (R420) JT (AGP),
	ATI Radeon X800 (R423) UH (PCIE),
	ATI Radeon X800PRO (R423) UI (PCIE),
	ATI Radeon X800LE (R423) UJ (PCIE),
	ATI Radeon X800SE (R423) UK (PCIE),
	ATI FireGL V5100 (R423) UQ (PCIE),
	ATI FireGL unknown (R423) UR (PCIE),
	ATI FireGL unknown (R423) UT (PCIE),
	ATI Radeon X800XT (R423) 5D57 (PCIE), ATI FireGL V7100 (R423) (PCIE),
	ATI Mobility FireGL V5100 (M28) (PCIE),
	ATI Mobility Radeon X800 (M28) (PCIE),
	ATI Mobility Radeon X800 XT (M28) (PCIE),
	ATI Radeon X800 (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
	ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 XTP (R430) (PCIE),
	ATI Radeon X850 5D4C (PCIE),
	ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
	ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
	ATI Radeon X850 XT (R480) (PCIE),
	ATI Radeon X850 XT PE (R480) (PCIE),
	ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
	ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP)
(II) Primary Device is: PCI 01:00:0
(II) ATI:  Candidate "Device" section "ATI Rage Out 1".
(II) ATI:  Candidate "Device" section "ATI Rage Out 1".
(II) ATI:  Shared PCI/AGP Mach64 in slot 1:0:0 detected.
(EE) ATI:  XF86Config Device sections "ATI Rage Out 1" and "ATI Rage Out 1" may not be assigned to the same adapter.
(EE) No devices detected.
 
Fatal server error:
no screens found

좀 길군요.^^

다시 한번 감사드립니다.
==========================
안녕하세요? 인간이 덜 영글어서 실수가 많습니다. :-)
=====================
"지금하는 일을 꼭 완수하자."

==========================
부양가족은 많은데, 시절은 왜 이리 꿀꿀할까요?
=====================
"지금하는 일을 꼭 완수하자."

dalgarak의 이미지

혹시 Sony Vaio PCG-FX8xx 계열인가요? 구성 디바이스가 흡사해서 한번 여쭈어봅니다.

http://www.nothingisreal.com/pcg-fx801

위의 링크에서, dual head가 안된다는 보고가 있었습니다.
XFree86 시절 이야기긴 하지만, X.org에서 동일 ati 드라이버가 특별히 많이 달라졌다고 생각하지는 않습니다.

-scanpci를 줬을때 출력 디바이스 포트에 맞게 각기 다른 BusID가 할당되어진다면
가능하면 (1:0:0) VGA Compatible controller ~ 아랫줄에 (1:0:1) Display Controller ~ 이런식으로
상단의 디바이스 명과 같게 나오는것이 보통입니다. 보여주신 리스트에는 없습니다.
모니터를 연결한 상태에서 부팅 후 실행했는데 저렇게 나오면.. 안될 가능성이 높습니다.

그리고, 로그는 버스 ID를 동일하게 하셨을때군요.
다르게 했을때는 1:0:1이 없어서 못띄운다.. 라고 했을텐데 말이죠.

서버 레이아웃 옵션의 경우,

	Screen      0  "vio 1"
	Screen      1  "vio 1" LeftOf "vio 2"

이렇게 줄수도 있습니다만, 결과에 별다른 영향을 주기는 어려울듯 합니다.

도움이 크게 안된것 같군요. 죄송합니다.
----
:LOL:

http://lunapapa.egloos.com

M.W.Park의 이미지

어떻게해서 이 프로그램이 제 데탑에 깔려있는지는 확실하지 않지만, aticonfig를 사용하면 dual head 구성은 간단합니다.

aticonfig --initial=dual-head --screen-layout=left

위와 같이 하면 아마 노트북의 왼쪽에 외부 모니터가 있을 때의 구성을 잡아줄겁니다.

초기에 어찌해서 aticonfig가 깔렸는지는 잘 기억이 안납니다만, xorg-driver-fglrx 패키지 관련 설정을 하다가 ATI 홈피에서 제공하는 무슨 프로그램을 깔고나서 생긴것같습니다.
-----
오늘 나의 취미는 끝없는, 끝없는 인내다. 1973 法頂

-----
오늘 의 취미는 끝없는, 끝없는 인내다. 1973 法頂

yuni의 이미지

예 맞습니다. 소니바이오 PCG-FX210 모델입니다. AMD듀론 프로세스가 달려 있습니다.
아무래도 쉽게는 안 될 모양입니다.

그리고 aticonfig를 이용하는 방법을 구글신의 도움으로 시도를 해 보았습니다. 가장 큰 문제는 제 카드가 지원목록에 없네요.^^
위에 올려 주신 명령어로 설정을 다 했는데, 막상 엑스를 띄우면 스크린을 못 찾는다고 뻗어 버립니다. 로그파일을 보니 카드목록이 쭉 적혀 있는데, 제 것은 없네요.

답변해 주신 두분께 감사 드립니다.

==========================
안녕하세요? 인간이 덜 영글어서 실수가 많습니다. :-)
=====================
"지금하는 일을 꼭 완수하자."

==========================
부양가족은 많은데, 시절은 왜 이리 꿀꿀할까요?
=====================
"지금하는 일을 꼭 완수하자."

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.