問題点

Linux のグラフィックインストールが障害を起こす。

環境

AMD485G を搭載するマザーボード

原因1

linux kernel の radeon ドライバに不具合がある。

原因2

自動認識により、グラフィックドライバが radeon と判断し(それ自体は正しいのだが)、/etc/X11/xorg.conf に次のように記述される。

Section "Device"
	Identifier	"Configured Video Device"
	Driver		"radeon"
EndSection

対策1

とりあえずの対策として

  1. GUIではなくCUIでインストールを行う
  2. インストール後の最初のブート時に、シングルルーザモードで立上げる
  3. /etc/X11/xorg.conf で Video Driver として vesa を選択する(下記)
  4. Section "Device"
    	Identifier	"Configured Video Device"
    	Driver		"vesa"
    EndSection
    

対策2

上記の対策で取り合えず立上げ、システムが安定してきたら、ATI の純正ドライバを入れることにした。なぜか知らないが、汎用の vesa ドライバは特に文字が美しくない。

  1. ATI のサイトからドライバのインストーラをダウンロードする
  2. インストールの方法も読んでおこう
  3. インストーラをシェルで実行する。GUIインストーラが立ち上がるが全てデフォルトを選択してよい
  4. # sh ati-driver-installer-10-5-x86.x86_64.run
    
  5. fglrx.ko のコンパイルコンパイルしなくてもグラフィックスは動作するが相当に遅い)
  6. # cd /lib/modules/fglrx
    # vdir
     drwxr-xr-x 3 root root    4096 2010-06-15 23:41 build_mod
     -rwxr-xr-x 1 root root   12290 2010-06-14 21:54 make_install.sh
    # cd buld_mod
    # aptitude install linux-headers-2.6.32-bpo.5-amd64
     ...
    # sh make.sh
     ...
    # cd ..
    # sh make_install.sh
    # vdir
     drwxr-xr-x 3 root root    4096 2010-06-15 23:41 build_mod
     -rw-r--r-- 1 root root 3458864 2010-06-15 23:41 fglrx.2.6.32-bpo.5-amd64.ko
     lrwxrwxrwx 1 root root      29 2010-06-15 23:42 fglrx.ko -> ./fglrx.2.6.32-bpo.5-amd64.ko
     -rw-r--r-- 1 root root    2578 2010-06-15 23:41 make.2.6.32-bpo.5-amd64.log
     -rwxr-xr-x 1 root root   12290 2010-06-14 21:54 make_install.sh
    
  7. リブート