やっぱりFedora Core 6で再挑戦

ということにした。

今度は、Fedora Projectではなく、http://www.fedoraunity.org/:Title=Fedora Unityhttp://fedoraunity.org/re-spins:Title=Re-Spinを利用してインストールした。また、更に再インストールするかも知れないので、極力デフォルトで、インストールするアプリケーションの最小限にしておいた。インストールするアプリケーションとして「オフィスとプロダクテビティ」も外してインストールしたところ、約15分でインストール、最初の更新は39パッケージでダウンロードに約10分、更新に約6分で済んだ。都合約30分でインストールできる。(私が使っているインターネット環境はそれ程良くなく、ダウンロードが実効が約数MB/Sなので、環境によってはもっと速くダウンロードできるかも知れない。)

余談だが、インストーラのアプリケーションの選択のところで「ソフトウェアのインストールに使用する予定の追加のリポジトリ」でFedora Extraを選択すると「致命的なエラー」が発生してインストーラが落ち、再度初めからやり直しになってしまう。

さて、仕切り直しの準備が出来たので、もう一度、FedoraForum, Getting ATi cards to work in Fedora Coreを参考にグラフィックチップのドライバのインストールを試みる。
FC6ではrootで

rpm -Uhv http://rpm.livna.org/livna-release-6.rpm
yum install kmod-fglrx xorg-x11-drv-fglrx xorg-x11-drv-fglrx-libs-32bit
yum update kmod-fglrx xorg-x11-drv-fglrx xorg-x11-drv-fglrx-libs-32bit
service fglrx restart
fglrx-config-display enable

ということなので、早速この通り実行してみる。
あら、おかしい。インストールは成功したが、どうもハードウェアの機能をつかっていない。

次に、FedoraForum, Dell Inspiron 1501: FC6 won't install の5番目のMartz氏の投稿を参考に、

This is what worked for me for 3D:
go to http://ati.amd.com/support/driver.html
download ati-driver-installer-8.31.5-x86.x86_64.run

from a root shell:
sh ati-driver-installer-8.31.5-x86.x86_64.run
aticonfig --initial
init 3
(log in as root)
rpm -Uvh http://rpm.livna.org/livna-release-6.rpm
yum install xorg-x11-drv-fglrx-libs-32bit.x86_64
setsebool -P allow_execmod=1
ati-fglrx-config-display enable

add to /etc/X11/xorg.conf:
Section "Extensions"
Option "Composite" "Disable"
EndSection

init 5

を試して見る。
結果から言うと、これも失敗。インストールは出来るのだが、思うように動かない(外部モニタに出力できない。)

次にCastellarin氏がしたFedora Core 6 x86_64 on a Dell Inspiron 1501 Installation guideを参考にする。

rpm -Uhv http://ftp.freshrpms.net/pub/freshrpms/fedora/linux/6/freshrpms-release/freshrpms-release-1.1-1.fc.noarch.rpm
yum -y install ati-x11-drv
aticonfig --initial

Then edit /etc/X11/xorg.conf as root, and append at the end of it these lines:


Section "Extensions"
Option "Composite" "Disable"
EndSection

Section "ServerFlags"
Option "AIGLX" "off"
EndSection


...and reboot!

結果から言うと成功した! ただ、かなり試行錯誤した。
例えば、「yum -y install ati-x11-drv」を実行すると、先にインストールしたATIのドライバと競合してインストールできなかったりした。
仕方がないので、またFC6 Zodを再インストールして、最初からこの方法を試みる。(でもまだまだ、試行錯誤が続いた....)