ページ

2009年9月14日月曜日

PCG-C1 に Debian5.03 (lenny) をインストール

CDドライブしか手持ちにはなかったので

debian-503-i386-xfce+lxde-CD-1というインストールメディアのISOをインストールしました。

インストール自体は普通にできましたが、1024x480という変態解像度のため/etc/X11/xorg.confは

以下のように設定しました。
Section “InputDevice”
Identifier      “Generic Keyboard”
Driver          “kbd”
Option          “XkbRules”      “xorg”
Option          “XkbModel”      “jp106″
Option          “XkbLayout”     “jp”
EndSection

Section “InputDevice”
Identifier      “Configured Mouse”
Driver          “mouse”
EndSection

Section “Device”
Identifier “VAIO”
Driver “neomagic”
VideoRam 2048
Option “externDisp” “”
Option “internDisp” “”
Option “override_validate_mode”
EndSection

Section “Monitor”
Identifier “VAIO”
HorizSync 30-133
VertRefresh 50-200
ModeLine “1024×480″ 65.00 1024 1032 1176 1344 480 488 494 563 -hsync -vsync
EndSection

Section “Screen”
Identifier “Screen 1″
Device “VAIO”
Monitor “VAIO”
DefaultDepth 16
Subsection “Display”
Depth 16
Modes “1024×480″
ViewPort 0 0
EndSubsection
EndSection

2009年9月9日水曜日

Plagger 入れてみた。

巷で難しいと噂のPlaggerを入れてみました。 CentOS 5.3での環境です。
yum install perl-Encode-Detect

yum install perl-Module-Install
yum install perl-Module-ScanDeps
yum install perl-Module-CoreList
yum install perl-Cache-Cache
yum install perl-Class-Accessor
yum install perl-Class-Accessor-Fast-Contained
yum install perl-Date perl-DateTime perl-DateTime-Format-Mail
yum -y install perl-DateTime-TimeZone perl-Module-Pluggable-Fast
yum -y install perl-Date-Parse perl-DateTime-Format-Strptime perl-DateTime-Format-W3CDTF perl-DateTime-TimeZone perl-File-Find-Rule perl-File-HomeDir perl-HTML-ResolveLink perl-MIME-Types
yum -y install  perl-Template perl-Template-Provider-Encoing perl-Term-Encoding perl-Text-Tags perl-UNIVERSAL-require perl-URI-Fetch perl-XML-Atom perl-XML-Feed perl-XML-LibXML perl-XML-RSS

yum -y install perl-Template-Provider-Encoding

cpan install XML::RSS::LibXML
cpan install Date::Parse
wget http://search.cpan.org/CPAN/authors/id/S/SI/SIMONW/XML-Feed-0.23.tar.gz
tar xvfz XML-Feed-0.23.tar.gz

make

make install

cpan install plagger

plagger -v

こんな感じです。

ポイントはXML::Feed::RSSが最新版では動かないのでこれだけcpanやyumではなく、

ソースからインストールしてやる必要があるようです。