Results 1 to 5 of 5

Thread: 12.10 and Lenovo SL400. >Keyboard Layout issues + HDD APS<

  1. #1
    Join Date
    Mar 2013
    Beans
    2

    12.10 and Lenovo SL400. >Keyboard Layout issues + HDD APS<

    Hello there!

    Two questions:

    1) How can I make my HDD APS (Hard Drive Disk Active Protection System) work again on Ubuntu 12.10? I have searched around, but only found dusty threads for Ubuntu 10.04 or prior...

    Specs:
    Ubuntu 12.10 (quantal) 32-bit
    Kernel Linux 3.5.0-26-generic
    GNOME 3.6.0

    Intel® Core™2 Duo CPU P8600 @ 2.40GHz × 2

    Lenovo ThinkPad SL400

    ------------------------------------------------------

    2) This question will be better answered by someone from Brazil, but here it goes:
    In Brazil, we have two keyboard layouts if I'm not mistaken. When I switched over to Ubuntu, I wasn't able to configure my keyboard back to its correct layout, meaning that my "? and /" key isn't working.

    Although this isn't a SL400, this is the exact layout of my keyboard (except for the Function Keys, but those are working fine).
    And this right here is the keyboard layout that most closely relates to my keyboard. But I'm tired of having to Press "Alt Gr + q" for "/" and "Alt Gr + w" for "?". Can anyone tell me what is the name of my keyboard layout and how can I successfully change to it?

    EDIT: QUESTION 2 WAS ANSWERED. HERE'S HOW TO FIX YOURS:

    1) Open the terminal (Ctrl + Alt + T)
    2) Type in
    sudo gedit /etc/default/keyboard
    3) A text document will open. On the eight line, there should be a line saying XKBMODEL="pc105" or something similar. Change that to XKBMODEL="thinkpadz60"
    4) Save the document and close it.
    5) Hit Ctrl+Alt+F1
    6) Enter your username (lower case, always) and password.
    7) Type sudo setupcon and hit enter.
    8) Type udevadm trigger --subsystem-match=input --action=change and hit enter.
    9) Hit Ctrl+Alt+F7 to go back to the GUI.
    10) Reboot your computer and it is fixed.

    ~ Answered by: Mikhail.Inspired
    Thank you all very much.
    Last edited by Lucefudu; March 23rd, 2013 at 04:53 AM. Reason: Question 2 was answered.

  2. #2
    Join Date
    May 2010
    Location
    uk
    Beans
    9,249
    Distro
    Xubuntu 14.04 Trusty Tahr

    Re: 12.10 and Lenovo SL400. >Keyboard Layout issues + HDD APS<

    Hi

    Welcome to the forums

    For question 1, i'm pretty sure you will need to install and configure the package
    Code:
    hdapsd
    Code:
    matthew-S206:/home/matthew % apt-cache show hdapsd  
    Package: hdapsd
    <snip>
    Description-en: HDAPS daemon for IBM/Lenovo ThinkPads and Apple iBooks/PowerBooks
     This is a disk protection user-space daemon. It monitors the acceleration
     values through the HDAPS or AMS interface and automatically initiates disk
     head parking if a fall or sliding of the laptop is detected.
     .
     It is recommended that you use this daemon with the hdaps module provided
     by tp-smapi rather the one in the kernel, as this will save you a bit
     power and will work on a wider range of ThinkPads.
    <snip>
    matthew-S206:/home/matthew %
    Details of you laptop's make and model would not go amiss at this point.

    I can't help with question 2 though.

    Kind regards
    Last edited by matt_symes; March 23rd, 2013 at 04:43 AM.
    If you believe everything you read, you better not read. ~ Japanese Proverb

    If you don't read the newspaper, you're uninformed. If you read the newspaper, you're mis-informed. - Mark Twain

    Thinking about becoming an Ubuntu Member?

  3. #3
    Join Date
    Oct 2010
    Beans
    20
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: 12.10 and Lenovo SL400. >Keyboard Layout issues + HDD APS<

    1) Open the terminal (Ctrl + Alt + T)
    2) Type in
    sudo gedit /etc/default/keyboard
    3) A text document will open. On the eight line, there should be a line saying
    XKBMODEL="pc105"
    or something similar. Change that to
    XKBMODEL="thinkpadz60"
    4) Save the document and close it.
    5) Hit Ctrl+Alt+F1
    6) Enter your username (lower case, always) and password.
    7) Type
    sudo setupcon
    and hit enter.
    8) Type
    udevadm trigger --subsystem-match=input --action=change
    and hit enter.
    9) Hit Ctrl+Alt+F7 to go back to the GUI.
    10) Reboot the computer.
    Last edited by matt_symes; March 23rd, 2013 at 01:35 PM. Reason: fixed sudo setupcon. n was outside quote

  4. #4
    Join Date
    Mar 2013
    Beans
    2

    Re: 12.10 and Lenovo SL400. >Keyboard Layout issues + HDD APS<

    Thank you for your reply. I tried the command hdapsd and then verified it with apt-cache show hdapsd.
    But when I tried to test it by typing sudo find / and tilting my computer, nothing worked. Could you tell me how to configure it properly? Thank you!

    PS: I forgot to leave the model: It's a ThinkPad SL400.

  5. #5
    Join Date
    May 2010
    Location
    uk
    Beans
    9,249
    Distro
    Xubuntu 14.04 Trusty Tahr

    Re: 12.10 and Lenovo SL400. >Keyboard Layout issues + HDD APS<

    Hi

    Quote Originally Posted by Lucefudu View Post
    Thank you for your reply. I tried the command hdapsd and then verified it with apt-cache show hdapsd.
    But when I tried to test it by typing sudo find / and tilting my computer, nothing worked. Could you tell me how to configure it properly? Thank you!

    PS: I forgot to leave the model: It's a ThinkPad SL400.
    It takes a bit more work than that to install and configure hd aps on a thinkpad.

    You have already installed hdapsd so no need to install that.

    From the terminal, copy and past these command into it.

    1. Install tp-smapi-dkms to allow hdaspd to see the accelerometer via sysfs.

    Code:
    sudo apt-get install tp-smapi-dkms
    2. Ensure the modules are loaded at startup next time you reboot.

    Code:
    echo -e "tp_smapi" | sudo tee -a /etc/modules
    The -a switch after tee is very important in the line above as it appends to /etc/modules are not overwrites the file.

    3. Load the tp_smapi module now.

    Code:
    sudo modprobe tp_smapi
    4. Ensure the hdapsd daemon is running (It should run at start up).

    Code:
    sudo /etc/init.d/hdapsd start
    5. Test hd aps. Reboot and test again.

    Various configuration values can be set via editing the config file

    Code:
    /etc/default/hdapsd
    That should be all you need to get dh aps running.

    Kind regards
    Last edited by matt_symes; March 23rd, 2013 at 02:07 PM.
    If you believe everything you read, you better not read. ~ Japanese Proverb

    If you don't read the newspaper, you're uninformed. If you read the newspaper, you're mis-informed. - Mark Twain

    Thinking about becoming an Ubuntu Member?

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •