Find the answer to your Linux question:
Page 2 of 2 FirstFirst 1 2
Results 11 to 19 of 19
You don't have contrib enabled in any of these, which is probably why the dependency problems. You may want non-free as well. Code: deb http://mirrors.kernel.org/debian/ lenny main contrib non-free Add ...
  1. #11
    Linux Guru reed9's Avatar
    Join Date
    Feb 2009
    Location
    Boston, MA
    Posts
    4,651
    You don't have contrib enabled in any of these, which is probably why the dependency problems. You may want non-free as well.

    Code:
    deb http://mirrors.kernel.org/debian/ lenny main contrib non-free
    Add to the security and volatile mirrors as well.

    Try reinstalling xbacklight, hotkeys, and hotkey-setup.

  2. #12
    Linux Engineer nujinini's Avatar
    Join Date
    Apr 2009
    Location
    An Island in the Pacific!
    Posts
    1,225
    After I added contrib non-free to the three, I made a reboot just to make sure.

    Here is my output.

    Code:
    jun@debian:~$ su -
    Password:
    debian:~# apt-get install xbacklight
    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    xbacklight is already the newest version.
    0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
    debian:~# exit
    logout
    jun@debian:~$ xbacklight -dec 10%
    No outputs have backlight property
    Pulso.PH

    "Rate Your Leaders. Share Your thoughts."

    nujinini
    Linux User #489667

  3. #13
    Linux Guru reed9's Avatar
    Join Date
    Feb 2009
    Location
    Boston, MA
    Posts
    4,651
    Do you have acpid installed?

    Code:
    su -
    apt-get install acpid
    What kind of computer is this? Make/Model?

    Do you have anything in the directory /sys/class/backlight?

  4. #14
    Linux Engineer nujinini's Avatar
    Join Date
    Apr 2009
    Location
    An Island in the Pacific!
    Posts
    1,225
    Code:
    jun@debian:~$ su -
    Password:
    debian:~# apt-get install acpid
    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    acpid is already the newest version.
    0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
    debian:~#
    Its a Lenovo G4300-3000, laptop

    Code:
    debian:~# ls /sys/class/backlight
    acpi_video0  acpi_video1
    debian:~#
    Pulso.PH

    "Rate Your Leaders. Share Your thoughts."

    nujinini
    Linux User #489667

  5. #15
    Linux Guru reed9's Avatar
    Join Date
    Feb 2009
    Location
    Boston, MA
    Posts
    4,651
    Code:
    ls /sys/class/backlightacpi_video0/
    Does this return max_brightness, actual_brightness, and brightness?

    If brightness is there try
    Code:
    echo 20 > /sys/class/backlight/acpi_video0/brightness
    You'll probably need to be root for that.

    Replace "20" with other numbers as desired. I believe the range is 0 to 100, from darkest to lightest, but I couldn't find confirmation of that.

  6. #16
    Linux Engineer nujinini's Avatar
    Join Date
    Apr 2009
    Location
    An Island in the Pacific!
    Posts
    1,225
    Code:
    jun@debian:~$ ls /sys/class/backlightacpi_video0/
    ls: cannot access /sys/class/backlightacpi_video0/: No such file or directory
    jun@debian:~$ su -
    Password:
    
    debian:~# ls /sys/class/backlightacpi_video0/
    ls: cannot access /sys/class/backlightacpi_video0/: No such file or directory
    debian:~#
    Not so good results
    Pulso.PH

    "Rate Your Leaders. Share Your thoughts."

    nujinini
    Linux User #489667

  7. #17
    Linux Guru reed9's Avatar
    Join Date
    Feb 2009
    Location
    Boston, MA
    Posts
    4,651
    I initially made a typo, which I corrected, but I'm guess you're going off the original email notification contents.

    Code:
    /sys/class/backlightacpi_video0/
    should be
    Code:
    /sys/class/backlight/acpi_video0/

  8. #18
    Linux Engineer nujinini's Avatar
    Join Date
    Apr 2009
    Location
    An Island in the Pacific!
    Posts
    1,225
    Code:
    debian:~# ls /sys/class/backlight/acpi_video0/
    actual_brightness  brightness      power      uevent
    bl_power           max_brightness  subsystem
    debian:~#
    I guess this output is promising?
    Last edited by nujinini; 11-24-2009 at 01:32 AM. Reason: wrong info copy pasted
    Pulso.PH

    "Rate Your Leaders. Share Your thoughts."

    nujinini
    Linux User #489667

  9. #19
    Linux Engineer nujinini's Avatar
    Join Date
    Apr 2009
    Location
    An Island in the Pacific!
    Posts
    1,225
    I tried to change 20 to 10 but still no backlight change
    Code:
    debian:~# echo 10 > /sys/class/backlight/acpi_video0/brightness
    debian:~#
    Pulso.PH

    "Rate Your Leaders. Share Your thoughts."

    nujinini
    Linux User #489667

Page 2 of 2 FirstFirst 1 2

Posting Permissions

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