2007年12月2日 星期日

phpmyadmin中,中文編碼不正常

/var/www/phpmyadmin/libraries/select_lang.lib.php

'big5' => 'big5' 和 'utf-8' => 'utf8' 換成
'big5' => 'latin1' 和 'utf-8' => 'latin1'

2007年9月15日 星期六

使用ubuntu 7.04看rmvb

ubuntu 7.04
安裝mplayer來看rmvb的影片(for amd64)

先在sources.lst中加入下面兩行
deb http://medibuntu.sos-sts.com/repo/ feisty free non-free
deb-src http://medibuntu.sos-sts.com/repo/ feisty free non-free

先執行下面兩個指令
wget -q http://medibuntu.sos-sts.com/repo/medibuntu-key.gpg -O- apt-key add -

apt-get update

再來安裝
apt-get install gstreamer0.10-ffmpeg gstreamer0.10-gl \
gstreamer0.10-plugins-base gstreamer0.10-plugins-good \
gstreamer0.10-plugins-bad gstreamer0.10-plugins-bad-multiverse \
gstreamer0.10-plugins-ugly gstreamer0.10-plugins-ugly-multiverse \
libxine-extracodecs w64codecs ffmpeg lame

照網路上找到的說明文件上的說明應該就能看影片了
但是我的還是不行,所以到mplayer > Preferences > video
選個可以用的吧

2007年9月9日 星期日

Linux: ide: failed opcode

舊的BanQ 1680竟然壞了,換上了新的lite-on LH-20A1P之後竟然一直跑出錯誤訊息,而且也不能讀取到資料

在google上查到這個網頁:http://www.serpentine.com/blog/2006/12/12/make-linux-happy-with-a-modern-laptops-cddvd-drive/

才處理掉的

以下為節錄

The reason this doesn’t work is that the ICH7 hub is emulating an IDE device, and the Linux IDE driver doesn’t know how to configure it to use DMA. Never fear; you don’t need to do this at all. Instead, configure your kernel to use the newer libata driver to control the CD-ROM/DVD drive.

看起來是因為intel的ICH7是模擬IDE device但是Linux的IDE driver並不知道要怎麼使用DMA造成錯誤 ,可是我的是ICH9也有問題,照上面的網頁寫的只要在/boot/grub/menu.lst下更改開機的參數就好

我的menu.lst如下(debian)

title Debian GNU/Linux, kernel 2.6.21-2-amd64
root (hd0,5)
kernel /vmlinuz-2.6.21-2-amd64 root=/dev/hda1 ro combined_mode=libata
initrd /initrd.img-2.6.21-2-amd64
savedefault

重點是加上紅色部份即可