* Debian GNU Linux/lenny - システム環境設定 [#hb2896b6]
** 時刻をJSTにする [#yd1495fa]
/etc/default/rcSを修正。~
修正しないとWindowsとのデュアルブートで困る。~
UTC=no
~
** visudo/crontab等で使用されるデフォルトエディタの変更 [#yafc3cf3]
update-alternatives --config editor
~
** sudoersにユーザーを追加 [#z3f409d9]
visudo
「# User privilege specification」に次を追加。
user ALL=(ALL) ALL
~
** su使用可能ユーザーを制限 [#v59ade5d]
wheelグループ作成。グループIDはなんでもよい。
groupadd -g 900 wheel
wheelグループにsuを許可するユーザーを列挙
wheel:x:900:user
/etc/pam.d/suに次を追加
auth required pam_wheel.so group=wheel
~
** 音が鳴るように [#h833edef]
-/etc/group
audio:x:??:user
~
** gconfd等が出力するメッセージが文字化けするのを回避 [#p2d50f4b]
aptitude install syslog-ng
~
** NVIDIA driver xorg.conf [#eb26a0ba]
Section "Module" の変更
#Load "dri"
#Load "GLcore"
Load "glx"
Section "Device" の変更
#Driver "nv"
#Driver "vesa"
Driver "nvidia"
Option "NoLogo" "true" # X 起動時にロゴが出るのを抑制するオプション
Option "AddARGBGLXVisuals" "true"
Section "Extensions" を追加
Section "Extensions"
Option "Composite" "Enable"
Option "RENDER" "Enable"
EndSection
~
** コンソールで高解像度&日本語表示 [#j99cb5f1]
-/boot/grub/menu.lst~
defoptionsに下記オプションを追記。「#」は付いたままで良い。
# defoptions=vga=0x317 video=vesafb:ypan
grub設定更新
update-grub
~
-/etc/apt/sources.list~
apt-lineを追加。~
deb http://kmuto.jp/debian/mtu unstable main
fbtermインストール~
aptitude install fbterm
コンソールにてコマンド実行。~
fbterm
~
** vfatなUSBメモリを差したときの文字化け抑制 [#pb86e97e]
-usbmountインストール
aptitude install usbmount
-/etc/usbmount/usbmount.conf~
内容修正
FILESYSTEMS="ext2 ext3 vfat"
FS_MOUNTOPTIONS="-fstype=vfat,iocharset=utf8,codepage=932,umask=000"
~
** 情報源 [#s7500d89]
-[[ひゃまだのテキストで行こう - debian>http://hyamada.ddo.jp/hiki/hiki.cgi?debian]]~
-[[debianmemo>http://wiki.fdiary.net/debianmemo/?%C0%DF%C4%EA%B5%AD%CF%BF]]~
-[[KeN's GNU/Linux Diary>http://kmuto.jp/d/index.cgi/debian/fbterm.htm]]~
~