[SOLVED] After xorg-server update backlight is not behaving

After updating a Thinkpad S540 today the system goes into dim backlight level for the screen during the initial stages of the boot process, and recovers to normal brightness after the password has been entered in the KDM greeter and the user logs in to KDE. Running KDE the brightness behaves normally, but when the system shuts down after logging out from KDE the text output during shutdown does into very dim mode again.
The brightness parameters when logged in to KDE look fine.
$ ls -1 /sys/class/backlight/intel_backlight/*brightness | xargs -I % sh -c "echo % ; cat %"
/sys/class/backlight/intel_backlight/actual_brightness
937
/sys/class/backlight/intel_backlight/brightness
937
/sys/class/backlight/intel_backlight/max_brightness
937
$ ls -1 /sys/class/backlight/acpi_video0/*brightness | xargs -I % sh -c "echo % ; cat %"
/sys/class/backlight/acpi_video0/actual_brightness
100
/sys/class/backlight/acpi_video0/brightness
100
/sys/class/backlight/acpi_video0/max_brightness
100
The snippet of journal log relevant to the brightness setting is:
Jul 29 17:56:28 lenovo1 systemd[1]: Created slice system-systemd\x2dbacklight.slice.
Jul 29 17:56:28 lenovo1 systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:acpi_video0...
Jul 29 17:56:28 lenovo1 kernel: thinkpad_acpi: ThinkPad ACPI Extras v0.25
Jul 29 17:56:28 lenovo1 kernel: thinkpad_acpi: http://ibm-acpi.sf.net/
Jul 29 17:56:28 lenovo1 kernel: thinkpad_acpi: ThinkPad BIOS GPET58WW (1.58 ), EC unknown
Jul 29 17:56:28 lenovo1 kernel: thinkpad_acpi: Lenovo ThinkPad S5-S540, model 20B3CTO1WW
Jul 29 17:56:28 lenovo1 systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:intel_backlight...
Jul 29 17:56:28 lenovo1 kernel: snd_hda_intel 0000:00:1b.0: irq 61 for MSI/MSI-X
Jul 29 17:56:28 lenovo1 kernel: tpm_tis 00:0b: 1.2 TPM (device-id 0x0, rev-id 78)
Jul 29 17:56:28 lenovo1 kernel: ACPI Error: [\_SB_.PCI0.GFX0.DD02._BCL] Namespace lookup failure, AE_NOT_FOUND (20
Jul 29 17:56:28 lenovo1 kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0.RP05.PEGP.DD02._BCL] (Node f
Jul 29 17:56:28 lenovo1 kernel: thinkpad_acpi: detected a 8-level brightness capable ThinkPad
Jul 29 17:56:28 lenovo1 kernel: thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, suppo
Jul 29 17:56:28 lenovo1 kernel: thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
Jul 29 17:56:28 lenovo1 systemd-backlight[200]: Saved brightness 11 too low; increasing to 46.
Jul 29 17:56:28 lenovo1 kernel: snd_hda_intel 0000:00:03.0: irq 62 for MSI/MSI-X
Jul 29 17:56:28 lenovo1 kernel: ACPI Exception: AE_BAD_PARAMETER, Returned by Handler for [EmbeddedControl] (20140
Jul 29 17:56:28 lenovo1 kernel: ACPI Error: Method parse/execution failed [\_TZ_.TZ01._TMP] (Node ffff880226839cd0
Jul 29 17:56:28 lenovo1 kernel: ACPI Exception: AE_BAD_PARAMETER, Returned by Handler for [EmbeddedControl] (20140
Jul 29 17:56:28 lenovo1 kernel: ACPI Error: Method parse/execution failed [\_TZ_.TZ01._TMP] (Node ffff880226839cd0
Jul 29 17:56:28 lenovo1 systemd[1]: Started Load/Save Screen Backlight Brightness of backlight:acpi_video0.
Jul 29 17:56:28 lenovo1 systemd[1]: Started Load/Save Screen Backlight Brightness of backlight:intel_backlight.
Booting with kernel parameter systemd.restore_state=0 gives a normal brightness throughout. So this must have something to do with the saving of the brightness parameters by systemd. The clue is in the journal log above:
systemd-backlight[200]: Saved brightness 11 too low; increasing to 46.
I wonder how I can get systemd to reset the stored value which is too low to be sensible?
Has anyone seen similar behaviour and if so is there a proper fix instead of the workaround in the bug I have filed upstream as below?
Filed arch bug https://bugs.archlinux.org/task/41390
and upstream at https://bugs.freedesktop.org/show_bug.cgi?id=81884
Last edited by mcloaked (2014-08-13 08:58:01)

@iskandr , @ens  about backlight and fn keys:
keys work (I checked by xmodmap) and backlight control works, but only by:
/sys/class/backlight/intel_backlight/brightness
old scripts which used for example:
/sys/class/backlight/acpi_video0/brightness
stopped works.
I wonder if this is a BUG or new feature? Where are handlers in clean Linux / systemd responsible for action to acpi keys which controlls backlight? ( I checked and it's not acpid /etc/acpi/handler.sh - acpi keys backlight controll works without it ). (moreover,acpid is external application as well as xbacklight, gbacklight etc... It should work OOTB, without these applications and also in the console.)
to turn on old interface as before 3.16 try add
video.use_native_backlight=0
to GRUB_CMDLINE_LINUX_DEFAULT line in /etc/default/grub  ( remember about grub-mkconfig -o /boot/grub/grub.cfg )
it turns on old interface:
ls -l /sys/class/backlight/
lrwxrwxrwx 1 root root 0 08-15 13:36 acpi_video0 -> ../../devices/pci0000:00/0000:00:01.0/0000:01:00.0/backlight/acpi_video0
lrwxrwxrwx 1 root root 0 08-15 13:36 acpi_video1 -> ../../devices/pci0000:00/0000:00:02.0/backlight/acpi_video1
lrwxrwxrwx 1 root root 0 08-15 13:36 intel_backlight -> ../../devices/pci0000:00/0000:00:02.0/drm/card0/card0-LVDS-1/intel_backlight
and everything works again as before 3.16.
http://cgit.freedesktop.org/xorg/driver … 0d681c171e
This is another BUG (also occurs to my laptop). I see that the code is ready, so wait for a fix update.
I wonder also whether and where to file a bug report (about fn keys + backlight control).
Last edited by kelloco2 (2014-08-15 12:38:16)

Similar Messages

  • After the ios7 updated I can not open the iTunes store in my iPhone 5

    After the ios7 updated I can not open the iTunes store in my iPhone 5
    How can I fix it?

    Hi adrimomo,
    Welcome to the Support Communities!
    Here are a few things you can try:
    iOS: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/HT1430
    If you have tried those two things, refer to page 146 in the iPhone User Guide to Reset All Settings:
    iPhone User Guide for iOS 7
    manuals.info.apple.com/MANUALS/1000/MA1565/en_US/iphone_user_guide.pdf
    Also, check your settings for Safari -- enable cookies and turn off private browsing - see page 57 of the iPhone User Guide above.
    Cheers,
    - Judy

  • After the latest update Firefox does not show TRANSLATE THIS link on facebook

    After the latest update Firefox does not show TRANSLATE THIS link on facebook. I have many posts from Brazil but now they can not be translated since the link is missing. How to fix?

    See also:
    *https://addons.mozilla.org/firefox/addon/google-translator-for-firefox/
    *http://labs.microsofttranslator.com/bookmarklet/
    *http://googlesystem.blogspot.com/2009/11/google-translation-bar.html

  • TS4002 After the icloud update I have not been able to access any of the newly formatted icons including mail, is anyone else experiencing this.  I report to apple through the tab but nothing changes. My iPhone mail is unaffected.

    After the icloud update I have not been able to access any of the newly formatted icons including mail, is anyone else experiencing this.  I report to apple through the tab but nothing changes. My iPhone mail is unaffected.

    Happy to report that iTunes Match has returned to working like normal on iTunes 10.7 on my computer today. If any iTunes engineers read this thread, I really appreciate the fix.
    Has it returned to normal for you?

  • Did all the updates that Apple requested in my 64 GB IPOD and the battery continues discharging very quickly. When this problem will be solved, because before these updates were downloading not the battery so quickly. Did we revive the Steve Jobs to resol

    Did all the updates that Apple requested in my 64 GB IPOD and the battery continues discharging very quickly. When this problem will be solved, because before these updates were downloading not the battery so quickly. Did we revive the Steve Jobs to resolve the problem, because each update only worsens the operation. I look forward to a quick, effective and definitive solution. Thank You. Ester

    Did all the updates that Apple requested in my 64 GB IPOD and the battery continues discharging very quickly. When this problem will be solved, because before these updates were downloading not the battery so quickly. Did we revive the Steve Jobs to resolve the problem, because each update only worsens the operation. I look forward to a quick, effective and definitive solution. Thank You. Ester

  • XKB keymap problem after xorg-server was updated

    i had update xorg-server to version 1.1.1-4 and switch layout don't work correctly now.
    In /var/log/Xorg.0.log
    (**) Option "XkbRules" "xorg"
    (**) Keyboard0: XkbRules: "xorg"
    (**) Option "XkbModel" "pc105"
    (**) Keyboard0: XkbModel: "pc105"
    (**) Option "XkbLayout" "us,ru(winkeys)"
    (**) Keyboard0: XkbLayout: "us,ru(winkeys)"
    (**) Option "XkbOptions" "grp:caps_toggle,grp_led:scroll"
    (**) Keyboard0: XkbOptions: "grp:caps_toggle,grp_led:scroll"
    (**) Option "CustomKeycodes" "off"
    (**) Keyboard0: CustomKeycodes disabled
    (II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD)
    (II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE)
    (WW) Couldn't load XKB keymap, falling back to pre-XKB keymap
    in /etc/X11/xorg.conf
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "us,ru(winkeys)"
    Option "XkbOptions" "grp:caps_toggle,grp_led:scroll"
    EndSection
    thanks in advance and excuse my english

    The XKEYBOARD keymap compiler (xkbcomp) reports:                                                                           
    > Error:            Cannot open "/usr/share/X11/xkb/compiled/server-0.xkm" to write keyboard description                   
    >                   Exiting
    /usr/share/X11/xkb/compiled - is symlink to not exist folder  /var/lib/xkb

  • Kde 4.2 won't login after xorg-server-1.6.1.901-1 upgrade

    I upgraded my system this afternoon, but when the upgrade completed all my window decorations were gone and plasma as down.  I restarted kde from virtual console 1 and the login screen was brought up.  Now when i go to login i get stuck in an endless loop.  I type in my username and password, and then after a few seconds the login window reappears. 
    I checked /var/log/errors.log and there are a number of lines like this:
    kdm_greet[3623]: Cannot open default user face
    i then installed gdm which wouldn't log me in either, but gave an error along the lines of xclient doesn't exist
    this error occured after installing xorg-server-1.6.1.901-1
    any help would be appeciated as i can't use arch at all atm!

    sorry, i forgot to mention it.  I've tried both of those things and niether helped.  Same problem.  I also changed the permissions on the /tmp directory which removed another error message to the effect of: cannnot save user authorization,
    oh and just fyi, my disk is not full, there is at least 5gb free on that partition, so thats not what was causing that error.

  • [Solved] Compiling Xorg-server 1.6.3.901.

    Hello Toaday I wanted to build new xorg-server package with this PKGBUILD:
    5 pkgname=xorg-server
    6 pkgver=1.6.3.901
    7 pkgrel=1
    8 pkgdesc="X.Org X servers"
    9 arch=('i686' 'x86_64')
    10 license=('custom')
    11 url="http://xorg.freedesktop.org"
    12 depends=('libxfont>=1.4.0' 'openssl>=0.9.8k' 'libpciaccess>=0.10.8' 'libxv>=1.0.4' 'pixman>=0.16.0' 'xkeyboard-config>=1.6' 'xorg-serve
    13 makedepends=('glproto' 'libx11>=1.2.2' 'mesa>=7.5.1' 'xf86driproto>=2.1.0' 'xtrans>=1.2.4' 'libxkbfile>=1.0.5' 'randrproto>=1.3.0' 'ren
    14 conflicts=('catalyst-utils<=9.2')
    15 options=('!libtool')
    16 provides=('x-server')
    17 groups=('xorg')
    18 install=xorg-server.install
    19 source=(${url}/releases/individual/xserver/${pkgname}-${pkgver}.tar.bz2
    20 xorg-redhat-die-ugly-pattern-die-die-die.patch
    21 dpms-dont-reset-lastdeviceeventtime.patch
    22 dri2-dontcrash.patch
    23 xinerama.patch
    24 dga.patch
    25 xvfb-run
    26 xvfb-run.1)
    27 md5sums=('8d43c4cb43e6a10550e68fbbcad10e9d'
    28 '1a336eb22e27cbf443ec5a2ecddfa93c'
    29 '9ea2e9f5a7192da23c5c573545fe9836'
    30 '03cd32862fbfe5f493e108ee7205ade6'
    31 '060aaa85d64d26915783e9f6837a666c'
    32 'f426f93dfec972ba6f641a8e7d6a9256'
    33 '52fd3effd80d7bc6c1660d4ecf23d31c'
    34 '376c70308715cd2643f7bff936d9934b')
    35
    36 build() {
    37 cd "${srcdir}/${pkgname}-${pkgver}"
    38 # Get rid of the ugly pattern
    39 patch -Np3 -i "${srcdir}/xorg-redhat-die-ugly-pattern-die-die-die.patch" || return 1
    40
    41 # Build fixes for new protos
    42 patch -Np1 -i "${srcdir}/xinerama.patch" || return 1
    43 patch -Np1 -i "${srcdir}/dga.patch" || return 1
    44
    45 # Fixes from http://wiki.x.org/wiki/Server16Branch
    46 patch -Np1 -i "${srcdir}/dpms-dont-reset-lastdeviceeventtime.patch" || return 1
    47 patch -Np1 -i "${srcdir}/dri2-dontcrash.patch" || return 1
    48
    49 # Fix dbus config path
    50 sed -i -e 's/\$(sysconfdir)/\/etc/' config/Makefile.* || return 1
    51
    52 ./configure --prefix=/usr \
    53 --disable-dri2 \
    54 --disable-ipv6 \
    55 --disable-dri \
    56 --disable-dmx \
    57 --disable-xvfb \
    58 --disable-xnest \
    59 --disable-composite \
    60 --disable-xcsecurity \
    61 --enable-xorg \
    62 --disable-xephyr \
    63 --disable-glx-tls \
    64 --disable-kdrive \
    65 --enable-install-setuid \
    66 --disable-config-hal \
    67 --enable-config-dbus \
    68 --disable-record \
    69 --disable-xfbdev \
    70 --disable-xfake \
    71 --disable-xsdl \
    72 --disable-static \
    73 --sysconfdir=/etc/X11 \
    74 --localstatedir=/var \
    75 --with-default-font-path=/usr/share/fonts/misc,/usr/share/fonts/100dpi:unscaled,/usr/share/fonts/75dpi:unscaled,/usr/shar
    76 --with-xkb-path=/usr/share/X11/xkb \
    77 --with-xkb-output=/var/lib/xkb \
    78 --without-dri-driver || return 1
    79
    80 make || return 1
    81 make DESTDIR="${pkgdir}" install || return 1
    82
    83 install -m755 "${srcdir}/xvfb-run" "${pkgdir}/usr/bin/" || return 1
    84 install -m644 "${srcdir}/xvfb-run.1" "${pkgdir}/usr/share/man/man1/" || return 1
    85
    86 rm -rf "${pkgdir}/var/log" || return 1
    87
    88 install -m755 -d "${pkgdir}/etc/X11" || return 1
    89 install -m755 -d "${pkgdir}/var/lib/xkb" || return 1
    90
    91 # Needed for non-mesa drivers, libgl will restore it
    92 mv "${pkgdir}/usr/lib/xorg/modules/extensions/libglx.so" \
    93 "${pkgdir}/usr/lib/xorg/modules/extensions/libglx.xorg" || return 1
    94
    95 install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
    96 install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" || return 1
    And while compiling I got error:
    /home/user/abs/xorg-server/PKGBUILD: line 77: --with-xkb-path=/usr/share/X11/xkb: No such file or direcotry
    Last edited by SpeedVin (2009-09-06 14:00:23)

    Heh I missed some part of like like flamelab said , how I do that?
    Some time ago I created my own PKGBUILD for xorg-server and toady I want to update it becouse I see some difreces between my PKGBUILD and PKGBUILD from abs tree and I copy the difrrent line
    Thanks Perry3D and big thanks to flamelab.

  • Iphone is stuck in recovery mode and cannot restore after trying to update to iOS6 - not jailbroken

    I have an iphone4s, and the question basically says it all - after trying to update to ios6, the udgrade downloaded to my computer and started loading onto my phone. However it sudeenly just stopped an turned into the balck screen asking to plug into itunes. When I do this, it says I have to restore the phone, but when I try to restore, it says there is an error (3014).
    I have tried:
    - pressing the home and top buttons unti the apple appears
    - Checked all security software and the ports aren't blocked
    - Have tried pressing option+restore to choose ios6 and ios5.1.1 - neither has worked
    - Its been like this for about a day and a half now, and I have probably tried to restore it at least 50 times to no avail, always with the same error code.
    What can I do??
    Is this something to do with how busy the appl servers are? And when should I expect to be able to use my phone again?

    Yeah same exact problem as me.  EXACTLY.  In a way I'm glad more than just me are having the problem so I know it's probably not on my end and on the apple side....I HOPE that is what it is.
    MAN, a whole day and a half????  Crap I need my phone to work....
    I really think it's the apple servers because it errors 3014 right when iTunes says "verifying phone....." something....  It goes away so fast I can't read the rest, but I think that is the step where it verifies phone to the apple servers, which are overloaded, I assume.
    It's gotta be that.  How many other people are having this same exact issue?

  • After the last update - calls do not come through

    Hi,
    my fiancee and I both have a Samsung Fascinate. In recent weeks we are having problems receiving calls from each other.  I do not receive his calls and he doesn't receive mine, yet the person who is calling can hear the phone ring at the end of the line and it will go to VM after a certain number of rings just like it would normally. Yet the calls never ring through to the receiving party. WHY?  Text messaging seems to be working normal between us, but the phone situation is ridiculous. We noticed that this all started after this last update that was automatically installed on our phones.. We compare phone logs all the time and we can clearly see where the other person has called, but neither of us ever receives those phone calls. Other calls seems to come through just fine and I can call his ATT Blackberry and it will ring right in. It seems to be a Samsung Fascinate Issue??????  Can anyone help with this?? It's really making us mad not being able to get a hold of the other one when needed.

    There are two other threads already on this they explain what is happening and how to check if this is your problem
    here is a links to them
    http://community.vzw.com/t5/Samsung-Fascinate/Phone-not-receiving-calls-during-Sleep-mode/td-p/544104
    http://community.vzw.com/t5/Samsung-Fascinate/Incoming-calls-not-coming-through/td-p/516862

  • After the last update, Thunderbird can not get mail from RCN POP3?

    On a WINDOWS 7 PC (Dell Inspiron 15) Thunderbird was automatically updated June 12.
    After the update it can not get my email from my service provider (RCN).
    It seems to connect with pop.rcn.com but then it hangs, and no email comes.
    Your troubleshooting information is:
    Application Basics
    Name: Thunderbird
    Version: 24.6.0
    User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0
    Profile Folder: Show Folder
    (Local drive)
    Application Build ID: 20140610001341
    Enabled Plugins: about:plugins
    Build Configuration: about:buildconfig
    Crash Reports: about:crashes
    Memory Use: about:memory
    Mail and News Accounts
    account1:
    INCOMING: account1, , (pop3) pop.rcn.com:110, plain, passwordCleartext
    OUTGOING: smtp.rcn.com:587, plain, passwordCleartext, true
    OUTGOING: smtp.rcn.com:587, plain, passwordCleartext, false
    account2:
    INCOMING: account2, , (none) Local Folders, plain, passwordCleartext
    Extensions
    Important Modified Preferences
    Name: Value
    accessibility.typeaheadfind.flashBar: 0
    browser.cache.disk.capacity: 358400
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    browser.cache.disk.smart_size_cached_value: 358400
    extensions.lastAppVersion: 24.6.0
    font.internaluseonly.changed: false
    font.name.monospace.el: Consolas
    font.name.monospace.tr: Consolas
    font.name.monospace.x-baltic: Consolas
    font.name.monospace.x-central-euro: Consolas
    font.name.monospace.x-cyrillic: Consolas
    font.name.monospace.x-unicode: Consolas
    font.name.monospace.x-western: Consolas
    font.name.sans-serif.el: Calibri
    font.name.sans-serif.tr: Calibri
    font.name.sans-serif.x-baltic: Calibri
    font.name.sans-serif.x-central-euro: Calibri
    font.name.sans-serif.x-cyrillic: Calibri
    font.name.sans-serif.x-unicode: Calibri
    font.name.sans-serif.x-western: Calibri
    font.name.serif.el: Cambria
    font.name.serif.tr: Cambria
    font.name.serif.x-baltic: Cambria
    font.name.serif.x-central-euro: Cambria
    font.name.serif.x-cyrillic: Cambria
    font.name.serif.x-unicode: Cambria
    font.name.serif.x-western: Cambria
    font.size.fixed.el: 14
    font.size.fixed.tr: 14
    font.size.fixed.x-baltic: 14
    font.size.fixed.x-central-euro: 14
    font.size.fixed.x-cyrillic: 14
    font.size.fixed.x-unicode: 14
    font.size.fixed.x-western: 14
    font.size.variable.el: 17
    font.size.variable.tr: 17
    font.size.variable.x-baltic: 17
    font.size.variable.x-central-euro: 17
    font.size.variable.x-cyrillic: 17
    font.size.variable.x-unicode: 17
    font.size.variable.x-western: 17
    mail.openMessageBehavior.version: 1
    mail.winsearch.firstRunDone: true
    mailnews.database.global.datastore.id: d543b3cb-33b5-4a9c-b3c2-663f71c6c97
    network.cookie.prefsMigrated: true
    places.database.lastMaintenance: 1402326252
    places.history.expiration.transient_current_max_pages: 104858
    plugin.importedState: true
    Graphics
    Adapter Description: Intel(R) HD Graphics Family
    Vendor ID: 0x8086
    Device ID: 0x0126
    Adapter RAM: Unknown
    Adapter Drivers: igdumd64 igd10umd64 igd10umd64 igdumdx32 igd10umd32 igd10umd32
    Driver Version: 8.15.10.2361
    Driver Date: 4-10-2011
    Direct2D Enabled: false
    DirectWrite Enabled: false (6.2.9200.16571)
    ClearType Parameters: ClearType parameters not found
    WebGL Renderer: false
    GPU Accelerated Windows: 0
    AzureCanvasBackend: skia
    AzureFallbackCanvasBackend: cairo
    AzureContentBackend: none
    JavaScript
    Incremental GC: 1
    Accessibility
    Activated: 0
    Prevent Accessibility: 0
    Library Versions
    Expected minimum version
    Version in use
    NSPR
    4.10.2
    4.10.2
    NSS
    3.15.4 Basic ECC
    3.15.4 Basic ECC
    NSS Util
    3.15.4
    3.15.4
    NSS SSL
    3.15.4 Basic ECC
    3.15.4 Basic ECC
    NSS S/MIME
    3.15.4 Basic ECC
    3.15.4 Basic ECC

    Thanks.
    The problem went away after two days.
    If Thunderbird was not automatically updated, the problem must have been RCN.

  • [SOLVED] building xorg-server: libgl & nvidia-utils conflict

    Hello!
    I somehow feel like I'm totally missing the point, but...
    edit: although I think (not sure any more) this was the same procedure when I first compiled xorg-server, I maybe should mention, I'm now using the testing xorg.
    I still don't really understand, why I need libgl to build xorg-server. Aren't nvidia-utils supposed to replace that? Is there a way of building xorg-server with nvidia-utils instead of libgl and if yes: are there (dis-/) advantages doing so other than not having to uninstall nvidia-utils while compiling xorg-server?
    Or the other way around: Perhaps it's just me, but I feel "funny" having to remove something that's vital to my installation before I can compile something that's vital to my installation, too... so is it really OK to remove nvidia-utils and compile xorg-server without it or am I doing it wrong?
    Thank you for enlightening me
    Last edited by whoops (2009-04-07 02:20:51)

    Well AFAIK, The nVIDIA closed source drivers haven't caught up with xorg server 1.6 which is why you need libgl to build xorg-xserver 1.6+. I personally perfer the open source drivers over Fglrx (FireGL and Radeon X) and the closed source nVIDIA drivers as well.
    edit: xorg server is 1.6 in testing so if you want to compile from source, and have the closed source nvidia drivers, you would need to compile xorg server 1.5.XX
    P.S. You cannot have both, the nvidia drivers and the open source drivers (libgl), running at the same time which is why the nvidia-* packages are to be removed.
    Cheers!
    Last edited by Neo_The_User (2009-03-30 16:53:28)

  • WEB and WIKI Error after Feb2012 server update

    Anyone else having server WEB, Wiki and certificate problems after the last update?

    I got this from the log file. Maybe it will help finding the problem.
    Feb 27 00:19:54 xxvxx servermgrd[6491]: servermgr_web: XSWebConfig read failed; detail:Error Domain=XSServerFoundationErrorDomain Code=4 "Failed to read settings: Exception:
              undefined method `downcase' for nil:NilClass
              ." UserInfo=0x7fc533d6ad50 {NSLocalizedDescription=Failed to read settings: Exception:
              undefined method `downcase' for nil:NilClass

  • After last Windows update, Firefox will not work

    I am running Vista Business OS. and FF beta 4.x
    After the latest updates (installed automatically) on Wed, April 27, Firefox will not load. When I click on the icon, I get the "busy" and then.......nothing. It does show as a running process, but nothing comes up on the screen. I have re-downloaded and re-installed it, but nothing. IE does come up, but Chrome does not.
    It seems like MS blocked FF with the latest updates.
    If I revert to the restore point before the updates were installed, FF works fine.
    Help!

    I uninstalled KB 2446708 (Security Update for .NET Framework 4) ... took forever to uninstall, like 20 minutes.... And now Firefox starts up normally!
    By the way, my Firefox is version 3.6.17, running on Windows Vista 64bit. I try to avoid all the new updates like IE9. Perhaps I should try avoiding .NET Framework 4 as well.

  • After the newe update i am not longer abled to open new tabblads

    Hello pleaple after the new update i whas no longer anabled to open farder any king of a new tabled. When i clik on the buttun to open a new one thare hapens nohing. please seport.

    Uninstall the Ask toolbar and it should work again. There is a compatibility issue with the Ask toolbar and Firefox that prevents new tabs from being opened.
    There are a couple of places to check for the Ask toolbar:
    * Check the Windows Control panel for the Ask Toolbar - http://about.ask.com/apn/toolbar/docs/default/faq/en/ff/index.html#na4
    * Also check your list of extensions, you may be able to uninstall it from there - https://support.mozilla.com/kb/Uninstalling+add-ons

Maybe you are looking for

  • How do I find out what the file size is before I purchase and download a movie?

    I cannot find the file size for movies or TV shows anywhere on iTunes. I need to know how big the file is before I download it.

  • After Downloading, Error while opening PDF  : PDF has no pages

    After Downloading, Error while opening PDF  : PDF has no pages CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'     EXPORTING       SRC_SPOOLID              = L_SPOOLNO       NO_DIALOG                = SPACE       DST_DEVICE               = MSTR_PRINT_PARM

  • Obiee 11g blocking.js script

    Hi , I am trying to implement blocking.js script for my analysis. and below is the code for claimsblocking.js script. I have placed the script in ..OracleBIPresentationServicesComponent\coreapplication_obips1\analyticsRes folder function validateAnal

  • Acrobat 9 forms from word

    I'm working with Acrobat 9 Pro and creating a form with a table.  The table  had 4 columns the first 3 have non-numerical data.  The forth column is a cost  column.  What I need it to do is if there is something in columns 1-3 for it to  talley the c

  • How to get better in the print world (Graphic Design general question.)

    I wasn't really sure where to post this so; I decided the general section would be nice. Here's the thing: I know how to use Photshop, Illustrator, Flash, and Indesign (and other adobe programs) HOWEVER what I don't know or am never really sure on is