xawtv

$ cd ~/src
$ gzip -cd bttv-0.7.73.tar.gz | tar -xf -
# cd bttv-0.7.73
# make install

$ cd ~/src
$ bzip2 -cd alsa-driver-0.5.11.tar.bz2 | tar -xf -
$ bzip2 -cd alsa-lib-0.5.10b.tar.bz2 | tar -xf -
$ bzip2 -cd alsa-utils-0.5.10.tar.bz2 | tar -xf -
# cd alsa-driver-0.5.11
# ./configure
# make install
# ./snddevices
# cd ../alsa-lib-0.5.10b
# ./configure
# make install
# cd ../alsa-utils-0.5.10
# ./configure
# make install
# vi /etc/modules.conf
new lines
# ALSA portion
alias char-major-116 snd
alias snd-card-0 snd-card-intel8x0

# OSS/Free portion
alias char-major-14 soundcore

alias sound-slot-0 snd-card-0
alias sound-service-0-0 snd-mixer-oss
alias sound-service-0-1 snd-seq-oss
alias sound-service-0-3 snd-pcm-oss
alias sound-service-0-8 snd-seq-oss
alias sound-service-0-12 snd-pcm-oss

# i2c
alias char-major-89 i2c-dev
options i2c-core i2c_debug=1
options i2c-algo-bit bit_test=1

# bttv
alias char-major-81 videodev
alias char-major-81-0 bttv
# vi /etc/rc.d/rc.modules
new lines
/sbin/modprobe snd-card-intel8x0
/sbin/modprobe snd-mixer-oss
/sbin/modprobe snd-seq-oss
/sbin/modprobe snd-pcm-oss
/sbin/modprobe bttv
/sbin/modprobe tuner
$ cd ~/src
$ gzip -cd xawtv_3.59.tar.gz | tar -xf -
$ cd xawtv-3.59
$ ./configure --disable-motif
$ make
# make install
Aug 19, 2001 TANAKA Kei