cuspy memo


EeePC 901 - X 回りの設定

2008/07/28 Monday 05:00:30

しばらく jfbterm で暮らそうかとも思ったんだけど、フレームバッファが使えなかったのでやっぱり X を入れてみた。
xorg を入れると何の苦労もなく動作しけどデフォルトの xorg.conf が質素だったので以下の様に変更を行った。
まず日本語が表示されないので defoma のフォントパスを追加した。

Section “Files”
FontPath “/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType”
EndSection

解像度も 1024×600 じゃなかったので 1024×600 にした。

Section “Screen”
Identifier “Default Screen”
Monitor “Configured Monitor”
SubSection “Display”
Depth 24
Modes “1024×600″
EndSubSection
EndSection

次にに firefox を入れてみると UI のフォントが大きすぎるのですこし小さくした。
~/.mozilla/firefox/????????.default/chrome/userChrome.css
にこんな感じの事を書く。

* {
font-size: 8pt !important;
}

あと、firefox のキャッシュを SSD に書くのは気持ちが悪いので tmpfs を使うようにした。

/etc/fstab に

tmpfs /tmp tmpfs defaults 0 0

user.js に

user_pref(”browser.cache.disk.parent_directory”, “/tmp/firefox/Cache”);

いい具合に使えそうになってきたところで寝る

No comments yet.

Leave a comment

You must be logged in to post a comment.

hoge