Ajust laptop brightness

Hello everyone, i have this strange issue: i can't ajust my laptop brightness.
The display indicates it is reducing/increasing but nothing happens ...

https://wiki.archlinux.org/index.php/Backlight#ACPI  and see this post from another thread:  https://bbs.archlinux.org/viewtopic.php … 8#p1472378
Start with that and if you're still stuck we will require a lot more information than "I can't adjust my laptop brightness."
Last edited by MoonSwan (2014-11-05 18:14:34)

Similar Messages

  • [SOLVED] Systemd forcing laptop brightness down to zero.

    Can somebody please, pretty please, explain to me how I can tell systemd to STOP turning off my laptop brightness half-way during boot?
    Started Load/Save Screen Backlight Brightness of acpi_video0.
    Turns brightness down to zero. According to the man page:
    [email protected] is a service that restores the display backlight brightness at early-boot and saves it at shutdown. On disk, the backlight brightness is stored in /var/lib/backlight/.
    On my Arch it is actually in /var/lib/systemd/backlight/acpi0. I tried modifying the value to anything between 1 and 100 but it the file is reset to 0 every boot, maybe this is normal.
    I also tried to disable the damn systemd-backlight service but it re-enables itself every boot too.
    Please can somebody help me, I'm pulling my hair out. I have tried various kernel parameters and acpi_backlight=vendor works but forces brightness to 100% and I can't change it. (unless of course if I force /sys/class/... which is not a solution)
    Last edited by beanaroo (2013-10-12 07:30:49)

    It definitely isn't normal for it to keep going to 0. Mine currently has the value 12 in it. (My file is /var/lib/systemd/backlight/acpi_video0.) I'm not sure if it makes a difference that I have laptop-mode-tools managing the backlight, though. But I don't see it go to 0 at any point during boot.
    That is, unless something somewhere is configuring it this way, this sounds like a bug and the solution you're using a work around. Not suggesting you shouldn't use it, of course, but maybe worth reporting, too?
    Last edited by cfr (2013-10-16 02:25:51)

  • [SOLVED]suspend laptop: brightness always goes to 0

    Hi everyone,
    I'm using laptop-mode to control the brightness of my LCD. Here is the snipped of the "/etc/laptop-mode/conf.d/lcd-brightness.conf":
    # Should laptop mode tools control LCD brightness?
    CONTROL_BRIGHTNESS=1
    # Commands to execute to set the brightness on your LCD
    BATT_BRIGHTNESS_COMMAND="echo 22"
    LM_AC_BRIGHTNESS_COMMAND="echo 23"
    NOLM_AC_BRIGHTNESS_COMMAND="echo 24"
    BRIGHTNESS_OUTPUT="/proc/acpi/video/IGFX/LCD/brightness"
    I work with a lot of vim sessions and multiple xterms and when I set my laptop to hibernate (suspend2disk) with pm-utils, everything works lightning fast and without a problem (Arch is a revelation for me, it's magnificent). The only problem is that the brightness variable in the /proc/acpi/video/IGFX/LCD/brightness, the current one is set to 0 after I wake up from suspend to disk. If I unplug the cable, nothing happens (switch to battery), if I plug it back in, a small increase (not like the huge ones I have defined in the code block above) happens.
    What could be the reason? Could acpi control this even if I have set the laptop-mode obviously to control the LCD?
    Has anyone had these issues? This is the only thing that is keeping me shuting down the machine.... and to resume my work after takes about 4.67 annoying minutes with the use of vim sessions....
    Help?
    Last edited by tomislavski (2010-04-21 11:59:09)

    I found the solution.
    The note in the /etc/laptop-mode/conf.d/lcd-brightness.conf that states that these values for the echo commands at the bottom of this file can be read from /sys/class/backlight/../max_brightness are wrong at least for my Laptop. This info is for HP Compaq 615:
    if you want to have your brightness set properly, check out the values that are already in the /proc/acpi/video/IGFX/LCD/brightness file (with maybe IGFX changed to VID on some machines). In this file the values are defined from 0 to 100, so the value of 24 from the max_brightness file is actually a very low brightness value, not even near to 100% brightness. The proper way to define the echo commands in lcd-brightness.conf file is to set them accordingly to the ones defined in the brightness file, not max_brightness file.
    cool. I love Arch linux. It makes me learn.

  • Laptop brightness in gnome

    hi i have a small problem. every 2 minutes the brightness of my laptop is going down to about 50%. so everytime i have to manual set the brightness to 100% with FN keys. what can i do?
    thanks

    Hohoho wrote:I had the same issue, but my memory fails me too, its one of these for sure:
    1) use xscreensaver instead of gnome-screensaver, or none at all
    2) play around with xset settings in terminal
    3) use gconf-editor and look for some keys relating to gnome-power-manager and screensaver, switch em around
    allright now! i found a tutorial how to replace gnome-screensaver with xscreensaver! there is no problem with brightness! and i like the skytentacles thing!! xd
    Last edited by manolos (2009-07-02 01:08:40)

  • [XFCE] Laptop Brightness OSD?

    A couple days ago, I was checking to see if brightness adjustment worked [it hadn't for the longest time, but I figured I'd try anyway since my laptop was almost out of battery] and it didn't at the time. However there was a bubble in the middle of the screen showing the supposed brightness level.
    I've since figured out how to get my backlight working, but I can't get that OSD to appear again. From what I've been able to search up, it seems to be part of xfce4-power-manager.
    I'm wondering: Does anyone know how to get this working reliably or know of a lightweight alternative to it?
    Thanks!

    Actually, I have working brightness keys (acpid + acpi_osi=Linux kernel bootline got this working), but I was looking for the actual notify bubble. It happened like twice, and it seems that XFCE's power manager is responsible for this, but there isn't any setting or documentation on this.
    Your reply prompted me to make a little script that sits in the background and makes notify bubbles for brightness, since this has been a nagging issue every time I have to go mobile.
    Here's a little script that shows notify bubbles if you change the brightness, the only issue is that (with xfce4-notifyd at least) the bubbles don't replace each other, so I set the expire time a little low and set the delay time a little higher so you don't end up filling your screen with bubbles.
    The only non-standard dependency is bc, since bash can't do floating point math.
    #!/bin/bash
    # Put the full path to your backlight's sys folder here.
    backclass=/sys/class/backlight/acpi_video0
    # How long to wait between brightness checks? (Seconds)
    delay=2
    while true; do
    # Get the current backlight number
    read current<"${backclass}/actual_brightness"
    # Check for changes
    if [ "$current" != "$last" ]; then
    # If there ARE changes, it's ok to run the rest.
    read max <"${backclass}/max_brightness"
    percent=$(printf "%s\n" "scale = 2; ${current}/${max}" | bc | tr -d '.')
    # Spit the notification out on whatever notify daemon we're using
    notify-send "Brightness" -i xfpm-brightness-lcd -h int:value:${percent} -h string:synchronous:volume -t 4000
    fi
    # Create a "Last" Value for the next check
    last=$current
    # Wait this long before running the check again
    sleep $delay
    done
    Last edited by DarkSniper (2012-03-03 19:49:12)

  • Laptop brightness too bright after installing kpowersave!!

    Just managed to install kpowersave-devel 0.7.3-1 using AUR.
    However, after restarting the laptop, the brightness is extremely bright.
    command
    xbacklight -dec 30%
    outputs
    No outputs have backlight property
    After idea what can be done to adjust the brightness?
    I am using the kde (not kdemod)

    zyghom wrote:why do you use xbacklight ?
    kpowersave is not enough ?
    there are options there
    Good questions  
    I am stumbled by habit !!  Was using xbacklight previously and never thought too much about kpowersave.
    You are right , kpowersave can do the same :lol::lol::lol:
    my apology for the confusion !

  • Can't adjust screen brightness on Acer Aspire One anymore

    It used to work before, but now that kernel26-one-dev is really outdated, I've started using the standard Arch kernel26 package. I can't adjust brightness with the fn keys, and GNOME's brightness adjustment applet says it's unable to get laptop brightness read.
    I guess it could be acpid related, /sys/class/backlight/ is empty, but I'm currently doing a full system upgrade and will update the thread if that solves it.

    Hello myizham,
    Welcome to the HP Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I understand you are having issues adjusting the screen brightness on you HP Envy 23 Beats Edition All in One PC. I would be happy to assist you, but first I would encourage you to post which operating system you are using. And whether your operating system is 32-bit or 64-bit as with this I can provide you with accurate information.
    Which Windows operating system am I running?
    Is the Windows Version on My Computer 32-bit or 64-bit?
    Please re-post with the requested information and I would be happy to provide you with assistance. Thank you for posting on the HP Forums. Have a great day!
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • Lenovo B570e brightness not working

    i have bought lenovo B570e nine months ago. everything was going fine. now i have reinstalled the win 7 but brightness control is not working. other Fn keys are working correctly except brightness. laptop brightness is stuck to maximum. kindly help me out. thanks in advance

    hi zaidi7,
    Thanks for Using Lenovo Community Forums!
    Can we try installing this Driver for your Display
    Intel Wireless Display Driver
    89zz04ww.exe
    115.24 MB
    And try uninstalling the Lenovo Energy managerment Software under control panel / Programs and features uninstall
    and reinstall this
    Lenovo Energy Management Software
    CAEZ19WW.exe
    13.7 MB
    Best Regards
    Solid Cruver
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Sony VGN-FW53GF Laptop media keys

    Hi All,
    I am trying to get the media keys (Play/Stop/Fwd/Rev) going on my Sony.
    I found that there is a "sony-laptop" module available to trap ACPI events.
    I did a "modprobe sony-laptop debug=1" with the following results shown by dmesg:
    sony-laptop: Sony Notebook Control Driver v0.6.
    sony-laptop: method: name: _INI, args 0
    sony-laptop: method: name: PWAK, args 0
    sony-laptop: method: name: GWDP, args 0
    sony-laptop: method: name: GSNE, args 1
    sony-laptop: method: name: SSNE, args 1
    sony-laptop: method: name: CSXB, args 1
    sony-laptop: method: name: SODV, args 1
    sony-laptop: method: name: GDDI, args 0
    sony-laptop: method: name: STCS, args 1
    sony-laptop: method: name: RBMF, args 1
    sony-laptop: method: name: RSBI, args 1
    sony-laptop: method: name: CBMF, args 1
    sony-laptop: method: name: EAWK, args 1
    sony-laptop: method: name: SN00, args 1
    sony-laptop: method: name: SN01, args 0
    sony-laptop: method: name: SN02, args 1
    sony-laptop: method: name: SN03, args 1
    sony-laptop: method: name: SN04, args 0
    sony-laptop: method: name: SN05, args 1
    sony-laptop: method: name: SN06, args 1
    sony-laptop: method: name: SNCM, args 0
    sony-laptop: method: name: SN07, args 1
    sony-laptop: method: name: SNF0, args 1
    sony-laptop: method: name: SNF1, args 1
    sony-laptop: method: name: SNF2, args 1
    sony-laptop: method: name: SNF3, args 1
    sony-laptop: method: name: SNF4, args 1
    sony-laptop: method: name: SNF5, args 1
    sony-laptop: method: name: SNF6, args 1
    sony-laptop: method: name: SNF7, args 1
    sony-laptop: method: name: SNF8, args 1
    sony-laptop: method: name: SNF9, args 1
    sony-laptop: method: name: SNFA, args 1
    sony-laptop: method: name: SNFB, args 1
    sony-laptop: method: name: SNFC, args 1
    sony-laptop: method: name: SNFD, args 1
    sony-laptop: method: name: SNFE, args 1
    sony-laptop: method: name: SNFF, args 1
    sony-laptop: method: name: SNAV, args 0
    sony-laptop: method: name: SNGN, args 1
    sony-laptop: Doing SNC setup
    input: Sony Vaio Keys as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/SNY5001:00/input/input13
    input: Sony Vaio Jogdial as /devices/virtual/input/input14
    sony-laptop: brightness ignored, must be controlled by ACPI video driver
    What I don't understand is how to use this information. The /devices.... do not exist.
    On this laptop I also have an S1 and AV MODE key and volume keys.
    The volume keys work out of the box. The S1 key prints out:
    sony-laptop: sony_nc_notify, event: 0x20
    sony-laptop: sony_nc_notify, event: 0x38
    and the AV MODE key prints:
    sony-laptop: Unknown event: 0x100 0xa1
    sony-laptop: sony_nc_notify, event: 0xa1
    sony-laptop: Unknown event: 0x100 0x21
    sony-laptop: sony_nc_notify, event:
    0x21
    The media keys print nothing ....
    Any ideas?

    The media keys don't have acpi events, they are regular xf86-media keys that you can assign normally like on any multimedia keyboard. You only need the standard sony-laptop module enabled (which you already have), the Z-version won't help as it only contains extra information for z-specific hardware like dual-graphics and hsdpa module etc.
    wiki entries:
    http://wiki.archlinux.org/index.php/Extra_Keyboard_Keys
    http://wiki.archlinux.org/index.php/Ext … ys_in_Xorg
    gentoo wiki:
    http://en.gentoo-wiki.com/wiki/Multimedia_Keys
    Last edited by litemotiv (2010-01-21 22:10:56)

  • Yoga 2 Pro Brightness stuck at 100%

    Hi,
    After the last BIOS update my laptop brightness is stuck at 100%. 
    Lenovo tech. did remote access and reinstalled Graphic drivers and changed registry for brightness and that didn't work.
    He told me I will have to send the laptop in and they would have to reset the BIOS manually there to fix the issue and that everything will get wiped out.
    Has anyone else had the same or similar issue. 
    If yes is there any other fix?
    Thank u guys.

    Hi
    have the same issue, cannot change brightness since yesterday, it is stuck at 100%, brightness keys don`t do anything, in Charms bar brightness level shows a lock. 
    But it all happened WITHOUT the latest bios update and before latest grahics driver from Lenovo website was installed!
    I even made the bios update and tried all newer/older graphics driver in hope of a change. but nothing changed. Unfortunately my Windows recovery points from days ago are showing errors, so i can`t go back a few days, can only try to refresh windows if there is no other solution...
    Any help??

  • Satellite C850-B735 brightness control stop working

    Hi,
    I am having problem with brightness control.
    When I restart or start my laptop, brightness control works fine (fn+f2 to decrease, fn+f3 to increase)
    When I sleep laptop and resume laptop, the brightness control stop working and brightness of lcd remains to high bright.
    i-e- when pressing fn+f2 or fn+f3, brightness is not decreasing or increasing.
    It was working before two days. I didn't install or update any display driver and driver from toshiba download site is installed from the day first. display-20130111074851.zip

    Hi Chand
    This is user-to-user forum and we can try to help you with useful tips.
    You cannot expect that someone collect and send you drivers. How to send you, for instance, display driver with 100 MB capacity.
    You must download it alone. I presume you have machine designed for Middle East so visit please Toshiba support page on http://www.toshibamea.com/ choose your destination and check for support. As far as I know Toshiba offers drivers for supported operating systems.
    Instructions about Win8.1 upgrade you can read on http://www.toshiba.eu/innovation/generic/windows8_1-message/
    By the way: have you upgraded Win8 that you got to Win8.1? Im not 100% sure but I presume you got machine with Win8 64bit version, right?
    Have you created recovery media before you have installed Win8.1 version? If not please do this. Recovery media creation is very important.

  • Tecra 8000 on XP pro ... how to adjust brightness

    Hi
    I have recently purchased a Tecra 8000 with XP Pro installed.
    Unfortunatly the LCD appears too bright but I can find no way of adjusting it.
    I understand that there is a display utility for adjusting toshiba laptop brightness.
    Can someone tell me if there is one for XP and if possible direct me to it
    cheers
    Michael

    Hi
    Usually the key combination FN+F6 and FN+F7 decreases or increases the display brightness.
    But this works only if the Toshiba drivers are preinstalled. So check firstly if you have installed all necessary drivers and utilities on your notebook.
    Do you know where to find the necessary drivers on the Toshiba page?

  • Q&A Guide about ZEN Touch 2

    Hey people!
    I had time to kill, and I've been around since a while now; I now own a ZEN Touch 2 since more than 6 months. I figured out I'm able to help quite a lot of people about this device, actually (even though I don't have an astronomic number of posts), and I felt like writing a little guide about common questions about the ZEN Touch 2 could help, why not?
    First of all, this is a guide applying to the ZEN Touch 2, I don't know about the ZiiO. Maybe my tricks will work on both devices, but I can't be sure about it.
    LAST UPDATED: November 23th 2012.
    Q: Why does my ZEN Touch 2 freeze so often?
    I've got 2 theories about why these freezes happen so often: I own another Android device, which have a fairly weaker processor than the ZEN Touch 2, and it does not freeze at all. So the ZEN Touch 2 is quite powerful! But even on Android 2.2.1, it's perhaps the installed stock firmware that is unstable. That cause the problem.
    Second theory, I believe the ZEN Touch 2 don't have much RAM availible! Around 200-256 MB. What's interesting here, is that my other cellphone does have a weaker processor (600 MHz VS 800 MHz), but it also have more RAM, 512 MB! That could be the reason why the ZEN Touch 2 freeze so often, when the device is basically running out of RAM.
    Or it could be both! An unstable firmware installed, and no enough RAM. Who knows?
    Q: Okay, but how can I fix this issue?
    There's no magic way to make your device running super-fast like any other smartphone, especially if the problem is the lack of RAM, rather than the unstable firmware. The number 1 solution, it's obvious: uninstall APPs. The more APPs are installed, the more RAM they use. The more your device is going to freeze/crashe. Myself, I don't have many APPs installed, only 17 (Some of them being like 500 Ko, or even extensions or themes, that are only 150 Ko). I use my ZEN Touch 2 only for listening to music, and browsing the Internet using Flash Player. It does the job well enough.
    What you could also do, is install the APK/APP Fast Reboot Pro. I have it installed, and it free your phone memory everytime you unlock your screen, or press the widget. Extremely usefull. That'll help to prevent the ZEN from freezing, a bit.
    Well, even though I have 17 APPs installed, including Fast Reboot Pro, my Touch 2 still crash, rarely. I've been experiencing a serious issue about my ZEN booting loop, for no reason at all! Had to boot in recovery mode, and wipe the data. Which lead me to think the stock firmware can also be the problem for unstability.
    Q: How do I install APPs on the ZEN Touch 2 ?
    Since the Market is unavailible (I've tried to install it without any success. However, seems like some people managed to install it, most probably with root. I've tried, but cannot get it to work, myself), you'll have to download APK files. You have the choice to download from ZiiO Space, or from any other website. Download an APK file, save it anywhere on your SD Card, then open the built-in APP "Explorer" on the ZEN. Lauch the .APK, install it, and you're done.
    Remember to check "Enable unknown sources" on the "Manage Applications" menu!
    A fastest method, you could manually download and install "SlideME". I've used it for a while, and it's a Android-Market / Google-Play "Like". It'll work without any problem on the ZEN.
    Q: Is the ZEN Touch 2 rootable ?
    Yes it is!
    First thing first, rooting your device will void your warrantee. I did it, since I live in Canada, and I have no intention of returning the device in California if it break. I am not responsible if you brick your device doing the process, even though nothing wrong should happens. If you don't know what is Root Access, you better not doing this.
    I've used the following method. It worked like a charm.
    Install the Z4Root APK. Now your Antivirus (Computer maybe, and ZEN Touch 2 antivirus as well, if you have one) will warn you it contain a malware. Z4Root is not a virus! Simply because it perform actions that can be dangerous to your device, that's why you get a warning.
    Launch Z4Root, and press the "Root" button (Not temporary). Z4Root will do the rest automaticly! Then your device will reboot, which is normal. Don't do anything during the rooting process, however!
    If the rooting worked, you should now see the APP "Superuser" in your APP Drawer.
    You still have the option to Un-Root your device - assuming you want to return the ZEN to the store, for example - by launching Z4Root again, and press the button "Un-Root". Simple as that.
    Q: Can you install a Custom ROM such as Cyanogenmod ?
    I've tried without any success... I was hoping install another firmware would make the device as stable as it should be.
    I installed ROM Manager, but when the APP ask you to backup your current bootloader and select your device, the ZEN Touch 2 isn't in the list, so I couldn't perform the backup.
    There are more complex ways of installing another ROM, but I haven't tested those. This is becoming quite dangerous.
    I requested help on XDA Forums, but haven't got any, sadly.
    Q: The GPS doesn't work !
    Okay, so I don't know if your device really is defective, but I can tell you about my experience; I always disliked Google Maps APP, since it requires you have a Wi-Fi connection availible to use your GPS. Not pretty helpful when outside.
    What I recommend you, is to install the APP Locus (Keep that in mind: the more APPs you install, the more your device will freeze.). Free version is powerful enough. What I like about this magical APP, it allows you to download maps, so that you can view them offline (They are pretty big in size)! Download a few maps, and activate your GPS, it should seek your position.
    I believe when people says their GPS doesn't work, it's mainly because the ZEN Touch 2 GPS is really slow to find your position. Really. I first had trouble with this too, and for the GPS do to his things, this can takes up to 15-30 minutes, no kidding. And when the GPS work, it have chances to loose your position randomly.
    So yeah, sad to say that, but the GPS on the Touch 2 isn't the best. My position is find instantly on my other 600 MHz smartphone (LG Optimus One).
    Q: What is the Recovery Mode, and how do I access it ?
    You can access Recovery Mode by holding the HOME button and then turning ON your device at the same time. This menu can be really useful, and even save your device, like it did for me.
    Here are the options availible:
    - Reboot System Now;
    - Apply Sdcard : update.zip;
    This is used to update your firmware if you're still on Android 2.1. You could also install Custom ROMs with the filename update.zip that you've put to the root of your internal storage. Highly not recommended to install any Custom ROM, since these ROMs aren't customized for the ZEN Touch 2, simply!
    - Wipe Data / Factory Reset;
    This delete all of your data on the ZEN, to bring it back to his original state. For some reason, when I used this option, it kept everything that's on my internal storage (Music, Pictures..). GLAD that did. What I've lost, were the APPs I installed, and my Android settings. My APPs were all backed up, so that was no big deal. I wiped the device 3 times, and I can confirm that the data in /mnt/sdcard (The internal storage where you put your music, on USB) isn't deleted. All you have to restore is APPs (If they're backed up, that's fast) and ZEN settings.
    Also, be advised that wiping the device does not "unroot" the ZEN - Superuser APP is still there, and the device is still rooted. Notice that if you have uninstalled system APPs (see below), the APPs won't be reinstalled automatically. You'll have to reinstall them manually, if you want them back - hope you have a backup of these APPs!
    I had to use this option to stop my ZEN from booting in loop. I thought it wouldn't change anything!
    - Wipe Cache Partition;
    Wipes the cache partition of the device to clear all the data accumulated there over use.
    Thanks to Haroon Q. Raja from AddictiveTips for the info.
    Q: Would you qualify the ZEN Touch 2 as a durable unit ?
    Well, "on the outside", yes. People (Not me! :P) dropped my ZEN twice, without any consequence (That freaked me out).
    Maybe I was lucky, don't know. But durable "on the inside", the firmware and all this stuff, it's a no-no. I should you have more chance that your ZEN will die for no reason because of the firmware, rather than die because you dropped it (Well, just don't drop it in the pool...).
    Q: The stock music player suck, I have no control at all !
    What I recommend you to install (Personally) :
    PlayerPro for the look;
    PowerAMP for functionalities. I used PowerAMP, since it sort my music better. I've switched to NRG music player, since PowerAMP became glitchy, for some reason.
    Both are shareware, but since there's no access to the Market, you have no choice, but to download illegally. I apologize Creative, for approving the download of APPs, but what else can we do? Simply make the Markey availible, that will sove this issue.
    If you plan on getting PowerAMP, get it here, along with the Full Version Patch (You HAVE to be rooted for this to work! Tested, and work in my case):
    http://forum.mobilism.org/viewtopic....fdb7e20fd84c70
    1. Unistall your current version of PowerAMP.
    2. Install PowerAMP.2.0.4.467 APK (Do not run it!)
    3. Install PowerAmpPatcher by ChelpuS APK
    4. Start the Patcher, and press the button.
    5. Reboot the ZEN, then start PowerAMP. That should do it.
    Warning: You will loose all your previous PowerAMP settings, however!
    Since the ZEN Touch 2 is not a Google cellphone / has no Android Market, this is the only way to have PowerAMP all the time on your ZEN.
    NRG Music Player is pretty decent as well, it can play different formats that PlayerPro can't. Still a shareware, but easy to download and install without hassle.
    Q: Which Photo Gallery do you recommend ?
    Everyone agree, nothing is worst than the Android stock Gallery, super slow, and doesn't sort your pictures at all! Again, I have 2 recommendations:
    Grab Quickpic or Picturen. Both are extremely light (500 Ko), fast and there are a lot of zoom steps, for us ZEN Touch 2 owners without any multi-touch support! You can also hide the useless folders, or add a password to these hidden folders, if you prefer!
    JustPictures! is also excellent, as well. Take a bit more space, a bit slower, but the interface is more attractive, and One-Touch zoom is supported. Some functions that are in QuickPic aren't in this APP, but I feel like JustPictures sort my photos better. I can put differents "accounts" or "folders" to sort all my pictures.
    Screw the original 3D Gallery!
    Q: Any browser I should get ?
    That really depend on what you do...
    Read this article, from november 2011:
    http://www.tomsguide.com/us/Android-...view-1705.html
    Opera Mini is lightning fast, but unfortunately, Flash Player is unsupported on this browser!
    Note: Avoid browsing the Internet with a ZEN full of APPs, you'll get in trouble. I did this, and this was a nightmare, freezing all the time, have to reset...
    I do this now, but with my 17 APPs installed. It's quite OK, I should say. Especially that I use Flash Player a lot.
    Q: Any Home Replacement you recommend ?
    I've been using Go Launcher Ex for a while, because it's resonably fast, beautiful and way customizable; ADW Laucher is pretty fast, too. I've now switche to Nemus Launcher - way lighter (The GO Dev Team applications really are getting bloated by useless features, sadly), and still pretty beautiful. Go Launcher Ex is more customizable, but is getting bigger and bigger in size (And RAM, maybe. Not sure.). 8-10 MB or up for an APP? Even for a Home Screen, I hope you're kidding me.
    Both APPs allow you to add folders to the APP Drawer ! Excellent!
    Q: I want to disable / customize the lockscreen.
    Disable the lockscreen: NoLock;
    Customize the lockscreen: WidgetLocker.
    Q: Does the games play well ?
    Yes, pretty good, with the 800 MHz processor of the ZEN Touch 2 !
    Comparing it to the 600 MHz processor of my LG Optimus One, there really is a noticeable differece in fluidity. The vast majority of the games doesn't lag on the ZEN Touch 2, that's great.
    If you want to try those games emulators (SNES, Genesis...), go ahead, they work decently. Unfortunately, since the Touch 2 doesn't have multitouch, that's a problem, but try to set Left-Right as volume Up-Down to move your caracther, it's pretty playable and fluid enough. The best games are the RPGs, for sure, since multitouch isn't necessary at all.
    There are also 3D emulators, such as N64oid or PSX4Droid; these also work, but watch out! At that point, 800 MHz is not enough for these games to be "playable". Super Mario 64, for example, is the most playable game availible for N64oid, and still then, it is really slow (Not that enjoyable, seriously).
    You're free to try N64oid or PSX4Droid for fun, but just saying, if you want to freeze your device, this is the way to go.
    Super Mario 64 shouldn't freeze instantly your device. However, Mario Kart 64, Donkey Kong 64 or Tony Hawks (Tested) freeze your device for sure - you wouldn't even get past the "Press Start" screen. My advice: only try Super Mario 64.
    Still then, the ZEN does play games (2D or 3D) smoothly enough!
    Q: My ZEN keep booting in loop! What should I do ?
    That happened to me once in a while, and this is freaky.
    "ZEN Touch 2" screen, "Touch the Sound of Perfection screen" again, and again, and again...
    First: wait. Maybe it'll boot
    If your launcher still doesn't start, reset button (Inside the SD Card slot, very tiny) is your only choice, of course. Reset, then power it up again. It booted for me all the time, except once.
    If that still doesn't work: Recovery Mode, like stated earlier.
    Now, here's what could happen if you reset during the boot sequence; I got this extremely annoying problem like 3 times. Hooray, you can get to the launcher!
    Now, what can unfortunately happen, is that you get random popup like "SmartKeyboard Pro Force Close", this stuff. You'll keep getting these popups. That mean the vast majority of your 3rd Party APPs are corrupted, and you'll have to uninstall, then install again almost every single APP... This is a serious pain!
    Now, don't install again. It is very important that you uninstall first, then reinstall. Otherwise, it won't work. Luckylli enough, your stock APPs will remain intact (Default Music Player, ZiiO Space, Explorer...)
    Hope you don't get this problem!
    Q: The ZEN freeze at "Touch the Sound of Perfection" screen...
    I would suggest you to wait for a while; I guess it's because the ZEN is getting too hot. Reset the device so it can power OFF, and wait for the ZEN to cool down a bit (Do not reload it, unless you don't have the choice to.), and try again later. Also try to connect the ZEN to USB, it'll power ON on it's own, perhaps it'll get to the Home Screen. If it still freeze, too bad: do a factory reset (that should work).
    Q: Can I uninstall preinstalled System APPs (ZiiO Space, Audible, Default Browser) ?
    Yes, you can! I'll show you the easiest way to do it!
    If this isn't appropriated, ask me Creative, I'll remove this question.
    First, you HAVE to be rooted, again!
    Second: doing this can be seriously dangerous if you delete a APP that is required for the system to work, you could really kill your ZEN! Again, I take no responsability if you kill your ZEN because of this!
    Okay then, download the APP SDK Stock APP Removal (Thanks to the developpers!):
    http://www.google.ca/url?sa=t&rct=j&...vTHqe6KdBudQLg
    Install it (If you have an antivirus on your ZEN, it'll detect it as dangerous. Ignore it. It's normal, since the APP allow you to delete system APPs, which can be dangerous), run it.
    You can now see a list of every single APP installed on your ZEN, including the system APPs. ALWAYS make a backup of the APP when you delete one! The APP itself being extremely easy to use, no need to explain how it works, you'll understand it by yourself, for sure.
    Just keep in mind, it is your responsability to verify if it's safe to remove an APP or not! Always check!
    I used the APP to remove ZiiO Space, Audible and the default Browser (Without any consequences), since I never use those. Not sure if it's safe to delete the default 3D Gallery.
    Mainly because I want to free up the most space as possible on my ZEN to avoid freezing issues, of course!
    Q: How can I backup my APPs ?
    It's quite easy to do. I've realised backing up my APPs was very important, on the ZEN Touch 2, since you never know when the device is going to freak out, when you'll have to do a reset, and that your APPs get corrupted!
    You can of course use Titanium Backup, but I would recommend Smart App Protector / Pro, for his simplicity.
    The main purpose of this APP, is to password/pattern-protect your APP (Which does the job perfectly well), but you can also backup (on SD Card, well, ZEN internal storage) and restore your APPs extremely easilly. No root required, here!
    This APP completely saved me, when I wiped my device...
    Q: What about my contacts ?
    In the stock Contacts APP, there's an option to do a full backup of your contacts, on the ZEN internal memory.
    If for some reason, you can't find it, download the APP Go Contacts Ex (In my opinion, the best contacts APP availible). This APP also have an option to backup and restore your contacts super easilly.
    Q: In some cases, the ZEN Touch 2 isn't loud enough!
    Something I would recommend is using a different music player with an equalizer. PowerAMP + PowerAMP patcher should do the job. Open the equalizer and increase the value of the first bar on the left. You'll get a small volume boost. I do use it for some tracks that have the volume REALLY low.
    Q: The Agenda / Calendar does not work at all! When I start it, I get the message "You have no calendar" !
    Dear calendar... It's always been a pain to set the calendar on the ZEN Touch 2, since it's not a cellphone...
    2 recommendations:
    First: forget it. I've tried, and seems this is possible to get this to work, but quite uneffective. First, you should download the APP Calengoo, a more than excellent calendar. It'll sync with your Google Calendar, so try using a Gmail account, to get it to work. It seems to have troble with the sync, and it doesn't work all the time.
    Haven't done this in a while, this is seriously a pain. I'm using the calendar on my LG smartphone anyways. I won't be able to help that much about this issue.
    Second: what you could do instead, is to download the calendar Jorte. It's a standalone agenda, so it does not requires sync to work at all. It'll work without any problem on your ZEN, you don't have to set-up anything.
    However, I fairly prefer Calengoo over Jorte, way more powerful.
    Q: Where's the reset hole?
    Inside the micro SD slot. You can use a lockpipe (recommended) or a linguee mine (less safe).
    Q: Is the battery removable?
    Unfortunately, no. Unless you manage to open the ZEN in a very specific way, using a knife and a hairdryer to make the glue melt, I've read. You should probably gain access to the battery this way, but I've been completely unable to know the exact battery type (Lithium-Ion, but details), so replacing it would be a real pain. Creative couldn't help me, since they do not encourage self repair; they recommended me to purchase another device if this case happen, which I honnestly find pretty ugly.
    Q: The default Android keyboard is not good enough...
    The APK "Smart Keyboard Pro" is the answer.
    Q: I would like to quickly turn ON WiFi, and ajust screen brightness without going in the Settings all the time.
    Grab the APK "Extended Controls".
    That's it, hope this guide was helpful!

    Originally Posted by agrimstad
    This Q&A guide was enormously helpful to me with the zen touch 2, my first android device.
    I'm pretty happy with the device--everything pretty much works--but doubt my experience would have been so positive without this guide. I do have some observations as a kind of follow up.
    1. I'd recommend staying with Creative's web browser. I tried a couple of alternatives. I tried Opera and Firefox. I thought they were painfully slow. I quickly abandoned them. The default browser seems good enough. That's not really what I got the zen for.
    2. I bought PowerAmp. I had issues where it would work for a few days and then fail with licensing issues. Reinstalling fixed matters, then the licensing failure recurred. So I tried ProPlayer. To me, it's better. I like the way it handles folders.
    3. I bought Locus Pro. It's pretty good. I like the ability to download a map so you're not tied to the internet. The GPS is slow, but it does work.
    4. I did root the device with z4root. For me, the only advantage seems to be that I need to be rooted to get ClockSync to work. Being able to sync the device's clock with NTP is a really professional touch.
    5. I use Go Launcher Ex (paid version). One thing to mention is that the default launcher has a Bluetooth widget which doesn't seem to survive the installation of Go Launcher Ex. I installed another Bluetooth widget I found on AndroidPit App Center. By the way, this App Center seems pretty decent, since Google Play isn't supported. (I also use the SlideME Marketplace.)
    6. I like the Go Power Manager for monitoring the battery. It has a widget and power usage modes that are quite good.
    7. I don't seem to be having lock up problems. (Note that I only use the default browser). I think this may be due to my being really careful about RAM usage. There are a set of things I've done in this area. First, I use StartupManager. (This is a second reason to root the device.) This keeps the things running at start up to the minimum you want. I've also installed FastReboot. I run this from time to time. But there are two other things that I really rely on. One is the Go Task Manager. This lets you monitor RAM usage and kill things to recover RAM. Another thing I use is a widget--I can't remember where it came from--that displays RAM usage on the home panel and a button in the shape of a broom, which, when tapped, recovers RAM. I think this is part of Go Task Manager.
    8. It seems obligatory to have a scanner app for all the 2-D bar codes that have sprung up everywhere. I haven't seen any advice about which app is preferred. I'm using Unibet Scanner, which seems to work.
    9. Because Google Play isn't supported, I've had to get some things via googling for apks. One finds these in strange quasi legal places and I worry about viruses. I'd be interested in advice regarding a virus scanner.
    Thanks again for the guide. -- al
    Thank you very much!
    1. Maybe you want to try Dolphin Browser Mini / HD, it's pretty powerful. But if you're looking for a lighter web browser, you could give BoatBrowser Mini a shot, if you want to.
    2. I've read that PowerAMP cannot activate on a non-Google phone, which I find pretty ridiculous.. I have to patch it with an illegal app, but now I get that strange noise when my music play, and the app is basically dead, unless I reinstall and loose all my settings!
    7. That's the right thing to do. If you don't have much APPs installed, that shouldn't lock up.
    9. Same here. I've used Lookout Antivirus before, but you wouldn't be able to uninstall it, if you're not rooted. I've then switched to Zoner Antivirus (Free). Less known, but for some reason, I've read it detected more viruses than any other free Android antivirus.
    Enjoy the ZEN Touch 2.

  • Random freezes on Asus F3Tc

    Hi!
    I have random freezes of KDE 4.2 desktop with NVidia 180.29 graphics driver. The laptop is Asus F3Tc with NVidia GeForce Go 7300 video card. How can I track down what is the problem?

    BIOS EBDA/lowmem at: 0009fc00/0009fc00
    Linux version 2.6.28-ARCH (root@T-POWA-LX) (gcc version 4.3.3 (GCC) ) #1 SMP PREEMPT Sun Feb 8 10:13:45 UTC 2009
    KERNEL supported cpus:
    Intel GenuineIntel
    AMD AuthenticAMD
    NSC Geode by NSC
    Cyrix CyrixInstead
    Centaur CentaurHauls
    Transmeta GenuineTMx86
    Transmeta TransmetaCPU
    UMC UMC UMC UMC
    BIOS-provided physical RAM map:
    BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
    BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
    BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    BIOS-e820: 0000000000100000 - 000000005ffa0000 (usable)
    BIOS-e820: 000000005ffa0000 - 000000005ffae000 (ACPI data)
    BIOS-e820: 000000005ffae000 - 000000005fff0000 (ACPI NVS)
    BIOS-e820: 000000005fff0000 - 0000000060000000 (reserved)
    BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    BIOS-e820: 00000000fee00000 - 00000000fef00000 (reserved)
    BIOS-e820: 00000000fff80000 - 0000000100000000 (reserved)
    DMI 2.4 present.
    AMI BIOS detected: BIOS may corrupt low RAM, working it around.
    last_pfn = 0x5ffa0 max_arch_pfn = 0x100000
    x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Scanning 0 areas for low memory corruption
    modified physical RAM map:
    modified: 0000000000000000 - 0000000000010000 (reserved)
    modified: 0000000000010000 - 000000000009fc00 (usable)
    modified: 000000000009fc00 - 00000000000a0000 (reserved)
    modified: 00000000000e0000 - 0000000000100000 (reserved)
    modified: 0000000000100000 - 000000005ffa0000 (usable)
    modified: 000000005ffa0000 - 000000005ffae000 (ACPI data)
    modified: 000000005ffae000 - 000000005fff0000 (ACPI NVS)
    modified: 000000005fff0000 - 0000000060000000 (reserved)
    modified: 00000000fec00000 - 00000000fec01000 (reserved)
    modified: 00000000fee00000 - 00000000fef00000 (reserved)
    modified: 00000000fff80000 - 0000000100000000 (reserved)
    kernel direct mapping tables up to 377fe000 @ 10000-16000
    RAMDISK: 5f96a000 - 5ff8ffcf
    Allocated new RAMDISK: 0055f000 - 00b84fcf
    Move RAMDISK from 000000005f96a000 - 000000005ff8ffce to 0055f000 - 00b84fce
    ACPI: RSDP 000FBB20, 0014 (r0 ACPIAM)
    ACPI: RSDT 5FFA0000, 0040 (r1 _ASUS_ Notebook 4000809 MSFT 97)
    ACPI: FACP 5FFA0200, 0084 (r2 A M I OEMFACP 4000809 MSFT 97)
    ACPI: DSDT 5FFA05F0, 916F (r1 A0427 A0427000 0 INTL 2002026)
    ACPI: FACS 5FFAE000, 0040
    ACPI: APIC 5FFA0390, 0070 (r1 A M I OEMAPIC 4000809 MSFT 97)
    ACPI: MCFG 5FFA0400, 003C (r1 A M I OEMMCFG 4000809 MSFT 97)
    ACPI: BOOT 5FFA05C0, 0028 (r1 A M I OEMBOOT 4000809 MSFT 97)
    ACPI: SLIC 5FFA0440, 0176 (r1 _ASUS_ Notebook 4000809 MSFT 97)
    ACPI: OEMB 5FFAE040, 0060 (r1 A M I AMI_OEM 4000809 MSFT 97)
    ACPI: HPET 5FFA9760, 0038 (r1 A M I OEMHPET0 4000809 MSFT 97)
    ACPI: Local APIC address 0xfee00000
    647MB HIGHMEM available.
    887MB LOWMEM available.
    mapped low ram: 0 - 377fe000
    low ram: 00000000 - 377fe000
    bootmap 00012000 - 00018f00
    (9 early reservations) ==> bootmem [0000000000 - 00377fe000]
    #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000]
    #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000]
    #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000]
    #3 [0000100000 - 000055b520] TEXT DATA BSS ==> [0000100000 - 000055b520]
    #4 [000055c000 - 000055f000] INIT_PG_TABLE ==> [000055c000 - 000055f000]
    #5 [000009fc00 - 0000100000] BIOS reserved ==> [000009fc00 - 0000100000]
    #6 [0000010000 - 0000012000] PGTABLE ==> [0000010000 - 0000012000]
    #7 [000055f000 - 0000b84fcf] NEW RAMDISK ==> [000055f000 - 0000b84fcf]
    #8 [0000012000 - 0000019000] BOOTMAP ==> [0000012000 - 0000019000]
    found SMP MP-table at [c00ff780] 000ff780
    Zone PFN ranges:
    DMA 0x00000010 -> 0x00001000
    Normal 0x00001000 -> 0x000377fe
    HighMem 0x000377fe -> 0x0005ffa0
    Movable zone start PFN for each node
    early_node_map[2] active PFN ranges
    0: 0x00000010 -> 0x0000009f
    0: 0x00000100 -> 0x0005ffa0
    On node 0 totalpages: 393007
    free_area_init_node: node 0, pgdat c0406600, node_mem_map c1000200
    DMA zone: 32 pages used for memmap
    DMA zone: 0 pages reserved
    DMA zone: 3951 pages, LIFO batch:0
    Normal zone: 1744 pages used for memmap
    Normal zone: 221486 pages, LIFO batch:31
    HighMem zone: 1296 pages used for memmap
    HighMem zone: 164498 pages, LIFO batch:31
    Movable zone: 0 pages used for memmap
    Detected use of extended apic ids on hypertransport bus
    ACPI: PM-Timer IO Port: 0x508
    ACPI: Local APIC address 0xfee00000
    ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23
    ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
    ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
    ACPI: IRQ0 used by override.
    ACPI: IRQ2 used by override.
    ACPI: IRQ9 used by override.
    ACPI: IRQ14 used by override.
    ACPI: IRQ15 used by override.
    Enabling APIC mode: Flat. Using 1 I/O APICs
    ACPI: HPET id: 0x10de8201 base: 0xfed00000
    Using ACPI (MADT) for SMP configuration information
    SMP: Allowing 2 CPUs, 0 hotplug CPUs
    PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    Allocating PCI resources starting at 70000000 (gap: 60000000:9ec00000)
    PERCPU: Allocating 36864 bytes of per cpu data
    NR_CPUS: 16, nr_cpu_ids: 2, nr_node_ids 1
    Built 1 zonelists in Zone order, mobility grouping on. Total pages: 389935
    Kernel command line: root=/dev/disk/by-uuid/8edfa991-ac57-4811-a42a-6033c740d902 ro
    Enabling fast FPU save and restore... done.
    Enabling unmasked SIMD FPU exception support... done.
    Initializing CPU#0
    PID hash table entries: 4096 (order: 12, 16384 bytes)
    Fast TSC calibration using PIT
    Detected 1607.215 MHz processor.
    spurious 8259A interrupt: IRQ7.
    Console: colour VGA+ 80x25
    console [tty0] enabled
    Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    Scanning for low memory corruption every 60 seconds
    Memory: 1547280k/1572480k available (2227k kernel code, 23980k reserved, 1026k data, 332k init, 663176k highmem)
    virtual kernel memory layout:
    fixmap : 0xffee8000 - 0xfffff000 (1116 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    .init : 0xc0433000 - 0xc0486000 ( 332 kB)
    .data : 0xc032cf89 - 0xc042db5c (1026 kB)
    .text : 0xc0100000 - 0xc032cf89 (2227 kB)
    Checking if this processor honours the WP bit even in supervisor mode...Ok.
    SLUB: Genslabs=12, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    hpet clockevent registered
    HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    Calibrating delay loop (skipped), value calculated using timer frequency.. 3215.36 BogoMIPS (lpj=5357383)
    Security Framework initialized
    Mount-cache hash table entries: 512
    CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
    CPU: L2 Cache: 512K (64 bytes/line)
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 0
    Intel machine check architecture supported.
    Intel machine check reporting enabled on CPU#0.
    using C1E aware idle routine
    Checking 'hlt' instruction... OK.
    ACPI: Core revision 20080926
    ACPI: Checking initramfs for custom DSDT
    ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    CPU0: AMD Turion(tm) 64 X2 Mobile Technology TL-52 stepping 02
    Booting processor 1 APIC 0x1 ip 0x6000
    Initializing CPU#1
    Calibrating delay using timer specific routine.. 3215.63 BogoMIPS (lpj=5357810)
    CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
    CPU: L2 Cache: 512K (64 bytes/line)
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 1
    Intel machine check architecture supported.
    Intel machine check reporting enabled on CPU#1.
    x86 PAT enabled: cpu 1, old 0x7040600070406, new 0x7010600070106
    CPU1: AMD Turion(tm) 64 X2 Mobile Technology TL-52 stepping 02
    Brought up 2 CPUs
    System has AMD C1E enabled
    Switch to broadcast mode on CPU1
    Total of 2 processors activated (6431.99 BogoMIPS).
    Switch to broadcast mode on CPU0
    net_namespace: 768 bytes
    Booting paravirtualized kernel on bare hardware
    NET: Registered protocol family 16
    ACPI: bus type pci registered
    PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
    PCI: Not using MMCONFIG.
    PCI: PCI BIOS revision 3.00 entry at 0xf0031, last bus=5
    PCI: Using configuration type 1 for base access
    ACPI: EC: Look up EC in DSDT
    ACPI: Interpreter enabled
    ACPI: (supports S0 S1 S3 S4 S5)
    ACPI: Using IOAPIC for interrupt routing
    PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
    PCI: MCFG area at e0000000 reserved in ACPI motherboard resources
    PCI: updated MCFG configuration 0: base e0000000 segment 0 buses 0 - 127
    PCI: Using MMCONFIG for extended config space
    ACPI: EC: GPE = 0x20, I/O: command/status = 0x66, data = 0x62
    ACPI: EC: driver started in poll mode
    ACPI: No dock devices found.
    ACPI: PCI Root Bridge [PCI0] (0000:00)
    pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:00:02.0: PME# disabled
    pci 0000:00:03.0: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:00:03.0: PME# disabled
    pci 0000:00:04.0: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:00:04.0: PME# disabled
    pci 0000:00:0a.1: reg 20 io port: [0x600-0x63f]
    pci 0000:00:0a.1: reg 24 io port: [0x700-0x73f]
    pci 0000:00:0a.1: PME# supported from D3hot D3cold
    pci 0000:00:0a.1: PME# disabled
    pci 0000:00:0b.0: reg 10 32bit mmio: [0xdc6be000-0xdc6befff]
    pci 0000:00:0b.0: supports D1 D2
    pci 0000:00:0b.0: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:00:0b.0: PME# disabled
    pci 0000:00:0b.1: reg 10 32bit mmio: [0xdc6bfc00-0xdc6bfcff]
    pci 0000:00:0b.1: supports D1 D2
    pci 0000:00:0b.1: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:00:0b.1: PME# disabled
    pci 0000:00:0d.0: reg 20 io port: [0xffa0-0xffaf]
    pci 0000:00:0e.0: reg 10 io port: [0xd800-0xd807]
    pci 0000:00:0e.0: reg 14 io port: [0xd480-0xd483]
    pci 0000:00:0e.0: reg 18 io port: [0xd400-0xd407]
    pci 0000:00:0e.0: reg 1c io port: [0xd080-0xd083]
    pci 0000:00:0e.0: reg 20 io port: [0xd000-0xd00f]
    pci 0000:00:0e.0: reg 24 32bit mmio: [0xdc6bd000-0xdc6bdfff]
    pci 0000:00:10.1: reg 10 32bit mmio: [0xdc6b8000-0xdc6bbfff]
    pci 0000:00:10.1: PME# supported from D3hot D3cold
    pci 0000:00:10.1: PME# disabled
    pci 0000:00:14.0: reg 10 32bit mmio: [0xdc6bc000-0xdc6bcfff]
    pci 0000:00:14.0: reg 14 io port: [0xcc00-0xcc07]
    pci 0000:00:14.0: supports D1 D2
    pci 0000:00:14.0: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:00:14.0: PME# disabled
    pci 0000:01:00.0: reg 10 64bit mmio: [0xdc7f0000-0xdc7fffff]
    pci 0000:00:02.0: bridge 32bit mmio: [0xdc700000-0xdc7fffff]
    pci 0000:00:03.0: bridge io port: [0xe000-0xefff]
    pci 0000:00:03.0: bridge 32bit mmio: [0xdc800000-0xdcffffff]
    pci 0000:00:03.0: bridge 64bit mmio pref: [0xbe000000-0xbfffffff]
    pci 0000:04:00.0: reg 10 32bit mmio: [0xde000000-0xdeffffff]
    pci 0000:04:00.0: reg 14 64bit mmio: [0xc0000000-0xcfffffff]
    pci 0000:04:00.0: reg 1c 64bit mmio: [0xdd000000-0xddffffff]
    pci 0000:04:00.0: reg 30 32bit mmio: [0xdfee0000-0xdfefffff]
    pci 0000:00:04.0: bridge 32bit mmio: [0xdd000000-0xdfefffff]
    pci 0000:00:04.0: bridge 64bit mmio pref: [0xc0000000-0xcfffffff]
    pci 0000:05:01.0: reg 10 32bit mmio: [0xdfffe800-0xdfffefff]
    pci 0000:05:01.0: PME# supported from D0 D3hot D3cold
    pci 0000:05:01.0: PME# disabled
    pci 0000:05:01.1: reg 10 32bit mmio: [0xdffff400-0xdffff4ff]
    pci 0000:05:01.1: supports D1 D2
    pci 0000:05:01.1: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:05:01.1: PME# disabled
    pci 0000:05:01.2: reg 10 32bit mmio: [0xdffff800-0xdffff8ff]
    pci 0000:05:01.2: supports D1 D2
    pci 0000:05:01.2: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:05:01.2: PME# disabled
    pci 0000:05:01.3: reg 10 32bit mmio: [0xdffffc00-0xdffffcff]
    pci 0000:05:01.3: supports D1 D2
    pci 0000:05:01.3: PME# supported from D0 D1 D2 D3hot D3cold
    pci 0000:05:01.3: PME# disabled
    pci 0000:00:10.0: transparent bridge
    pci 0000:00:10.0: bridge 32bit mmio: [0xdff00000-0xdfffffff]
    bus 00 -> node 0
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P8._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0PA._PRT]
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT]
    ACPI: PCI Interrupt Link [LNKA] (IRQs 16) *5
    ACPI: PCI Interrupt Link [LNKB] (IRQs 17) *10
    ACPI: PCI Interrupt Link [LNKC] (IRQs 16) *0, disabled.
    ACPI: PCI Interrupt Link [LNKD] (IRQs 17) *0, disabled.
    ACPI: PCI Interrupt Link [LNEA] (IRQs 18) *11
    ACPI: PCI Interrupt Link [LNEB] (IRQs 19) *11
    ACPI: PCI Interrupt Link [LNEC] (IRQs 5) *0, disabled.
    ACPI: PCI Interrupt Link [LNED] (IRQs 11) *0, disabled.
    ACPI: PCI Interrupt Link [LUB0] (IRQs 10) *11
    ACPI: PCI Interrupt Link [LUB2] (IRQs 20) *7
    ACPI: PCI Interrupt Link [LMAC] (IRQs 21) *5
    ACPI: PCI Interrupt Link [LAZA] (IRQs 22) *5
    ACPI: PCI Interrupt Link [LACI] (IRQs 22) *0, disabled.
    ACPI: PCI Interrupt Link [LMC9] (IRQs 7) *0, disabled.
    ACPI: PCI Interrupt Link [LSMB] (IRQs 7) *5
    ACPI: PCI Interrupt Link [LPMU] (IRQs 7) *10
    ACPI: PCI Interrupt Link [LSA0] (IRQs 23) *10
    ACPI: PCI Interrupt Link [LSA1] (IRQs 23) *0, disabled.
    ACPI: PCI Interrupt Link [LATA] (IRQs 20 21 22 23) *0, disabled.
    PCI: Using ACPI for IRQ routing
    NetLabel: Initializing
    NetLabel: domain hash size = 128
    NetLabel: protocols = UNLABELED CIPSOv4
    NetLabel: unlabeled traffic allowed by default
    Switched to high resolution mode on CPU 0
    Switched to high resolution mode on CPU 1
    pnp: PnP ACPI init
    ACPI: bus type pnp registered
    pnp: PnP ACPI: found 14 devices
    ACPI: ACPI bus type pnp unregistered
    system 00:07: ioport range 0x25c-0x25f has been reserved
    system 00:09: ioport range 0x4d0-0x4d1 has been reserved
    system 00:09: ioport range 0x800-0x80f has been reserved
    system 00:09: ioport range 0x500-0x57f has been reserved
    system 00:09: ioport range 0x580-0x5ff has been reserved
    system 00:09: ioport range 0x800-0x87f could not be reserved
    system 00:09: ioport range 0x880-0x8ff has been reserved
    system 00:09: ioport range 0x900-0x97f has been reserved
    system 00:09: ioport range 0x980-0x9ff has been reserved
    system 00:09: iomem range 0xfee01000-0xfeefffff has been reserved
    system 00:0b: iomem range 0xfec00000-0xfec00fff has been reserved
    system 00:0b: iomem range 0xfee00000-0xfee00fff has been reserved
    system 00:0c: iomem range 0xe0000000-0xe7ffffff has been reserved
    system 00:0d: iomem range 0x0-0x9ffff could not be reserved
    system 00:0d: iomem range 0xc0000-0xcffff could not be reserved
    system 00:0d: iomem range 0xe0000-0xfffff could not be reserved
    system 00:0d: iomem range 0x100000-0x5fffffff could not be reserved
    system 00:0d: iomem range 0xff780000-0xffffffff could not be reserved
    pci 0000:00:02.0: PCI bridge, secondary bus 0000:01
    pci 0000:00:02.0: IO window: disabled
    pci 0000:00:02.0: MEM window: 0xdc700000-0xdc7fffff
    pci 0000:00:02.0: PREFETCH window: disabled
    pci 0000:00:03.0: PCI bridge, secondary bus 0000:02
    pci 0000:00:03.0: IO window: 0xe000-0xefff
    pci 0000:00:03.0: MEM window: 0xdc800000-0xdcffffff
    pci 0000:00:03.0: PREFETCH window: 0x000000be000000-0x000000bfffffff
    pci 0000:00:04.0: PCI bridge, secondary bus 0000:04
    pci 0000:00:04.0: IO window: disabled
    pci 0000:00:04.0: MEM window: 0xdd000000-0xdfefffff
    pci 0000:00:04.0: PREFETCH window: 0x000000c0000000-0x000000cfffffff
    pci 0000:00:10.0: PCI bridge, secondary bus 0000:05
    pci 0000:00:10.0: IO window: disabled
    pci 0000:00:10.0: MEM window: 0xdff00000-0xdfffffff
    pci 0000:00:10.0: PREFETCH window: disabled
    pci 0000:00:02.0: setting latency timer to 64
    pci 0000:00:03.0: setting latency timer to 64
    pci 0000:00:04.0: setting latency timer to 64
    pci 0000:00:10.0: setting latency timer to 64
    bus: 00 index 0 io port: [0x00-0xffff]
    bus: 00 index 1 mmio: [0x000000-0xffffffff]
    bus: 01 index 0 mmio: [0x0-0x0]
    bus: 01 index 1 mmio: [0xdc700000-0xdc7fffff]
    bus: 01 index 2 mmio: [0x0-0x0]
    bus: 01 index 3 mmio: [0x0-0x0]
    bus: 02 index 0 io port: [0xe000-0xefff]
    bus: 02 index 1 mmio: [0xdc800000-0xdcffffff]
    bus: 02 index 2 mmio: [0xbe000000-0xbfffffff]
    bus: 02 index 3 mmio: [0x0-0x0]
    bus: 04 index 0 mmio: [0x0-0x0]
    bus: 04 index 1 mmio: [0xdd000000-0xdfefffff]
    bus: 04 index 2 mmio: [0xc0000000-0xcfffffff]
    bus: 04 index 3 mmio: [0x0-0x0]
    bus: 05 index 0 mmio: [0x0-0x0]
    bus: 05 index 1 mmio: [0xdff00000-0xdfffffff]
    bus: 05 index 2 mmio: [0x0-0x0]
    bus: 05 index 3 io port: [0x00-0xffff]
    bus: 05 index 4 mmio: [0x000000-0xffffffff]
    NET: Registered protocol family 2
    IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
    TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
    TCP: Hash tables configured (established 131072 bind 65536)
    TCP reno registered
    NET: Registered protocol family 1
    Unpacking initramfs... done
    Freeing initrd memory: 6295k freed
    Simple Boot Flag at 0x4c set to 0x1
    apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac)
    apm: disabled - APM is not SMP safe.
    highmem bounce pool size: 64 pages
    VFS: Disk quotas dquot_6.5.1
    Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    msgmni has been set to 1740
    alg: No test for stdrng (krng)
    Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
    io scheduler noop registered
    io scheduler anticipatory registered
    io scheduler deadline registered
    io scheduler cfq registered (default)
    pci 0000:00:00.0: Enabling HT MSI Mapping
    pci 0000:00:02.0: Enabling HT MSI Mapping
    pci 0000:00:03.0: Enabling HT MSI Mapping
    pci 0000:00:04.0: Enabling HT MSI Mapping
    pci 0000:00:09.0: Enabling HT MSI Mapping
    pci 0000:00:0e.0: Enabling HT MSI Mapping
    pci 0000:00:10.0: Enabling HT MSI Mapping
    pci 0000:00:10.1: Enabling HT MSI Mapping
    pci 0000:04:00.0: Boot video device
    pcieport-driver 0000:00:02.0: setting latency timer to 64
    pcieport-driver 0000:00:02.0: found MSI capability
    pcieport-driver 0000:00:02.0: irq 767 for MSI/MSI-X
    pci_express 0000:00:02.0:pcie00: allocate port service
    pci_express 0000:00:02.0:pcie03: allocate port service
    pcieport-driver 0000:00:03.0: setting latency timer to 64
    pcieport-driver 0000:00:03.0: found MSI capability
    pcieport-driver 0000:00:03.0: irq 766 for MSI/MSI-X
    pci_express 0000:00:03.0:pcie00: allocate port service
    pci_express 0000:00:03.0:pcie03: allocate port service
    pcieport-driver 0000:00:04.0: setting latency timer to 64
    pcieport-driver 0000:00:04.0: found MSI capability
    pcieport-driver 0000:00:04.0: irq 765 for MSI/MSI-X
    pci_express 0000:00:04.0:pcie00: allocate port service
    pci_express 0000:00:04.0:pcie03: allocate port service
    isapnp: Scanning for PnP cards...
    isapnp: No Plug & Play device found
    Serial: 8250/16550 driver4 ports, IRQ sharing disabled
    input: Macintosh mouse button emulation as /class/input/input0
    PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    i8042.c: Detected active multiplexing controller, rev 1.1.
    serio: i8042 KBD port at 0x60,0x64 irq 1
    serio: i8042 AUX0 port at 0x60,0x64 irq 12
    serio: i8042 AUX1 port at 0x60,0x64 irq 12
    serio: i8042 AUX2 port at 0x60,0x64 irq 12
    serio: i8042 AUX3 port at 0x60,0x64 irq 12
    mice: PS/2 mouse device common for all mice
    cpuidle: using governor ladder
    cpuidle: using governor menu
    TCP cubic registered
    NET: Registered protocol family 17
    Using IPI No-Shortcut mode
    registered taskstats version 1
    Freeing unused kernel memory: 332k freed
    input: AT Translated Set 2 keyboard as /class/input/input1
    SCSI subsystem initialized
    libata version 3.00 loaded.
    pata_acpi 0000:00:0d.0: setting latency timer to 64
    ACPI: PCI Interrupt Link [LSA0] enabled at IRQ 23
    pata_acpi 0000:00:0e.0: PCI INT A -> Link[LSA0] -> GSI 23 (level, low) -> IRQ 23
    pata_acpi 0000:00:0e.0: setting latency timer to 64
    pata_acpi 0000:00:0e.0: PCI INT A disabled
    pata_amd 0000:00:0d.0: version 0.3.10
    pata_amd 0000:00:0d.0: setting latency timer to 64
    scsi0 : pata_amd
    scsi1 : pata_amd
    ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14
    ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15
    ata2.01: ATAPI: Optiarc DVD RW AD-7540A, 1.01, max UDMA/33
    ata2: nv_mode_filter: 0x739f&0x701f->0x701f, BIOS=0x7000 (0xc0) ACPI=0x701f (900:60:0x14)
    ata2.01: configured for UDMA/33
    scsi 1:0:1:0: CD-ROM Optiarc DVD RW AD-7540A 1.01 PQ: 0 ANSI: 5
    sata_nv 0000:00:0e.0: version 3.5
    sata_nv 0000:00:0e.0: PCI INT A -> Link[LSA0] -> GSI 23 (level, low) -> IRQ 23
    sata_nv 0000:00:0e.0: Using SWNCQ mode
    sata_nv 0000:00:0e.0: setting latency timer to 64
    scsi2 : sata_nv
    scsi3 : sata_nv
    ata3: SATA max UDMA/133 cmd 0xd800 ctl 0xd480 bmdma 0xd000 irq 23
    ata4: SATA max UDMA/133 cmd 0xd400 ctl 0xd080 bmdma 0xd008 irq 23
    ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    ata3.00: ATA-7: Hitachi HTS541680J9SA00, SB2OC70P, max UDMA/100
    ata3.00: 156301488 sectors, multi 16: LBA48 NCQ (depth 31/32)
    ata3.00: configured for UDMA/100
    ata4: SATA link down (SStatus 0 SControl 300)
    scsi 2:0:0:0: Direct-Access ATA Hitachi HTS54168 SB2O PQ: 0 ANSI: 5
    Driver 'sr' needs updating - please use bus_type methods
    sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    Uniform CD-ROM driver Revision: 3.20
    sr 1:0:1:0: Attached scsi CD-ROM sr0
    Driver 'sd' needs updating - please use bus_type methods
    sd 2:0:0:0: [sda] 156301488 512-byte hardware sectors: (80.0 GB/74.5 GiB)
    sd 2:0:0:0: [sda] Write Protect is off
    sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sd 2:0:0:0: [sda] 156301488 512-byte hardware sectors: (80.0 GB/74.5 GiB)
    sd 2:0:0:0: [sda] Write Protect is off
    sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
    sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    sda:<6>usbcore: registered new interface driver usbfs
    usbcore: registered new interface driver hub
    usbcore: registered new device driver usb
    ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    ACPI: PCI Interrupt Link [LUB2] enabled at IRQ 20
    ehci_hcd 0000:00:0b.1: PCI INT B -> Link[LUB2] -> GSI 20 (level, low) -> IRQ 20
    ehci_hcd 0000:00:0b.1: setting latency timer to 64
    ehci_hcd 0000:00:0b.1: EHCI Host Controller
    ehci_hcd 0000:00:0b.1: new USB bus registered, assigned bus number 1
    ehci_hcd 0000:00:0b.1: debug port 1
    ehci_hcd 0000:00:0b.1: cache line size of 64 is not supported
    ehci_hcd 0000:00:0b.1: irq 20, io mem 0xdc6bfc00
    ehci_hcd 0000:00:0b.1: USB 2.0 started, EHCI 1.00
    usb usb1: configuration #1 chosen from 1 choice
    hub 1-0:1.0: USB hub found
    hub 1-0:1.0: 8 ports detected
    ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    ACPI: PCI Interrupt Link [LUB0] enabled at IRQ 10
    ohci_hcd 0000:00:0b.0: PCI INT A -> Link[LUB0] -> GSI 10 (level, low) -> IRQ 10
    ohci_hcd 0000:00:0b.0: setting latency timer to 64
    ohci_hcd 0000:00:0b.0: OHCI Host Controller
    ohci_hcd 0000:00:0b.0: new USB bus registered, assigned bus number 2
    ohci_hcd 0000:00:0b.0: irq 10, io mem 0xdc6be000
    usb usb2: configuration #1 chosen from 1 choice
    hub 2-0:1.0: USB hub found
    hub 2-0:1.0: 8 ports detected
    usb 1-7: new high speed USB device using ehci_hcd and address 2
    sda1 sda2 sda3 sda4
    sd 2:0:0:0: [sda] Attached SCSI disk
    usb 1-7: configuration #1 chosen from 1 choice
    device-mapper: uevent: version 1.0.3
    device-mapper: ioctl: 4.14.0-ioctl (2008-04-23) initialised: [email protected]
    EXT3-fs: INFO: recovery required on readonly filesystem.
    EXT3-fs: write access will be enabled during recovery.
    kjournald starting. Commit interval 5 seconds
    EXT3-fs: recovery complete.
    EXT3-fs: mounted filesystem with ordered data mode.
    rtc_cmos 00:02: RTC can wake from S4
    rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
    rtc0: alarms up to one year, y3k, 114 bytes nvram, hpet irqs
    forcedeth: Reverse Engineered nForce ethernet driver. Version 0.61.
    ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 21
    forcedeth 0000:00:14.0: PCI INT A -> Link[LMAC] -> GSI 21 (level, low) -> IRQ 21
    forcedeth 0000:00:14.0: setting latency timer to 64
    nv_probe: set workaround bit for reversed mac addr
    forcedeth 0000:00:14.0: ifname eth0, PHY OUI 0x5043 @ 1, addr 66:77:44:22:33:11
    forcedeth 0000:00:14.0: highdma pwrctl timirq gbit lnktim desc-v3
    cfg80211: Using static regulatory domain info
    cfg80211: Regulatory domain: US
    (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
    (2402000 KHz - 2472000 KHz @ 40000 KHz), (600 mBi, 2700 mBm)
    (5170000 KHz - 5190000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
    (5190000 KHz - 5210000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
    (5210000 KHz - 5230000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
    (5230000 KHz - 5330000 KHz @ 40000 KHz), (600 mBi, 2300 mBm)
    (5735000 KHz - 5835000 KHz @ 40000 KHz), (600 mBi, 3000 mBm)
    cfg80211: Calling CRDA for country: US
    ACPI: PCI Interrupt Link [LNEB] enabled at IRQ 19
    ath5k_pci 0000:01:00.0: PCI INT A -> Link[LNEB] -> GSI 19 (level, low) -> IRQ 19
    ath5k_pci 0000:01:00.0: setting latency timer to 64
    ath5k_pci 0000:01:00.0: registered as 'phy0'
    phy0: Selected rate control algorithm 'pid'
    ath5k phy0: Atheros AR5414 chip found (MAC: 0xa0, PHY: 0x61)
    ath_hal: module license 'Proprietary' taints kernel.
    AR5210, AR5211, AR5212, AR5416, RF5111, RF5112, RF2413, RF5413, RF2133)
    ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 22
    HDA Intel 0000:00:10.1: PCI INT B -> Link[LAZA] -> GSI 22 (level, low) -> IRQ 22
    HDA Intel 0000:00:10.1: setting latency timer to 64
    ACPI: AC Adapter [AC0] (on-line)
    ACPI: EC: non-query interrupt received, switching to interrupt mode
    ACPI: Battery Slot [BAT0] (battery present)
    input: Power Button (FF) as /class/input/input2
    ACPI: Power Button (FF) [PWRF]
    input: Sleep Button (CM) as /class/input/input3
    ACPI: Sleep Button (CM) [SLPB]
    input: Lid Switch as /class/input/input4
    ACPI: Lid Switch [LID]
    input: Power Button (CM) as /class/input/input5
    ACPI: Power Button (CM) [PWRB]
    ACPI: processor limited to max C-state 1
    processor ACPI_CPU:00: registered as cooling_device0
    processor ACPI_CPU:01: registered as cooling_device1
    thermal LNXTHERM:01: registered as thermal_zone0
    ACPI: Thermal Zone [TZ00] (60 C)
    ACPI: WMI: Mapper loaded
    asus-laptop: Asus Laptop Support version 0.42
    asus-laptop: F3Tc model detected
    asus-laptop: Brightness ignored, must be controlled by ACPI video driver
    Registered led device: asus::mail
    acpi device:09: registered as cooling_device2
    input: Video Bus as /class/input/input6
    ACPI: Video Device [VGA] (multi-head: yes rom: no post: no)
    sr 1:0:1:0: Attached scsi generic sg0 type 5
    sd 2:0:0:0: Attached scsi generic sg1 type 0
    input: PC Speaker as /class/input/input7
    Error: Driver 'pcspkr' is already registered, aborting...
    ricoh-mmc: Ricoh MMC Controller disabling driver
    ricoh-mmc: Copyright(c) Philip Langdale
    ricoh-mmc: Ricoh MMC controller found at 0000:05:01.2 [1180:0843] (rev 1)
    ricoh-mmc: Controller is now disabled.
    Linux video capture interface: v2.00
    ACPI: I/O resource nForce2_smbus [0x600-0x63f] conflicts with ACPI region SMRG [0x600-0x60f]
    ACPI: Device needs an ACPI driver
    i2c-adapter i2c-0: nForce2 SMBus adapter at 0x600
    i2c-adapter i2c-1: nForce2 SMBus adapter at 0x700
    ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 16
    ohci1394 0000:05:01.0: PCI INT A -> Link[LNKA] -> GSI 16 (level, low) -> IRQ 16
    Linux agpgart interface v0.103
    ohci1394: fw-host0: OHCI-1394 1.0 (PCI): IRQ=[16] MMIO=[dfffe800-dfffefff] Max Packet=[2048] IR/IT contexts=[4/4]
    stkwebcam: Syntek USB2.0 Camera is now controlling video device /dev/video0
    usbcore: registered new interface driver stkwebcam
    sdhci: Secure Digital Host Controller Interface driver
    sdhci: Copyright(c) Pierre Ossman
    sdhci-pci 0000:05:01.1: SDHCI controller found [1180:0822] (rev 19)
    ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 17
    sdhci-pci 0000:05:01.1: PCI INT B -> Link[LNKB] -> GSI 17 (level, low) -> IRQ 17
    mmc0: SDHCI controller on PCI [0000:05:01.1] using PIO
    input: PS/2 Mouse as /class/input/input8
    ACPI: PCI Interrupt Link [LNEA] enabled at IRQ 18
    nvidia 0000:04:00.0: PCI INT A -> Link[LNEA] -> GSI 18 (level, low) -> IRQ 18
    nvidia 0000:04:00.0: setting latency timer to 64
    NVRM: loading NVIDIA UNIX x86 Kernel Module 180.22 Tue Jan 6 09:29:08 PST 2009
    input: AlpsPS/2 ALPS GlidePoint as /class/input/input9
    EXT3 FS on sda1, internal journal
    ieee1394: Host added: ID:BUS[0-00:1023] GUID[00e018000385423b]
    kjournald starting. Commit interval 5 seconds
    EXT3-fs warning: maximal mount count reached, running e2fsck is recommended
    EXT3 FS on sda3, internal journal
    ext3_orphan_cleanup: deleting unreferenced inode 5375756
    ext3_orphan_cleanup: deleting unreferenced inode 5357630
    ext3_orphan_cleanup: deleting unreferenced inode 5357629
    ext3_orphan_cleanup: deleting unreferenced inode 5357628
    ext3_orphan_cleanup: deleting unreferenced inode 5357627
    ext3_orphan_cleanup: deleting unreferenced inode 5357626
    ext3_orphan_cleanup: deleting unreferenced inode 5357625
    ext3_orphan_cleanup: deleting unreferenced inode 5357624
    ext3_orphan_cleanup: deleting unreferenced inode 5357612
    ext3_orphan_cleanup: deleting unreferenced inode 5357611
    ext3_orphan_cleanup: deleting unreferenced inode 5357605
    EXT3-fs: sda3: 11 orphan inodes deleted
    EXT3-fs: recovery complete.
    EXT3-fs: mounted filesystem with ordered data mode.
    Adding 1461904k swap on /dev/sda4. Priority:-1 extents:1 across:1461904k
    warning: `pulseaudio' uses 32-bit capabilities (legacy support in use)
    usb 2-3: new low speed USB device using ohci_hcd and address 2
    usb 2-3: configuration #1 chosen from 1 choice
    usbcore: registered new interface driver hiddev
    input: Acrox USB & PS/2 Mouse as /class/input/input10
    generic-usb 0003:0F62:1001.0001: input,hidraw0: USB HID v1.10 Mouse [Acrox USB & PS/2 Mouse] on usb-0000:00:0b.0-3/input0
    usbcore: registered new interface driver usbhid
    usbhid: v2.6:USB HID core driver
    NET: Registered protocol family 10
    lo: Disabled Privacy Extensions
    eth0: no IPv6 routers present
    CE: hpet increasing min_delta_ns to 15000 nsec
    Pretty big

  • Touchpad detected as ImPS/2 Logitech Wheel Mouse

    I have an Asus laptop (not an eee pc), and my touchpad is detected incorrectly.  It thinks it is a "ImPS/2 Logitech Wheel Mouse."  I have tried to use the synaptics driver by configuring /etc/hal/fdi/policy/11-x11-synaptics.fdi
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <deviceinfo version="0.2">
    <device>
    <match key="info.product" contains="ImPS/2 Logitech Wheel Mouse">
    <append key="info.capabilities" type="strlist">input.touchpad</append>
    </match>
    <match key="info.capabilities" contains="input.touchpad">
    <merge key="input.x11_driver" type="string">synaptics</merge>
    <merge key="input.x11_options.SHMConfig" type="string">true</merge>
    <merge key="input.x11_options.TapButton1" type="string">1</merge>
    <merge key="input.x11_options.TapButton2" type="string">2</merge>
    <merge key="input.x11_options.TapButton3" type="string">3</merge>
    </match>
    </device>
    </deviceinfo>
    but this causes the touchpad to stop working entirely.  Here is the relevant section of my Xorg.0.log
    (II) config/hal: Adding input device ImPS/2 Logitech Wheel Mouse
    (II) LoadModule: "synaptics"
    (II) Loading /usr/lib/xorg/modules/input//synaptics_drv.so
    (II) Module synaptics: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 1.1.3
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
    (II) Synaptics touchpad driver version 1.1.3
    (**) Option "Device" "/dev/input/event7"
    (**) Option "SHMConfig" "true"
    (**) Option "TapButton1" "1"
    (**) Option "TapButton2" "2"
    (**) Option "TapButton3" "3"
    (--) ImPS/2 Logitech Wheel Mouse: no supported touchpad found
    (EE) ImPS/2 Logitech Wheel Mouse Unable to query/initialize Synaptics hardware.
    (EE) PreInit failed for input device "ImPS/2 Logitech Wheel Mouse"
    (II) UnloadModule: "synaptics"
    also here is the incorrect entry from /proc/bus/input/devices
    I: Bus=0011 Vendor=0002 Product=0005 Version=0063
    N: Name="ImPS/2 Logitech Wheel Mouse"
    P: Phys=isa0060/serio4/input0
    S: Sysfs=/devices/platform/i8042/serio4/input/input7
    U: Uniq=
    H: Handlers=mouse1 event7
    B: EV=7
    B: KEY=70000 0 0 0 0
    B: REL=1036
    Is there some way I can let my system know that this is indeed a touchpad so I can configure it properly?

    I can't really gather anything useful from dmesg.  Here's the possibly relevant output:
    $ dmesg | grep -i input
    input: Macintosh mouse button emulation as /devices/virtual/input/input0
    input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
    input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
    input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input3
    input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input4
    input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input5
    input: Asus Laptop extra buttons as /devices/virtual/input/input6
    input: ImPS/2 Logitech Wheel Mouse as /devices/platform/i8042/serio4/input/input7
    input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:08.0/input/input8
    $ dmesg | grep -i logitech
    input: ImPS/2 Logitech Wheel Mouse as /devices/platform/i8042/serio4/input/input7
    $ dmesg | grep -i -C 3 touchpad
    asus-laptop: K40IN model detected
    asus-laptop: Brightness ignored, must be controlled by ACPI video driver
    input: Asus Laptop extra buttons as /devices/virtual/input/input6
    Registered led device: asus::touchpad
    usb 1-5: new high speed USB device using ehci_hcd and address 2
    ACPI: Battery Slot [BAT0] (battery present)
    i2c-adapter i2c-0: nForce2 SMBus adapter at 0x4d00
    There's nothing about synaptics anywhere.
    Is there anything potentially useful here?

Maybe you are looking for

  • Which cable to hard wire bt vision box

    Having spent a full day putting in a 30m extension Ethernet cable which I was advised I required, when I ordered my new box to-day I was told it must be an ADSL cable after telling me 1st it was an hdmi I said there isn't an hdmi outlet on the modum

  • IWeb '08 will delete files from .mac. BACK UP your custom files!

    ...obliterated everything in Web/RSS and Web/Sites/iWeb. Just a word of caution if you keep roll-back versions of hand-customized HTML in there with your site files. By the same token, the new file structure & naming scheme is less hideous. Single fo

  • Higher level/consolidation numbers not shown in Excel

    Can not see consolidation numbers at higher level in Excel sheet. They are showing MISSING. But data for the certain member combinations are for sure loaded and existing in the cube because we can see them from Excel. Any idea about this issue?

  • InDesign won't open. Photoshop

    InDesign won't open. Photoshop & Illustrator do. I tried to register my product (Adobe Creative Suite 6 Design & Web Premium) but it won't take my code.

  • Charging Headset and phone in combo dock

    I posted this earlier before there was a Blue tooth forum. Any thoughts appreciated I like to charge my phone from the AC/USB adapter every night with the phone turned off. The combo dock (and the travel cord) has a wierd issue when you want to use i