This page (revision-69) was last changed on 23-Apr-2022 17:05 by Harry Metske

This page was created on 23-Apr-2022 17:05 by Harry Metske

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
69 23-Apr-2022 17:05 12 KB Harry Metske to previous
68 23-Apr-2022 17:05 12 KB Harry Metske to previous | to last
67 23-Apr-2022 17:05 12 KB Harry Metske to previous | to last
66 23-Apr-2022 17:05 10 KB Harry Metske to previous | to last
65 23-Apr-2022 17:05 10 KB Harry Metske to previous | to last
64 23-Apr-2022 17:05 10 KB Harry Metske to previous | to last kolourpaint4
63 23-Apr-2022 17:05 10 KB Harry Metske to previous | to last expect
62 23-Apr-2022 17:05 10 KB Harry Metske to previous | to last sun-java5-jdk
61 23-Apr-2022 17:05 10 KB Harry Metske to previous | to last slapd ldap-utils lat

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 64 added 2 lines
* iasl (Intel ACPI compiler)
At line 83 changed one line
!! Sound
! Sound
At line 90 changed one line
!! Video driver
! Video driver
At line 94 changed one line
!! Wireless driver
! Wireless driver
At line 161 added 61 lines
! fan control
First disable the BIOS option "Fan Always on while on AC Power".
But after that you still see the fan going on fairly loud at 47 degrees Celsius and turning off at 42 (if the environment is not too warm).
To change this behavior you can patch the dsdt tables:
__Patching DSDT tables__
The following resources were helpful:
* [http://ubuntuforums.org/showthread.php?t=1036051]
* [http://milksnot.com/joomla/windows-xp/acpi-hacking-silencing-your-laptop]
I followed the following procedure (mainly as described in the first link above):
* disassemble the current dsdt table
{{{
mkdir dsdt
cd dsdt
cp /proc/acpi/dsdt .
# disassemble it
iasl -d dsdt
# save the original
cp dsdt.dsl dsdt-orig.dsl
# now first edit the dsdt.dsl file, see below
iasl -tc dsdt.dsl
#
# update initial ramdisk
#
cp dsdt.aml /etc/initramfs-tools/DSDT.aml
VERSION=`uname -r`
update-initramfs -u -k $VERSION
#
# then reboot
}}}
__DSDT Patch__
{{{
Original:
Name (CPFS, Package (0x06)
{
0x64,
0x46,
0x3C,
0x32,
0x00,
0x00
})
Modified version:
Name (CPFS, Package (0x06)
{
0x64,
0x46,
0x20,
0x08,
0x00,
0x00
})
}}}