혹시 ATI X1250에서 듀얼모니터로 우분투 9.04 쓰시는분 있나요?

tur5의 이미지

X1250.. 놋북용 내장그래픽입니다. -_-;

삼성 센스 R20인데요(사실 이놈으로 리눅스 깔아서 쓰는것도 참 웃깁니다만;)

여기다가 듀얼모니터 박아넣으니,

반.드.시

두 모니터중 한개는 포기해야 하더군요.

+@로 ATI 까탈리스트 설치하면 X윈도우(그놈이나 KDE나...)에 들어서는 순간,

아니.. 정확히 말하면 그냥 리눅스 기본 부팅과정 끝나자 마자 화면이 찢어지더라구요.

결국 9.04 기본 내장 드라이버로 버티면서 24인치 모니터를 꺼놓고 쓰고 있습니다만 -_-;

ATI X1250이나 삼성 센스 R20/R20+에서 듀얼모니터 성공한분 있으면 xorg.conf 설정파일좀 보여주세요. 굽신굽신. =_=;

송효진의 이미지

까탈리스트로 한다면 반드시 aticonfig 를 이용해야 합니다.
aticonfig 한 이후 xorg.conf 를 직접 수정하면,
얘가 잘 못알아 듣네요.
아무래도 /etc/ati/amdpcsdb 를 직접 참조하기도 하나봅니다.
어쨌든 aticonfig --acpi-services=off 는 필히 하시고,

aticonfig --initial --input=/etc/X11/xorg.conf 정도 하셔서 '초기화'를 해 주세요.
Identifier 가 ati 인 항목이 아래와 비슷하게 안나오면 해당 항목을 날려버리고 초기화 하세요.

ReducedBlanking on 과 RandR off 는 필히 따로 해야 하고,(직접수정)
듀얼 해상도는 둘 중 큰쪽으로 무조건 양쪽 다 맞춰야 합니다.(aticonfig 로 일단 도전하고 직접수정)

그 후 아래의 xrandr 을 이용하는 스크립트를 참조해서 스크립트를 만들어 그놈 시작프로그램 같은 시동스크립트에 추가하세요.

Section "ServerLayout"
	Identifier     "X.org Configured"
	Screen      0  "aticonfig-Screen[0]-0" 0 0
	Option	    "OffTime" "20"
	Option	    "Clone" "off"
	Option	    "Xinerama" "off"
	Option	    "AIGLX" "on"
EndSection
 
Section "Files"
	FontPath     "/usr/share/fonts/nanum-fonts/"
	FontPath     "/usr/share/fonts/naverdic-font/"
	FontPath     "/backup/fonts/ms_hangul/"
EndSection
 
Section "Module"
EndSection
 
Section "ServerFlags"
	Option	    "AllowEmptyInput" "True"
EndSection
 
Section "Monitor"
	Identifier   "aticonfig-Monitor[0]-0"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
	Option	    "ReducedBlanking" "on"
EndSection
 
Section "Device"
	Identifier  "aticonfig-Device[0]-0"
	Driver      "fglrx"
	Option	    "PairModes" "1680x1200+1680x1200"
	Option	    "VideoOverlay" "on"
	Option	    "OpenGLOverlay" "off"
	Option	    "OverlayOnCRTC2" "1"
	Option	    "DesktopSetup" "horizontal,reverse"
	Option	    "XAANoOffscreenPixmaps" "on"
	Option	    "EnableRandR12" "false"
	BusID       "PCI:1:0:0"
EndSection
 
Section "Screen"
	Identifier "aticonfig-Screen[0]-0"
	Device     "aticonfig-Device[0]-0"
	Monitor    "aticonfig-Monitor[0]-0"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Virtual   1680 1200
		Depth     24
		Modes    "3360x1200"
	EndSubSection
EndSection
 
Section "DRI"
	Group        "video"
	Mode         0666
EndSection
 
Section "Extensions"
	Option	    "Composite" "Enable"
EndSection

#!/bin/bash
 
setradeonhd () {
	if [ "x`xrandr -q | head | grep 1920x1200`" != "x" ]; then
		xrandr --screen 0 --fb 3600x1200
		xrandr --output PANEL --mode 1680x1050
		xrandr --output VGA_1 --left-of PANEL
		xrandr --output VGA_1 --mode 1920x1200
	else
		xrandr --screen 0 --fb 3280x1200
		xrandr --output PANEL --mode 1680x1050
		xrandr --output VGA_1 --left-of PANEL
		xrandr --output VGA_1 --mode 1600x1200
	fi
}
setradeon () {
	xrandr --screen 0 --fb 3280x1200
	xrandr --output LVDS --mode 1680x1050
	xrandr --output VGA-0 --mode 1600x1200
	xrandr --output VGA-0 --left-of LVDS
}
setfglrx () {
	if [ "x`xrandr -q | head | grep 1920x1200`" != "x" ]; then
		xrandr --output default --mode 3600x1200
		#xrandr --screen 0 --fb 3600x1200
		#xrandr --output LCD --mode 1680x1050
		#xrandr --output CRT1 --mode 1920x1200
	else
		xrandr --output default --mode 3360x1200
		#xrandr --screen 0 --fb 3280x1200
		#xrandr --output LCD --mode 1680x1050
		#xrandr --output CRT1 --mode 1600x1200
	fi
	#xrandr --output CRT1 --left-of LCD
}
setsingle () {
	xrandr --output default --mode 1680x1050
	#xrandr --screen 0 --fb 1680x1050
	#xrandr --output LCD --mode 1680x1050
}
 
if [ "x$1" != "x" ]; then
	case "$1" in
		single)
			setsingle
			;;
		dual)
			setfglrx
			;;
	esac
else
	if [ "x`xrandr -q | grep VGA_1`" != "x" ]; then
		setradeonhd
	else
		if [ "x`xrandr -q | grep VGA-0`" != "x" ]; then
			setradeon
		else
			if [ "x`xrandr -q | grep 1920x1200`" != "x" ]; then
				setfglrx
			else
				if [ "x`xrandr -q | grep 1600x1200`" != "x" ]; then
					setfglrx
				else
					setsingle
				fi
			fi
		fi
	fi
fi

emerge money
http://wiki.kldp.org/wiki.php/GentooInstallSimple - 명령어도 몇 개 안돼요~
http://xenosi.de/

tur5의 이미지

이런저런 잡질까지 다 해봤는데 인제는 ATI 공식 지원 드라이버조차도 인식이 안되네요 -_-; 결국은 다시 최초설정으로...

aticonfig 멕이니깐 어댑터가 없다는군요 -_-ㅋㅋㅋ;;;

우분투 공식 홈페이지의 지원방법대로 하면 아예 X윈도우가 깨져버리는 눈물나는 상황이 발생하구요.

절대 다음 노트북은 ATI그래픽 달린거 안살랩니다 ㄱ-

송효진의 이미지

저도 후회하는 중이긴 한데-_-;;
fglrx 모듈은 올리셨나요?
쓸만은 하던데요.ㅎㅎ

emerge money
http://wiki.kldp.org/wiki.php/GentooInstallSimple - 명령어도 몇 개 안돼요~
http://xenosi.de/

tur5의 이미지

fglrx를 깔때 두번중 한번은 화면이 찢어지고, 아니면 아예 깔았는데도 아무런 변화가 없는... -_-;

8.04로 도로 돌아갈까 심히 고민중이에요 ㅋㅋ -_-;

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.