|

楼主 |
发表于 2005-12-3 17:57:58
|
显示全部楼层
huahua
1. 去掉多余服务
# apt-get -y install rcconf
# rcconf
我只保留 alsa aumix dbus-1 makedev
2.
使用硬盘 hdparm
# apt-get -y install hdparm
# /sbin/hdparm -c3 -u1 -d1 /dev/hda
# /sbin/hdparm -k1 /dev/hda
d00m3d
引用:
作者: xjzzx
好人啊,顶。
另补充一点。
2.
使用硬盘 hdparm
# apt-get -y install hdparm
# /sbin/hdparm -c3 -u1 -d1 /dev/hda
# /sbin/hdparm -k1 /dev/hda
应该加上个参数。
#/sbin/hdparm -c3 -u1 -d1 -X6x /dev/hda
X参数是打开硬盘DMA模式,现在的硬盘和主板都能支持这个了。
具体的参数是 ATA66=68 , ATA100=69 , ATA33=66 。
Suggest to add the -a option, e.g. -a1024, this increase the read ahead buffer and enhance the overall performance.
#/sbin/hdparm -c3 -u1 -d1 -X69 -a1024 /dev/hda
Do a benchmark with /sbin/hdparm -tT /dev/hda to learn the differences. |
|