Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 23

Thread: Brightness Button doesnt work Asus X453M

  1. #11
    Join Date
    May 2014
    Beans
    108

    Re: Brightness Button doesnt work Asus X453M

    Neither Ubuntu 14.04 or Lubuntu 14.04.3 remember my brightness settings but that is not a problem on this laptop as they both enable the brightness buttons.

    In the absence of a solution for you buttons here's what I recommend:

    From the Ubuntu software centre install xbacklight
    You can then change the brightness by running the command xbacklight = 60 in the Terminal where 60 is 60% brightness.

    But it would be better if you had a script file which when double clicked set your preferred brightness IMO.

    Open up gedit the text editor and enter:

    #!/bin/bash
    xbacklight = 60

    Save the file with an appropriate name such a 'mydimmer.sh' or whatever you prefer it doesn't need a filename extension.
    Now right click on the file, choose properties and select execute in the permissions.

    One more setting - this is system wide.
    From the menu bar when a directory/folder is maximized choose edit > Preferences > Behaviour > run executable text files when they are opened > close


    Now you can double click on your script file to set the brightness you prefer.


    Last edited by nknwn; September 22nd, 2015 at 04:40 PM. Reason: typo fix

  2. #12
    Join Date
    Dec 2014
    Beans
    21

    Re: Brightness Button doesnt work Asus X453M

    anonprophet@anonbook:~$ uname -a
    Code:
    Linux anonbook 3.19.0-28-generic #30~14.04.1-Ubuntu SMP Tue Sep 1 09:32:55 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
    anonprophet@anonbook:~$ cat /proc/cmdline
    Code:
    BOOT_IMAGE=/boot/vmlinuz-3.19.0-28-generic.efi.signed root=UUID=aedfc7ac-79f1-40ab-8c5b-dcca1fa93245 ro quiet splash acpi_osi=Linux vt.handoff=7
    anonprophet@anonbook:~$ for interface in /sys/class/backlight/*; do echo -e "\n $interface"; cat $interface/{brightness,max_brightness,actual_brightness}; done
    Code:
     /sys/class/backlight/intel_backlight
    3046
    7812
    3046
    anonprophet@anonbook:~$ cat /var/log/Xorg.0.log | grep -i backlight
    Code:
    [    21.343] (**) intel(0): Option "Backlight" "intel_backlight"
    [    21.344] (**) intel(0): Found backlight control interface intel_backlight (type 'raw') for output eDP1
    Last edited by anonprophet; September 23rd, 2015 at 09:53 AM.

  3. #13
    Join Date
    Jun 2005
    Location
    Toronto, Canada
    Beans
    Hidden!
    Distro
    Xubuntu 16.04 Xenial Xerus

    Re: Brightness Button doesnt work Asus X453M

    Do the following commands change your brightness level (you will need to enter your password):
    Code:
    echo 7812 | sudo tee /sys/class/backlight/intel_backlight/brightness
    echo 3046 | sudo tee /sys/class/backlight/intel_backlight/brightness
    Does the brightness slider work?

    Do the brightness keyboard combinations work?

  4. #14
    Join Date
    Dec 2014
    Beans
    21

    Re: Brightness Button doesnt work Asus X453M

    Quote Originally Posted by Toz View Post
    Do the following commands change your brightness level (you will need to enter your password):
    Code:
    echo 7812 | sudo tee /sys/class/backlight/intel_backlight/brightness
    echo 3046 | sudo tee /sys/class/backlight/intel_backlight/brightness
    Does the brightness slider work?

    Do the brightness keyboard combinations work?
    1. the command work
    2. brightness slider in Settings work
    3. if u mean Fn + F5 and Fn + F6 its doesnt work

    sorry for late reply

  5. #15
    Join Date
    Jun 2005
    Location
    Toronto, Canada
    Beans
    Hidden!
    Distro
    Xubuntu 16.04 Xenial Xerus

    Re: Brightness Button doesnt work Asus X453M

    So it's just the keyboard shortcuts that don't work.

    Two things to try:

    1. In a terminal window, run:
    Code:
    xev | sed -n 's/^.*state \([0-9].*\), keycode *\([0-9]\+\) *\(.*\), .*$/keycode \2 = \3, state = \1/p'
    ...then press Fn+F5 and Fn+F6. Post back any messages that appear in the terminal window.

    2. In a terminal window, run:
    Code:
    acpi_listen
    ...then press Fn+F5 and Fn+F6. Post back any messages that appear in the terminal window.

  6. #16
    Join Date
    Dec 2014
    Beans
    21

    Re: Brightness Button doesnt work Asus X453M

    nothing showed up if press fn+f5 & fn+f6
    but if i press fn+f11 / fn+f12 (lower and raise volume) like this

    1.
    Code:
    keycode 122 = (keysym 0x1008ff11, XF86AudioLowerVolume), state = 0x0
    keycode 123 = (keysym 0x1008ff13, XF86AudioRaiseVolume), state = 0x0
    2.
    Code:
    button/volumedown VOLDN 00000080 00000000 K
    button/volumeup VOLUP 00000080 00000000 K

  7. #17
    Join Date
    Jun 2005
    Location
    Toronto, Canada
    Beans
    Hidden!
    Distro
    Xubuntu 16.04 Xenial Xerus

    Re: Brightness Button doesnt work Asus X453M

    Your system isn't recognizing your function hotkeys. Earlier you tried "acpi_osi=" (which btw is a valid kernel parameter). Can you try the following grub parameters:
    Code:
    acpi_osi= acpi_backlight=vendor
    Once booted into your system, can you post back the results of:
    1. Kernel boot line:
    Code:
    cat /proc/cmdline
    2. Recognized backlight interfaces:
    Code:
    for interface in /sys/class/backlight/*; do echo -e "\n $interface"; cat $interface/{brightness,max_brightness,actual_brightness}; done
    3. And try both:
    Code:
    xev | sed -n 's/^.*state \([0-9].*\), keycode *\([0-9]\+\) *\(.*\), .*$/keycode \2 = \3, state = \1/p'
    ...and:
    Code:
    acpi_listen
    ...again to see if you get a response.

  8. #18
    Join Date
    Dec 2014
    Beans
    21

    Re: Brightness Button doesnt work Asus X453M

    1.
    Code:
    BOOT_IMAGE=/boot/vmlinuz-3.19.0-28-generic.efi.signed root=UUID=aedfc7ac-79f1-40ab-8c5b-dcca1fa93245 ro quiet splash acpi_osi= acpi_backlight=vendor vt.handoff=7
    2.
    Code:
     /sys/class/backlight/asus-nb-wmi
    10
    10
    10
    
     /sys/class/backlight/intel_backlight
    2343
    7812
    2343
    3. Nothing Show Up even though FN + F11 / F12 (all combination with FN not work)

    4.
    FN + F5
    Code:
     PNP0C14:00 000000ff 00000000
    FN + F6
    Code:
     PNP0C14:00 000000ff 00000000

    This command and brightness slider in settings work
    Code:
    echo 7812 | sudo tee /sys/class/backlight/intel_backlight/brightness
    echo 3046 | sudo tee /sys/class/backlight/intel_backlight/brightness

  9. #19
    Join Date
    Jun 2005
    Location
    Toronto, Canada
    Beans
    Hidden!
    Distro
    Xubuntu 16.04 Xenial Xerus

    Re: Brightness Button doesnt work Asus X453M

    Try this combination in your /etc/default/grub file instead:
    Code:
    acpi_osi=\"! Windows 2012\" acpi_backlight=vendor
    ...and post back the results as before.

  10. #20
    Join Date
    Dec 2014
    Beans
    21

    Re: Brightness Button doesnt work Asus X453M

    Code:
    BOOT_IMAGE=/boot/vmlinuz-3.19.0-28-generic.efi.signed root=UUID=aedfc7ac-79f1-40ab-8c5b-dcca1fa93245 ro quiet splash "acpi_osi=! Windows 2012" acpi_backlight=vendor vt.handoff=7
    Code:
     /sys/class/backlight/asus-nb-wmi
    100
    100
    100
    
     /sys/class/backlight/intel_backlight
    2343
    7812
    2343
    3 & 4 Nothing Show for FN + F5/F6

Page 2 of 3 FirstFirst 123 LastLast

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
  •