<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.thinkwiki.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=217.230.163.254</id>
	<title>ThinkWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://www.thinkwiki.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=217.230.163.254"/>
	<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/wiki/Special:Contributions/217.230.163.254"/>
	<updated>2026-05-17T08:30:21Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.12</generator>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Kernel_parameters&amp;diff=1154</id>
		<title>Kernel parameters</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Kernel_parameters&amp;diff=1154"/>
		<updated>2004-12-14T19:08:15Z</updated>

		<summary type="html">&lt;p&gt;217.230.163.254: page created&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Some aspects of the Linux kernels behaviour are controllable via so called kernel parameters. These are parameters similar to the ones that you would provide for a command like ls or cp in a shell, only that they are appended to the kernel/image line in your bootmanagers config file (for lilo this would typically be /etc/lilo.conf, for grub it wouuld be /boot/grub/menu.lst).&lt;br /&gt;
&lt;br /&gt;
An example line from grub could look like this:&lt;br /&gt;
 kernel /lfskernel-2.6.9 root=/dev/hda6 rw idebus=66 vga=791 splash=silent acpi_sleep=s3_bios&lt;br /&gt;
&lt;br /&gt;
For a complete overview of all available parameters see &amp;lt;code&amp;gt;/lib/modules/`uname -r`/source/Documentation/kernel-parameters.txt&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Typical parameters used on ThinkPads==&lt;br /&gt;
The following table gives an overview of the kernel parameters typically needed on ThinkPads.&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
|+ useful kernel parameters&lt;br /&gt;
! parameter !! description&lt;br /&gt;
|-&lt;br /&gt;
| acpi=off || disables ACPI (keeps it from overriding APM)&lt;br /&gt;
|-&lt;br /&gt;
| acpi_sleep=s3_bios || makes the system call the video BIOS to reenable video on resume from suspend-to-ram (use this if you experience a blank display after resume while your system seems elsewise awake)&lt;br /&gt;
|-&lt;br /&gt;
| idebus=66 || set IDE bus speed to 66 MHz (66 is maximum supported)&lt;br /&gt;
|-&lt;br /&gt;
| nolapic || tells the kernel not to use the local APIC (use if you have problems with ACPI)&lt;br /&gt;
|-&lt;br /&gt;
| noresume || boots without resuming after a suspend-to-disk&lt;br /&gt;
|-&lt;br /&gt;
| resume=/dev/hdaX || tells the kernel where to find the suspend-to-disk image to resume from&lt;br /&gt;
|-&lt;br /&gt;
| root=/dev/hdaX || tells the kernel where to find the root filesystem&lt;br /&gt;
|-&lt;br /&gt;
| speedstep_coppermine=??? || supposed to tell the kernel that you have a speedstep capable coppermine processor, but could possibly not work anymore with newer kenrels&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>217.230.163.254</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=How_to_make_APM_work&amp;diff=1070</id>
		<title>How to make APM work</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=How_to_make_APM_work&amp;diff=1070"/>
		<updated>2004-12-14T17:33:47Z</updated>

		<summary type="html">&lt;p&gt;217.230.163.254: cosmetics, added ACPI override comment&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===general===&lt;br /&gt;
You need to enable the APM Power Management support in the kernel and install the [[apmd]] to handle the events triggered by the kernel driver.&lt;br /&gt;
The configuration for what to do at the different events is done in the proxy script which is usually found in &amp;lt;code&amp;gt;/etc/apmd_proxy&amp;lt;/code&amp;gt;.&lt;br /&gt;
See &amp;lt;tt&amp;gt;man apmd&amp;lt;/tt&amp;gt; for further information on this.&lt;br /&gt;
&lt;br /&gt;
If both ACPI and APM are enabled in your kernel, ACPI will override APM on boot if an ACPI capable BIOS is detected. To keep it from doing so add &amp;lt;code&amp;gt;acpi=off&amp;lt;/code&amp;gt; to your [[kernel parameters]].&lt;br /&gt;
&lt;br /&gt;
===Screen blanking (Standby)===&lt;br /&gt;
apm -S will standby the machine. Fn+F3 should result in the same thing.&lt;br /&gt;
&lt;br /&gt;
===Suspend to RAM (Sleep)===&lt;br /&gt;
apm -s will suspend the machine. Fn+F4 should do the same thing.&lt;br /&gt;
&lt;br /&gt;
===Suspend to disk (Hibernate)===&lt;br /&gt;
The Phoenix BIOS allows you three ways to hibernate with APM:&lt;br /&gt;
*using a special partition&lt;br /&gt;
*using a hibernation file on a dos type partition&lt;br /&gt;
*using [http://developer.berlios.de/projects/softwaresuspend/ SoftwareSuspend2]&lt;br /&gt;
&lt;br /&gt;
====using a hibernation partition====&lt;br /&gt;
The partition to be used for hibernation must be a primary partition that is at least as big as your laptop's memory including its video ram. First set the partition type of this partition to a0 (IBM Thinkpad hibernation) with fdisk, and then use [[tphdisk]] to write a hibernation file directly to this partition.&lt;br /&gt;
&lt;br /&gt;
Only follow these instructions, if you understand them. You will overwrite a partition on your hard disk and might loose valuable data - consider yourself warned. For example, assume that /dev/hda2 is the partition that is to be converted to a hibernation partition. Become root and type '''/sbin/fdisk /dev/hda'''. At the fdisk prompt type '''t''' to change the partition type, then type '''2''' to indicate that you want to change the type of partition 2, and then enter the partition type: '''a0'''. Now type '''w''' to write the partition table back to disk and exit. After that use [[tphdisk]] to initialize the hibernation partition. First estimate the size of your laptop's memory (main and video). For the sake of this example, let us assume that the main memory is 1024 MB and the video card has 128 MB of memory. Then the command '''tphdisk 1152 &amp;gt; /dev/hda2''' will initialize the hibernation partition. Note that this will only work if the partition is big enough. After a reboot, Fn+F12 will work as expected.&lt;br /&gt;
&lt;br /&gt;
I have successfully used this method on a T41 (2373GEU) that runs Fedora Core 3.&lt;br /&gt;
&lt;br /&gt;
====using a hibernation file on a dos partition====&lt;br /&gt;
The partition to put the file on must be a dos or vfat partition. Fat32 formatted partitions have been reported successful as well as Fat16 formatted ones. The file is either created with phdisk.exe, if you happen to have a floppy drive and a bootable dos floppy disk that you can start it from.&lt;br /&gt;
Under Linux [[tphdisk]] will do this job for you.&lt;br /&gt;
&lt;br /&gt;
There have been varying reports of success or lack thereof using [[tphdisk]]; see [[APM setup on a type 2379 Thinkpad T40]] for workarounds if [[tphdisk]] doesn't do the trick.&lt;br /&gt;
&lt;br /&gt;
====using SoftwareSuspend2====&lt;br /&gt;
ToDo...&lt;/div&gt;</summary>
		<author><name>217.230.163.254</name></author>
		
	</entry>
</feed>