본문 바로가기

Linux/Ubuntu

Ubuntu 14.04 Matrox graphic card driver 문제 해결

Ubuntu 14.04 에서 Matrox graphic card driver 가 제대로 잡히지 않는 문제점이 있다.

그로인해 당연히  GUI 환경이 엄청 버벅거린다.

 

Matrox graphic card driver 를 잡기위해 여러가지 방법을 알아 보았으나 현재로썬 지원이 안되는 것으로 보인다.

이를 극복 하기 위한 고민들이 있었는데...

그 결과 Vesa 방식으로 사용하는 방법을 찾아낸 것으로 보인다.

http://ubuntuforums.org/showthread.php?t=2222397

 

위 링크의 방법은 아래와 같다.

1) /etc/X11/xorg.conf 파일 생성

 

2) 위에 생성한 파일 내에 아래와 같이 작성

 

Section "Device"
        Identifier "Matrox Graphics, Inc. MGA G200EV"
        Driver "vesa"
        Option "OldDmaInit" "True"
EndSection

Section "Monitor"
        Identifier "PlugAndPlay"
        Option "DPMS"
EndSection

Section "Screen"
Identifier "Default Screen"
Device "Matrox Graphics, Inc. MGA G200EV"
Monitor "PlugAndPlay"
DefaultDepth 24
SubSection "Display"
            Modes "1280x1024" "1024x768" "832x624" "800x600" "720x400" "640x480"
        EndSubSection
EndSection

 

3) 재부팅

 

오 잘된다. ㅠㅜ

잘 된다기 보다는 그냥 쓸만한 정도...

 

요기에도 관련 내용을 연구(?)하신 분이 계시다

http://www.2cpu.co.kr/bbs/board.php?bo_table=lec&wr_id=1998