仕事の実験用で SA5SX が入荷。さっそく Debian をインストールする。 前回の SA1F と同じく "Say goodbey to Microsoft,Now" を使う。ただし、標準インストールだとインストーラの GRUB がうまく起動しない。 カスタムインストールで、テキストベースインストーラを選んでインストールする。
SA1F と基本ハード構成はまるっきり同じと思っていたが、 ディスプレィ解像度やタッチパネル以外にも細々と変わっている。
ネットワークの設定
SA1F では、w35und モジュールが使われていたが、USBネットワークデバイスが rt73 に変更されている。よくも解っていないのに、rt73 を含みそうなパッケージを入れてみる。
# aptitude install rt73-modules-2.6.22-3-686 rt73-common firmware-ralink # modprobe rt73 ≪ /etc/network/interfaces ≫ iface wlan0 inet dhcp pre-up /sbin/modprobe rt73 wireless-mode managed wireless-essid xxxxxxxx wireless-key s:yyyyy
rt73-modules-…. だけだと、ネットワークの初期化後にフリーズする… rt73-common,firmware-ralinkを入れると無事、無線が使えた。 SA1F では無線が今ひとつだったので、Good あるね。
ディスプレイの設定
1024×600 の環境を使うために xserver-xorg-video-amd/testing(lenny) を試すが、 うまく設定できない。 Modeline の設定が悪くて、うまく同期がとれていないだけのようなんだが…
xserver-xorg-video-vesa/stable(etch) に戻し、1024×768 でひとまず使っている。
…-amd(testing)が動かない原因を突っ込んでもらうために、動かない xorg.conf をさらす。 だれか動く xorg.conf 教えて…
# Modeline の値はよく解らないので"Modeline 1024×600"でググった結果から適当にコピー。
≪ /etc/X11/xorg.conf ≫ : Section "Device" Identifier "Generic Video Card" Driver "amd" BusID "PCI:0:1:1" Option "NoAccel" Option "PanelGeometry" "1024x600" EndSection Section "Monitor" DisplaySize 263 164 Identifier "Generic Monitor" ModelName "1024x600@60Hz" UseModes "Modes[0]" Option "TargetRefresh" "50" Option "DPMS" HorizSync 28-51 VertRefresh 43-60 EndSection Section "Modes" Identifier "Modes[0]" Modeline "800x480" 30.83 800 832 1000 1032 480 489 496 505 Modeline "800x600" 28.3 800 816 856 920 600 600 601 618 Modeline "1024x600" 50.0 1024 1104 1176 1248 600 603 619 630 EndSection Section "Screen" Identifier "Default Screen" Device "Generic Video Card" Monitor "Generic Monitor" DefaultDepth 16 : SubSection "Display" Depth 16 Modes "1024x600" EndSubSection : EndSection
- 工人舎 SA5SX で Xorg なかなか動かなかった xorg だけどようやく動いた。