Difference between revisions of "Thinkpad"

From FreekiWiki
Jump to navigation Jump to search
(R60 GPU fix)
Line 40: Line 40:
 
As-is these machines.
 
As-is these machines.
  
 +
==Thinkpad R60==
 +
In the frame buffer environment (pre-GUI) the top portion of the screen has a stripe of garbled (red) characters. This fix worked for this chipset:
 +
<pre>
 +
lspci -k
 +
</pre>
 +
01:00.0 VGA compatible controller: ATI Technologies Inc Radeon Mobility X1400
 +
Kernel modules: radeon
 +
<pre>
 +
sudo gedit /etc/default/grup
 +
</pre>
 +
Edit the GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" to read GRUB_CMDLINE_LINUX_DEFAULT="radeon.modeset=0 quiet splash".
 +
 +
Run
 +
<pre>
 +
sudo update-grub
 +
</pre>
 +
Reboot. Is fixed, no?
  
 
[[Category:Laptops]]
 
[[Category:Laptops]]

Revision as of 18:55, 7 March 2012

General Information

Thinkpad Related Resources

  1. ThinkPad Troubleshooting by topic
  2. Linux Driver Matrix for ThinkPads
  3. Thinkpad_Passwords
  4. Disassembly Instructions for ThinkPads (Covering most models!)

Models

Thinkpad 600

isa sound issues
modprobe cs4232 io=0x530 irq=5 dma=1 dma2=0 mpuio=0x330 mpuirq=5 synthirq=-1 synthio=-1

Thinkpad 600e

isa sound issues
modprobe cs4232 io=0x530 dma=1 dma2=0 irq=5

Thinnkpad T20/T21

fan issues


YAY FIXED!

SIMPLE

append:

 acpi=force

to the grub boot options.

then:

echo 0x2f 0x07 > /proc/acpi/ibm/ecdump


typing that command and redirecting that output to the embedded control dump (ecdump) file will turn that fan on at it's maximum speed.

Notes

this simple script found here:http://www.thinkwiki.org/wiki/ACPI_fan_control_script and take care of any unnecessary end-user interaction with the fan control. other useful information can be found their as well, about controlling the fan.

links

http://www.thinkwiki.org
http://ibm-acpi.sourceforge.net (there is a useful chart with a bunch of ibm information and what ibm_acpi is known to support)

Thinkpad T30

RAM slot failure, it's a solder failure, usually starts in the second slot and worsens from there. http://www.thinkwiki.org/wiki/Problem_with_failing_memory_slot As-is these machines.

Thinkpad R60

In the frame buffer environment (pre-GUI) the top portion of the screen has a stripe of garbled (red) characters. This fix worked for this chipset:

lspci -k

01:00.0 VGA compatible controller: ATI Technologies Inc Radeon Mobility X1400 Kernel modules: radeon

sudo gedit /etc/default/grup

Edit the GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" to read GRUB_CMDLINE_LINUX_DEFAULT="radeon.modeset=0 quiet splash".

Run

sudo update-grub

Reboot. Is fixed, no?