External USB keyboard does not work with T60 after BIOS upgrade

External USB keyboard does not work properly with T60 after 2.26-1.07 BIOS upgrade.
It does the same with or without the docking station.
Anyone else bumped into this problem yet? 
Has someone found any fixes for this?
t

Hi and welcome the forum!
Try uninstalling all USB hub devices from the device manager and reinstalling them again, particularly the keyboard's.
v2.26 is supposed to fix the issue according to lenovo:- http://www-307.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-63024
Hope it helps.
Maliha (I don't work for lenovo)
ThinkPads:- T400[Win 7], T60[Win 7], IBM 240[Win XP]
IdeaPad: U350
Apple:- Macbook Air [Snow Leopard]
Did someone help you today? Compliment them with a Kudos!
Was your question answered today? Mark it as an Accepted Solution! 
  Lenovo Deutsche Community     Lenovo Comunidad en Español 
Visit my YouTube Channel

Similar Messages

  • External USB HD does not work with HAL:

    External USB HD does not work with HAL:
    From the last 10 days the HAL auto-mount with ntfs-3g file system of my external hard drive  does not woks.
    But the manual mount procedure with the command mount -t ntfs-3g /dev/sdb* /mnt/XYZ works.
    I've followed the instructions in the wiki: http://wiki.archlinux.org/index.php/HAL and the system has worked up to the last kernel or HAL update.
    My fat32 usb-stick works without any problem.
    If I try to open the device with KDE it appears an error popup wit this message:
    TODO: have to rethink extra options
    Error: kio_media_mount_helper
    The log from the kernel.log is
    Nov 6 22:03:16 myhost usb 5-1: new high speed USB device using ehci_hcd and address 4
    Nov 6 22:03:16 myhost usb 5-1: configuration #1 chosen from 1 choice
    Nov 6 22:03:17 myhost Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
    Nov 6 22:03:17 myhost ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
    Nov 6 22:03:17 myhost Initializing USB Mass Storage driver...
    Nov 6 22:03:17 myhost scsi6 : SCSI emulation for USB Mass Storage devices
    Nov 6 22:03:17 myhost usb-storage: device found at 4
    Nov 6 22:03:17 myhost usb-storage: waiting for device to settle before scanning
    Nov 6 22:03:17 myhost usbcore: registered new interface driver usb-storage
    Nov 6 22:03:17 myhost USB Mass Storage support registered.
    Nov 6 22:03:22 myhost scsi 6:0:0:0: Direct-Access WDC WD32 00JB-00KFA0 0811 PQ: 0 ANSI: 0
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] 625142448 512-byte hardware sectors (320073 MB)
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Test WP failed, assume Write Enabled
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Assuming drive cache: write through
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] 625142448 512-byte hardware sectors (320073 MB)
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Test WP failed, assume Write Enabled
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Assuming drive cache: write through
    Nov 6 22:03:22 myhost sdb: sdb1
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Attached SCSI disk
    Nov 6 22:03:22 myhost sd 6:0:0:0: Attached scsi generic sg2 type 0
    Nov 6 22:03:22 myhost usb-storage: device scan complete
    and the error.log is
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Assuming drive cache: write through
    Nov 6 22:03:22 myhost sd 6:0:0:0: [sdb] Assuming drive cache: write through
    Do you have some idea ....
    Bye.

    I have done the following:
    Downloaded the patched hal version.
    used makepkg in /abs/local/trunk/ to create a pkg for pacman
    used sudo pacman -U pkgname to install it.
    used sudo nano /etc/hal/fdi/policy/preferences.fdi to create the fdi file with the following content:
    saved the file and removed my ntfs entryes from fstab and rebooted. and still there is no automount off ntfs partitions.
    have i done something wrong?
    br fjodork
    WARNING: what follows is a guide of what did work for me, I'm still in an early stage of learning linux, so please correct me if anything of what follows is wrong/dangerous/stupid. As I said, this worked for me, it's not pretty, since I was learning each step on the fly and I'm sure there are better ways to do this.
    So fjodork, you seem to have done the the necessary steps, though i couldn't get it to work until i first removed hal without dependencies
    pacman -Rd hal
    it will give you some warning about the dependencies, ignore  it since we are reinstalling hal in a few steps.
    First i tried to follow Raymano's link, obviously it showed me nothing in the browser so I thought it might be a broken link.
    So I downloaded the source tarball from here http://hal.freedesktop.org/releases/hal-0.5.10.tar.gz
    unpacked it changed the /tools/hal-storage-mount.c as per Milfadoodle's instructions.
    at first I tried to compile directly from source, the process would finish without a glitch though after reboot nothing changed, as if hal weren't
    installed, i guess there were issues with paths. anyway read on
    Then repacked the source in tarball, copied it to /var/abs/extra/system/hal and modified the PKGBUILD as follows
    makedepends=('pkgconfig' 'gperf')
    options=('!libtool')
    install=hal.install
    source=(${pkgname}-${pkgver}.tar.gz #removed url so makepkg looks in the current directory for the tarball
        hal
        hal-policy.patch
        cryptsetup_location.patch
        hal-0.5.9-hide-diagnostic.patch
        ntfs3g-valid-options.patch)
    md5sums=('6641c30a27c00485c6accac5110ff911' # replace with md5sum of your package's sourceball (run md5sum filename)
             '882f67668cb14a0a9e4a27ef22278027'
             '5ba8b610aa9763a5f42b9f7cbd7a86ad'
    then makepkg (i had to add --asroot, don't ask why
    and finally pacman -U hal-0.5.10-1-i686.pkg
    another reboot and everything worked without a glitch!:D (yeah i know i still haven't got rid of the reboot mentality )
    I have also put the policy files as per the wiki instructions.
    PS: I know this is a dirty way to getting things done but as i said, I'm just starting
    If anyone could comment/correct/explain this post I'd be more than happy, the automount issue was bothering me for about a month now (you'll say why do I need ntfs in the first place? well, I only recently switched for Linux as my primary OS, these are some relics of the M$ era

  • Apple USB keyboard does not work with one internal usb port

    Hi everyone,
    hope someone can help me to solve my problem. I have a MPB13 retina late 2013 since something like 3 months. I have additional screen (dell), usb wired keyboard (apple) and BT magic mouse.
    Since a few days, my usb keyboard does not work well. It only want to work properly when plugged to the rights side usb port internal port and not anymore on the left one. It also work on a usb external concentrator. Before, I had no problem, it worked perfectly. There was no problem such as cofee on it...
    After searching the web on such problem, I tries a few things such as:
    I tried the keyboard on another computer (windows): works fine
    I tried usb stick and external DVD reading on the left internal usb ports: works fine
    I switch the MPB off and turn it back on: the usb keyboard still does not work on the left usb port
    I tried the SMC and PRAM reset : nothing
    Any idea ??
    Thanks
    Guillaume

    I'm facing the same problem, found any solutions ?

  • External Hard Drive does not work with Lion

    Hi
    My External Hard Drive does not work with Lion this message appears:
    NTFS-3G could not mount /dev/disk1s1
    at /Volumes/My Passport because the following problem occurred:
    /Library/Filesystems/fusefs.fs/Support/fusefs.kext failed to load - (libkern/kext) link error; check the system/kernel logs for errors or try kextutil(8).
    the MacFUSE file system is not available (71)
    can anyone help?

    Hi,
    See this Discussion:
    https://discussions.apple.com/thread/3191198?start=0&tstart=0
    Cheers,

  • Apple USB keyboard does not work

    I have the same problem as described by Sweboss on November 15th, 2012. The Apple USB keyboard is working perfectly, but if I shut down the computer, when I switch it on again, the USB keyboard does not respond, and the computer is looking for a Bluetooth keyboard (which I had before). I have tried switching off, unplugging all peripherals, then unplugging the computer, waiting 15 seconds, then plug it in, wait 5 seconds (this is a remedy proposed in other mails). Switch on and the USB keyboard does not respond. It is not that particular USB port, as it works perfectly well with other peripherals like my scanner, or printer, and changing ports does not help. And when I tried it last time, I had no other USB peripherals connected. Can anyone help?

    That is definitely some strange behavior, good to finally be working, but does not explain exactly what causes the behavior.  Could have something to do with the energy saver part of the operating system, or a miscommunication with the USB bus itself.  With multiple USB ports it would be good to test on different ports to see if that is an issue.  Anyway, it is working now and that is good.
    Another I don't know why but it works: a couple months ago a user was having problems with a wireless keyboard.  The keyboard-iMac communication resulted in random charaters, time lag, and other bad behavior.  The user finally found by accident that turning the keyboard off, removing the batteries, and then spending about five minutes just pressing keys, placing the palm of the hand on the keyboard and pressing, just pressing and pressing, and then replacing the batteries and turning on the keyboard, it worked fine.  Seems like it is necessary to just force the keyboard to discharge all of the key switches.  Those keyboards use capacitance switches instead of mechanical switches.  So they retain a charge.
    While that was a wireless keyboard, I wonder if that was what happened in a way with your keyboard...the unplugging and leaving it for a period of time, any charge may have dissipated and it would work again.  If this happens again, try the above procedure and see if it helps.

  • One USB port does not work with external Disk or USB key

    Hello,
    Back to my iMAC there is 3 USB port. The second one - in the middle - does not work pluging an external Disk, an USB key or an iPOD nano. However it works well connecting a Wacom tablet.
    Is there an explanation to this behaviour ?
    More the keyboard is plugded on USB port 1 and the mouse on the keyboard. Time to time - especially at reboot - I have to unplugged the mouse and plugged again it in order it works.
    In advance thank you for your answers
    Regards

    Since it does not work for three different devices, I will assume it is not something simple like a faulty USB cable. Since it does work for one device, I will also assume that the port is (at least partially) working.
    As a test to narrow down the cause, I would try restarting from your Mac OS X installation disc (insert disc and restart with the C key held down).
    At the first Installer screen (after language selection), go up the menu bar. Under Utilities, select to run Disk Utility. Now, connect the USB drive into that center port. Does it appear in the Disk Utility sidebar?
    Please post back the result...

  • USB Ultranav keyboard does not work with Windows 7

    Hi, I recently installed Windows 7 to my Dell Latitude XT tablet and was disappointed to learn that my USB Ultranav Keyboard only works as a keyboard and not a 'mouse'; that is, the ultranav devices (touchpad, buttons, and trackpoint) do not work.  I have not had problems with the keyboard functioning in XP or Vista, so it was surprising to find that it will not work with W7.
    I thought all was going well when W7 recognized the Ultranav keyboard when I plugged-in the device, but all did not go as planned.  I let W7 find the drivers through Windows update, but then once they didn't prove to work, I followed W7's directions of reinstalling the drivers in its version of 'Compatability Mode', but that still didn't prove to work.  I would really appreciate any insights into this problem as it is one of my only (current) hesitancies about using W7.
    Thank you for your time and attention to my inquiry.
    Cheers,
    Tsugazi

    Hi, strangely enough, I got it to work.  Here's the what I did differently (for those with a similar problem):
    After installing W7, I plugged in my keyboard and let Windows find the drivers.  When this didn't provide functionality of the ultranav devices, I tried installing the Ultranav drivers, and when Windows said there was a compatability problem, I then opted to let Windows re-install the Ultranav driver.  Unfortunately, this didn't provide functionality either.
    Jump ahead 12 hrs and re-install of W7 (for other reasons).  This time out, I installed the Ultranav driver, THEN plugged in my keyboard.  Everything works now!  I don't know that this sequence will work for everyone, but it did for me.
    Thanks for your comments.
    Cheers,
    tsugazi

  • USB Camera does not work with iChat

    Hello,
    I'm having a terrible time getting my ToUcam Pro II to work with iChat. I downloaded the iUSBcam program. That didn't work. I downloaded the program Macam, and copied the proper file into the Quicktime Library (as suggested) and that didn't work. I downloaded IOXwebcam, and got an error stating that it wouldn't run due to the fact that it didn't have the proper security settings. Sigh.
    So... what am I to do?
    I'd like to buy a webcam that does, actually, work with my 8 month old Mac Pro 4 core mac desktop, but the iSight camera is ridiculously expensive. Any other suggestions would be appreciated.
    Brad

    An X-box 360 cam will do it although not in that list.
    Anything that is USB 2.0 and marked UVC compliant or Vista Certified.
    Be Aware some Mac Keyboards do not have USB 2.0 ports.
    11:57 PM Tuesday; September 8, 2009

  • Excite Pro AT10LE-A-108: After JB 4.3 upgrade external BT keyboard does not work

    Hi all!
    After upgrade JB 4.2 to JB 4.3 does not work my bluetooth keyboard.
    Pair ok, tablet keyboard sees, but not responding.
    Please, make toshiba repair package or fix problem.
    On other my android device (LG phone with 4.1.2) working this keyboard ok.
    Sorry, my english is very bad. (Google translator)
    Thank you.
    [Keyboard Type|http://www.trust.com/en/all-products/18441-executive-folio-stand-with-bluetooth-keyboard-for-ipad]

    Ok, please, i want downgrade to JB 4.2 for this tablet, it is possible?

  • USB port does not work with a screen

    Dear All,
    My manager has a MacNook Air 10.8 and he is using a large 27'' Apple screen.
    He connects the screen to the MacBook Air with a cable which has 3 connections (USB, power, Tundetoh)
    He reported to me, that some time, he connect a mouse or a keabord to the USB, at the back of the screen, the two devise does not work, while it works when the devise are connected to USB port of the MacBook Air.
    His Macbook Air software are uptodate.
    Does you know how to make working the USB devise connect to the screen?
    And what does make those trouble?
    Cheers
    Pierre

    Is there special softwer for thunderbolt to update or install?

  • Wireless keyboard does not work with Safari.

    Space bar does not work when using Apple Wireless Keyboard with Safari to fill web forms.
    No problem with Firefox.
    Early 2008 iMac, 10.10.1, 6GB Ram

    Im going to assume you are using the Apple Wireless Keyboard with your devices.
    Whats probabaly happening is both of your devices are trying to connect to your keyboard at the same time and it is causing it to not function properly.
    I suggest you disable bluetooth on the device you AREN'T using and try it again with the one you ARE using.
    If this doesn't solve your issue, try re-pairing the keyboard with the iPad you wish to use it with. It may have just not made a strong connection.
    Hope these suggestions help!

  • Thinkpad laptop, red "mouse" button/nub in keyboard does not work with version 4.0, Why?

    IBM and/or Lenova laptop computers have the red button/nub in the center of the keyboard that acts with "mouse" functions such as scrolling up and down pages. After downloading Version 4.0 of Firefox this feature does not work anymore. Is it locked in some settings?

    i figured it out!
    1) go to control panel
    2) click on mouse
    3) click on the UltraNav tab at the top
    4) for the TrackPoint, i have the Enable TrackPoint box checked and the "Use as pointing device with advanced features
    5) click on Settings
    6) click on settings again towards the bottom right
    7) for "Scrolling Type" click on Smooth.
    that should work!

  • After installing Snow Leopard, my external apple keyboard does not work. Any ideas?

    After installing Snow Leopard (v. 10.6.3), my external Apple keyboard no longer works. Any ideas?

    The laptops are called MacBooks there really is no MacPro laptop.
    MacBook Pro Apple Support -
    MacBook Pro specs 17-inch model
    MacBook Pro

  • Apple USB keyboard does not work on PC (Windows 8)

    I am trying to use my USB Apple Keyboard with Numeric Keypad with my PC that is running Windows 8 but it will not work. It does not respond at all. It works fine with a USB mouse and a different keyboard.
    Are there any drivers that are required?

    I'm facing the same problem, found any solutions ?

  • Logitech USB microphone does not work with OS 10.4.11

    My logitech USB microphone was working fine, at one time. Now it does not function. In the sound prefs setup, it shows a level reading, as if it is hearing the input, but there is no output. I have tried every setting I could find in Audio Midi Setup as well, and nothing seems to work, and the "thru" option is not available. Can somebody help me here?

    Hi stuntmedia, and a warm welcome to the forums!
    See if it's the Mute button first...
    http://www.macosxhints.com/article.php?story=20070714102116127
    If that doesn't work, LineIn should...
    http://www.rogueamoeba.com/freebies/

Maybe you are looking for