Monday, December 22, 2008

fedora 10 bluetooth mouse problem

yum update --enablerepo=updates-testing

Monday, December 15, 2008

use WD MyBook As a WEB Server

1) 首先建立连接
例如:
ln -s /shares/internal/MYWEB /usr/www/lib/

2) 如果需要可以列出目录结构,则打开文件/etc/lighttpd/lighttpd.conf添加:dir-listing.activate = "enable"

3) 重启My Book

4) 在浏览器中http:///MYWEB就可以了~

Friday, December 5, 2008

create swap on file

su
dd if=/dev/zero of=/swapfile bs=1024 count=2000000
mkswap -c /swapfile
---edit /etc/fstab
---add
/swapfile swap swap defaults 0 0