分类目录

FAQ: ACPI: Unable to turn cooling device ‘on’

Error message displayed on the console: ACPI: Unable to turn cooling device ‘on’

系统:CentOS 5.2 [root@localhost ~]# uname -a Linux keygon 2.6.18-92.el5 #1 SMP Tue Jun 10 18:49:47 EDT 2008 i686 i686 i386 GNU/Linux

原因:服务器温度过高; 解决方法:降低环境温度,增加散热;

grub 启动参数:noacpi

Check your temperature threshold # cat /proc/acpi/thermal_zone/THRM/trip_points

Set to higher/proper threshold and the spam went away: # [...]

Trac FAQ

Issue: Trac如何限制只能将任务分配给已经存在的用户

默认设置情况下,在分配传票时,“分配用户”选项(“Assign to:”/“reassign to”)里使用的是一个编辑框输入一个接受该传票的用户的名字。我们希望通过一个已有的用户列表来选择一个目标用户。

修改配置文件:/var/www/trac/conf/trac.ini ,找到[ticket]段修改

# Original item restrict_owner=false # Updated item restrict_owner=true

Issue: 为Trac的工作流程中增加测试流程

修改配置文件:/var/www/trac/conf/trac.ini ,找到[ticket-workflow]段添加

testing = new,accepted,needs_work -> testing testing.name = Submit to reporter for testing testing.permissions = TICKET_MODIFY reject = testing -> needs_work reject.name = Failed testing, return to developer pass = testing -> closed pass.name = Passes Testing [...]