Anzeige:
Ergebnis 1 bis 3 von 3

Thema: Helligkeit einstellen am Notebook xbacklight -set : acpi_video0 & intel_backlight

  1. #1
    Registrierter Benutzer
    Registriert seit
    Apr 2016
    Beiträge
    277

    Helligkeit einstellen am Notebook xbacklight -set : acpi_video0 & intel_backlight

    hallo und guten Abend,


    das Thema: Helligkeit einstellen am Notebook xbacklight -set : acpi_video0 & intel_backlight

    hmm wie würdet ihr denn die Helligkeitseinstellng angehen


    a. xbacklight -set 70 oder ggf so
    b. acpi_video0 & intel_backlight


    ich setze MX-Linux ein und habe folgend Optionen gefunden:


    https://forum.mxlinux.org/viewtopic.php?t=41893
    I have installed MX 16 on my laptop and am quite impressed with it. I usually set the Display Brightness to 50% as it is more convenient for me. What I found is after I restart MX 16, the brightness reverts back to 100% and I will have to reset it to 50% manually. The same thing gets repeated after restarting the OS. Please do something to correct it.
    its a quirk in xfce. I use a utility called "xbacklight" to set the brightness level to where I want. in my case, 70%
    Code:
    xbacklight -set 70


    oder auf diese Weise;


    Brightness: acpi_video0 & intel_backlight

    https://forum.mxlinux.org/viewtopic.php?t=47809


    [quote=alcornoqui post_id=477793 time=1547121553 user_id=19400]
    [Cross-posted in Xfce forums, 'coz ToZ]

    Hello. I have some trouble with the brightness controls on my netbook (hardware and software details below):

    Fn+F5/F6 seems to use acpi_video0. Fn keys make the brightness change, and the notification popup appear, but don't move the bar in the popup nor the slider in the Power Manager plugin.

    Xfce Power Manager v 1.6.1 seems to use intel_backlight when I use the slider or scroll over the panel icon. This way I can get higher max brightness compared to using the Fn keys.

    I'd like to use intel_backlight, as it has a bigger max value and is more fine grained (off-topic, anyone knows about the logarithmic scale proposed here, sounded great!), and marginally would like the slider and notification popup update their position properly.

    Here's some info from my system:

    Code:
    user@netbook:~$ cat /proc/cmdline
    BOOT_IMAGE=/boot/vmlinuz-4.13.0-1-686-pae root=UUID=bcb90034-53b6-482c-a4b1-b35db0c2b510 ro quiet
    I tried some of the "popular" acpi options on the grub command line, to no visible effect.


    Code:
    user@netbook:~$ lspci -k | grep -iA2 VGA
    00:02.0 VGA compatible controller: Intel Corporation Mobile 945GSE Express Integrated Graphics Controller (rev 03)
       Subsystem: ASUSTeK Computer Inc. Mobile 945GSE Express Integrated Graphics Controller
       Kernel driver in use: i915
    bzw:
    Code:
    user@netbook:~$ for i in /sys/class/backlight/*; do echo $i;cat $i/brightness;cat $i/max_brightness;done
    /sys/class/backlight/acpi_video0
    14
    15
    /sys/class/backlight/intel_backlight
    7989
    39780
    und
    Code:
    user@netbook:~$ pastebinit /var/log/Xorg.0.log
    https://pastebin.com/60pFPuSy
    bzw,
    Code:
    user@netbook    :~$ inxi -GMS
    System:    Host: mx1 Kernel: 4.13.0-1-686-pae i686 bits: 32 Desktop: Xfce 4.12.3 
               Distro: MX-17_386 Horizon December 15  2017 
    Machine:   Type: Laptop System: ASUSTeK product: 1005HA v: x.x serial: <root required> 
               Mobo: ASUSTeK model: 1005HA v: x.xx serial: <root required> BIOS: American Megatrends v: 1102 
               date: 10/16/2009 
    Graphics:  Device-1: Intel Mobile 945GSE Express Integrated Graphics driver: i915 v: kernel 
               Display: x11 server: X.Org 1.19.2 driver: intel resolution: 1024x600~60Hz 
               OpenGL: renderer: Mesa DRI Intel 945GME x86/MMX/SSE2 v: 1.4 Mesa 18.2.6

    Following advice from old forum posts, I modified these two file, maybe I should just modify one of them?

    Code:
    user@netbook:~$ cat /usr/share/X11/xorg.conf.d/20-intel.conf
    Section "Device"
            Identifier  "card0"
            Driver      "intel"
            Option      "Backlight"    "intel_backlight"
            BusID       "PCI:0:2:0"
    EndSection
    vgl.

    Code:
    user@netbook:~$ cat /etc/X11/xorg.conf.d/20-intel.conf 
    Section "Device"
       Identifier  "Intel Graphics"
       Driver      "intel"
       Option      "AccelMethod" "sna"             # was "uxa"
       Option      "Backlight"   "intel_backlight" # I added this line
       Option      "TearFree"    "true"
       BusID       "PCI:0:2:0"                     # and maybe this one too? I don't remember!

    was meint ihr denn !?
    Interessiert an Linux, SBC (Raspi & co), und WordPress News: https://wptavern.com :: Entwicklung: https://make.wordpress.org/core/ ::/[/url] :: die neue Knowledge-Base: https://affine.pro :: Nachfolger von miro, notion u. monday

  2. #2
    Organisiertes Chaos
    Registriert seit
    Jul 2011
    Ort
    OWL
    Beiträge
    478
    Zitat Zitat von diver Beitrag anzeigen
    was meint ihr denn !?
    Das dein Beitrag ein einziges Durcheinander ist.

    Musst für dich selbst schauen was funktioniert und für dich das Beste ist. Was bei anderen funktioniert, muss nicht ebenfalls bei dir funktionieren.

    Kann dir nur vorführen wie ich das hier bei einem Notebook handhabe.
    Bildschirmhelligkeit via xbacklight um 10 % verringern und um 10 % erhöhen:
    Code:
    xbacklight -dec 10
    xbacklight -inc 10
    Gleich auf den/einen gewünschten Wert setzen:
    Code:
    xbacklight -set 50
    Tasteneintrag in der Konfigurationsdatei für Fluxbox
    Code:
    #Bildschirmhelligkeit
    232 :Exec xbacklight -dec 10
    233 :Exec xbacklight -inc 10
    und für IceWM
    Code:
    key "XF86MonBrightnessUp"               xbacklight -inc 05
    key "XF86MonBrightnessDown"             xbacklight -dec 05
    Geändert von tomm.fa (30.12.19 um 23:21 Uhr)

  3. #3
    Registrierter Benutzer
    Registriert seit
    Apr 2016
    Beiträge
    277
    hallo Tomm.fa

    vorweg: vielen Dank für die schnelle Antwort. Freue mich. Ich werde mich da mal durcharbeiten - musste xbacklight erst mal installieren.


    ich mein dass ist doch komisch. zuerst hab ich gar keine Reaktion auf xbacklight und dann diese - vgl. die ausgabe:



    Code:
    root@mx:/home/martin# xbacklight -set 70
    bash: xbacklight: Kommando nicht gefunden.
    root@mx:/home/martin# xbacklight -set 70
    bash: xbacklight: Kommando nicht gefunden.
    root@mx:/home/martin# xbacklight -set 70
    No outputs have backlight property
    root@mx:/home/martin# xbacklight -set 50
    No outputs have backlight property
    root@mx:/home/martin# ^C
    root@mx:/home/martin#

    Werte dein Posting morgen früh aus und arbeite mich da durch. Klar - du hast Recht : Diese Kommandos muss man alle mal auf das jeweilige Notebook abstimmen und halt ausprobieren.
    Ich werde das ausprobieren und melde mich wieder.

    Dir nochmals Danke!!

    VG Diver

    Zitat Zitat von tomm.fa Beitrag anzeigen
    Das dein Beitrag ein einziges Durcheinander ist.

    Musst für dich selbst schauen was funktioniert und für dich das Beste ist. Was bei anderen funktioniert, muss nicht ebenfalls bei dir funktionieren.

    Kann dir nur vorführen wie ich das hier bei einem Notebook handhabe.
    Bildschirmhelligkeit via xbacklight um 10 % verringern und um 10 % erhöhen:
    Code:
    xbacklight -dec 10
    xbacklight -inc 10
    Gleich auf den/einen gewünschten Wert setzen:
    Code:
    xbacklight -set 50
    Tasteneintrag in der Konfigurationsdatei für Fluxbox
    Code:
    #Bildschirmhelligkeit
    232 :Exec xbacklight -dec 10
    233 :Exec xbacklight -inc 10
    und für IceWM
    Code:
    key "XF86MonBrightnessUp"               xbacklight -inc 05
    key "XF86MonBrightnessDown"             xbacklight -dec 05

    wie gesagt: ich teste das und meld mich morgen wieder.

    Dir nochmals Danke!!

    VG Diver

    update:


    auf der Suche nach einem korrekten Backlight hab ich jetzt schon mal einiges ausprobiert:

    Code:
    Graphics:  Device-1: Intel 2nd Generation Core Processor Family Integrated Graphics 
               vendor: Lenovo driver: i915 v: kernel bus ID: 00:02.0 chip ID: 8086:0106 
               Display: server: X.Org 1.19.2 driver: modesetting unloaded: fbdev,vesa 
               resolution: 1600x900~60Hz 
               OpenGL: renderer: Mesa DRI Intel Sandybridge Mobile v: 3.3 Mesa 18.2.6 compat-v: 3.0 
               direct render: Yes 
    root@mx:/home/martin#
    und
    Code:
    cat: /brightness: Datei oder Verzeichnis nicht gefunden
    root@mx:/home/martin# cat $i/brightness
    cat: /brightness: Datei oder Verzeichnis nicht gefunden
    root@mx:/home/martin# cat $i/max_brightness
    cat: /max_brightness: Datei oder Verzeichnis nicht gefunden
    root@mx:/home/martin#  $i/max_brightness
    bash: /max_brightness: Datei oder Verzeichnis nicht gefunden
    root@mx:/home/martin# sudo su
    root@mx:/home/martin# xset led
    root@mx:/home/martin# xset -led 3
    root@mx:/home/martin# xset -led 32
    https://forum.mxlinux.org/viewtopic....41584&start=10
    Geändert von diver (02.01.20 um 20:22 Uhr)
    Interessiert an Linux, SBC (Raspi & co), und WordPress News: https://wptavern.com :: Entwicklung: https://make.wordpress.org/core/ ::/[/url] :: die neue Knowledge-Base: https://affine.pro :: Nachfolger von miro, notion u. monday

Ähnliche Themen

  1. Helligkeit bei Xine einstellen?
    Von X-Dimension im Forum Fernsehen
    Antworten: 17
    Letzter Beitrag: 22.09.08, 20:43
  2. Helligkeit des Bildschirms einstellen
    Von joshgalaxy im Forum Mobiles Linux, Notebook, PDA
    Antworten: 0
    Letzter Beitrag: 01.06.05, 15:21
  3. Antworten: 1
    Letzter Beitrag: 22.08.04, 09:36
  4. Helligkeit über ein Programm einstellen
    Von Elvizz im Forum Mobiles Linux, Notebook, PDA
    Antworten: 12
    Letzter Beitrag: 14.06.04, 06:25
  5. Helligkeit / Kontrast unter X einstellen ?
    Von Utidi im Forum X-Konfiguration
    Antworten: 7
    Letzter Beitrag: 22.01.03, 00:39

Lesezeichen

Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein
  •