Rsh is broke ?? [solved]

Hi,
I'm new to Arch. I've installed "openssh", "cvs" and "netkit-rsh" packages using pacman.
I can ssh into a remote machine without a problem.
but I can't use cvs to work with a remote repository.
# cvs -d :ext:username@remote_machine/homes/username/CVS co module
just hangs!
i've figured that the rsh command does not run the ssh... hence no logging into the remote machine.
the following command is executed by cvs.... whose results is nothing!
# rsh -l username remote_machine cvs server
by right, rsh should invoke the ssh command, any idea why this doesn't happen?
I know it doesn't happen, because I don't get asked for my password on the remote machine!
thanks,
Shane
Last edited by punter (2007-08-18 12:42:05)

Kknd wrote:I'm getting this error too. It just hangs, and I get an "EOF from server". I've tried to use "export CVS_RSH=ssh", but I still get the same thing =/.
can you ssh into the server without a problem??

Similar Messages

  • Performance In Simple Scenarios

    I have done some performance testing to see if asynchronous triggers performs any better than synchronous triggers in a simple audit scenario -- capturing record snapshots at insert, update and delete events to a separate database within the same instance of SQL Server.
    Synchronous triggers performed 50% better than asynchronous triggers; this was with conversation reuse and the receive queue activation turned off, so the poor performance was just in the act of forming and sending the message, not receiving and processing.  This was not necessarily surprising to me, and yet I have to wonder under what conditions would we see real performance benefits for audit scenarios.
    I am interested if anyone has done similar testing, and if they received similar or different results.  If anyone had conditions where asynchronous triggers pulled ahead for audit scenarios, I would really like to hear back from them.  I invite any comments or suggestions for better performance.
    The asynchronous trigger:
    Code Snippet
    ALTER TRIGGER TR_CUSTOMER_INSERT ON DBO.CUSTOMER
    FOR INSERT AS
    BEGIN
      DECLARE
        @CONVERSATION UNIQUEIDENTIFIER ,
        @MESSAGE XML ,
        @LOG_OPERATION CHAR(1) ,
        @LOG_USER VARCHAR(35) ,
        @LOG_DATE DATETIME;
      SELECT TOP(1)
        @CONVERSATION = CONVERSATION_HANDLE ,
        @LOG_OPERATION = 'I' ,
        @LOG_USER = USER() ,
        @LOG_DATE = GETDATE()
      FROM SYS.CONVERSATION_ENDPOINTS;
      SET @MESSAGE =
      ( SELECT
          CUST_ID = NEW.CUST_ID ,
          CUST_DESCR = NEW.CUST_DESCR ,
          CUST_ADDRESS = NEW.CUST_ADDRESS ,
          LOG_OPERATION = @LOG_OPERATION ,
          LOG_USER = @LOG_USER ,
          LOG_DATE = @LOG_DATE
        FROM INSERTED NEW
        FOR XML AUTO );
      SEND ON CONVERSATION @CONVERSATION
        MESSAGE TYPE CUSTOMER_LOG_MESSAGE ( @MESSAGE );
    END;
    The synchronous trigger:
    Code Snippet
    ALTER TRIGGER TR_CUSTOMER_INSERT ON DBO.CUSTOMER
    FOR INSERT AS
    BEGIN
      DECLARE
        @LOG_OPERATION CHAR(1) ,
        @LOG_USER VARCHAR(15) ,
        @LOG_DATE DATETIME;
      SELECT
        @LOG_OPERATION = 'I' ,
        @LOG_USER = USER() ,
        @LOG_DATE = GETDATE()
      INSERT INTO SALES_LOG.DBO.CUSTOMER
      SELECT
        CUST_ID = NEW.CUST_ID ,
        CUST_DESCR = NEW.CUST_DESCR ,
        CUST_ADDRESS = NEW.CUST_ADDRESS ,
        LOG_OPERATION = @LOG_OPERATION ,
        LOG_USER = @LOG_USER ,
        LOG_DATE = @LOG_DATE
      FROM INSERTED NEW
    END;

    Synchronous audit has to do one database write (one insert). Asynchronous audit has to do at least an insert and an update (the SEND)  plus a delete (the RECEIVE) and an insert (the audit itself), so that is 4 database writes. If the destination audit service is remote, then the sys.transmission_queue operations have to be added (one insert and one delete). So clearly there is no way asynchronous audit can be on pair with synchronous audit, there are at least 3 more writes to complete. And that is neglecting all the reads (like looking up the conversation handle etc) and all the marshaling/unmarshaling of the message (usually some fairly expensive XML processing).
    Within one database the asynchronous pattern is apealing when the trigger processing is expensive (so that the extra cost of going async is negligible) and reducing the original call response time is important. It could also help if the audit operations create high contention and defering the audit reduces this. Some more esoteric reasons is when asynchronous processing is desired for architecture reasons, like the posibility to add a workflow triggered by the original operation and desire to change this workflow on-the-fly without impact/down time (eg. more consumers of the async message are added, the message is schreded/dispatched to more processing apps and triggers more messages downstream etc etc).
    If the audit is between different databases even within same instance then the problem of availabilty arrises (audit table/database may be down for intervals, blocking the orginal operations/application).
    If the audit is remote (different SQL Server isntances) then using Service Broker solves the most difficult problem (communication) in addition to asynchronicity and availability, in that case the the synchrnous pattern (e.g. using a linked server) is really a bad choice.

  • UDDI - Simple Scenarios

    hi UDDI experts,
    For the SAP online documentation shown below, is there any tutorial or examples or how to guide available? Did anyone have experiene using SAP J2EE Engines UDDI registry?
    Thanks in advance
    Kiran
    snippet from online documentation
    ==============================
    Simple UDDI Scenarios
    ·        One company publishes a standard in UDDI and the others can find and use the same standard.
    For example, a tour office company may offer rooms from several hotels. This company publishes a Web Service Interface in UDDI and each hotel that wants to be represented by this company implements a Web service that extends this Web Service Interface. Later on, after an agreement between both companies, the tour company may use the WSDL of the Hotel Web service to ask for free rooms, book rooms, and so on.
    ·        A published standard Web Service Interface already exists and you want to see who supports it and to choose the one that suits you best.

    Synchronous audit has to do one database write (one insert). Asynchronous audit has to do at least an insert and an update (the SEND)  plus a delete (the RECEIVE) and an insert (the audit itself), so that is 4 database writes. If the destination audit service is remote, then the sys.transmission_queue operations have to be added (one insert and one delete). So clearly there is no way asynchronous audit can be on pair with synchronous audit, there are at least 3 more writes to complete. And that is neglecting all the reads (like looking up the conversation handle etc) and all the marshaling/unmarshaling of the message (usually some fairly expensive XML processing).
    Within one database the asynchronous pattern is apealing when the trigger processing is expensive (so that the extra cost of going async is negligible) and reducing the original call response time is important. It could also help if the audit operations create high contention and defering the audit reduces this. Some more esoteric reasons is when asynchronous processing is desired for architecture reasons, like the posibility to add a workflow triggered by the original operation and desire to change this workflow on-the-fly without impact/down time (eg. more consumers of the async message are added, the message is schreded/dispatched to more processing apps and triggers more messages downstream etc etc).
    If the audit is between different databases even within same instance then the problem of availabilty arrises (audit table/database may be down for intervals, blocking the orginal operations/application).
    If the audit is remote (different SQL Server isntances) then using Service Broker solves the most difficult problem (communication) in addition to asynchronicity and availability, in that case the the synchrnous pattern (e.g. using a linked server) is really a bad choice.

  • [solved] Who broke vdpau? :P

    One of the last upgrade broke my vdpau playback with (s)mplayer..nvidia I'm looking at you! Anyone else?
    [VD_FFMPEG] XVMC-accelerated MPEG-2.
    [h264_vdpau @ 0x1015400]Missing reference picture, default is 0
    [h264_vdpau @ 0x1015400]decode_slice_header error
    [h264_vdpau @ 0x1015400]reference picture missing during reorder
    [h264_vdpau @ 0x1015400]Missing reference picture, default is 65538
    [h264_vdpau @ 0x1015400]reference picture missing during reorder
    [h264_vdpau @ 0x1015400]Missing reference picture, default is 65542
    [vdpau] Error when calling vdp_presentation_queue_block_until_surface_idle: An invalid handle value was provided.
    Fontconfig warning: "/etc/fonts/conf.d/50-user.conf", line 9: reading configurations from ~/.fonts.conf is deprecated.
    [vdpau] Error when calling vdp_presentation_queue_block_until_surface_idle: An invalid handle value was provided.
    [vdpau] Error when calling vdp_presentation_queue_display: An invalid handle value was provided.
    [vdpau] Error when calling vdp_presentation_queue_block_until_surface_idle: An invalid handle value was provided.
    [vdpau] Error when calling vdp_presentation_queue_display: An invalid handle value was provided.
    [vdpau] Error when calling vdp_presentation_queue_block_until_surface_idle: An invalid handle value was provided.
    [vdpau] Error when calling vdp_presentation_queue_display: An invalid handle value was provided.
    and so on...
    Last edited by mangus (2013-02-10 09:19:35)

    thanks,so I'll look deeply into that..I haven't touched anything related though..
    Is (s)mplayer2 raccomended nowadays?
    edit [solved]:
    Apparently I had somehow "option DamageEvents" set to false in xorg configuration and that broke vdpau. Classic  pebkac.
    Allan is safe for now
    Last edited by mangus (2013-02-10 09:26:37)

  • [SOLVED] Update broke font anti-aliasing

    I've been updating daily, and there were just a few updates today (Sunday, 22 January).  However, almost immediately my fonts went ugly.  I tried rebooting, but it didn't help.  Anti-aliasing doesn't work anymore in Xfce or KDE, which is all I tried.
    I did notice there was a udev update, but there were also some library updates that I can't remember.  I have no idea what broke.
    Any insights or suggestions?  The system is ugly enough that it's hard to read, so I'm moving over to an Arch I haven't updated today.
    Last edited by eerok (2012-01-22 20:18:08)

    Solved.  For some reason I suddenly needed to add a hand-rolled ~/.fonts.conf -- one might have hoped that the Xfce settings would actually work for the Xfce panel and menus, but I guess not.

  • [SOLVED] Could I broke my SD card with badblocks or dd? [I coudn't]

    I found some old, 1GB SD Card and wanted to use it as my EFI partition (well, wanted to check if my EFI system will even see it as I have no idea if it's possible or not). There were some old pictures so I thought - okay, it's working. I've wiped it with
    badblocks -wsv
    and the final output was
    Pass completed, 216640 bad blocks found. (0/0/216640 errors)
    which seems to me like ALL blocks are "bad" (corruption error). Well, I thought that maybe badblocks wasn't created to check SD cards. I then used gdisk to get:
    Command (? for help): p
    Disk /dev/mmcblk0: 1984000 sectors, 968.8 MiB
    Logical sector size: 512 bytes
    Disk identifier (GUID): 84DBE3FD-1D8A-4E49-80D1-9F9594BB1974
    Partition table holds up to 128 entries
    First usable sector is 34, last usable sector is 1983966
    Partitions will be aligned on 2048-sector boundaries
    Total free space is 8158 sectors (4.0 MiB)
    Number  Start (sector)    End (sector)  Size       Code  Name
       1            8192         1983966   964.7 MiB   EF00  EFI System
    After writing changes to the card (
    Command (? for help): w
    Final checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING
    PARTITIONS!!
    Do you want to proceed? (Y/N): y
    OK; writing new GUID partition table (GPT) to /dev/mmcblk0.
    The operation has completed successfully.
    ) I saw no extra partition in my /dev so I ran gdisk again and it prompted:
    Caution: invalid main GPT header, but valid backup; regenerating main header
    from backup!
    Caution! After loading partitions, the CRC doesn't check out!
    Warning! Main partition table CRC mismatch! Loaded backup partition table
    instead of main partition table!
    Warning! One or more CRCs don't match. You should repair the disk!
    Partition table scan:
      MBR: protective
      BSD: not present
      APM: not present
      GPT: damaged
    Caution: Found protective or hybrid MBR and corrupt GPT. Using GPT, but disk
    verification and recovery are STRONGLY recommended.
    I've tried to
    dd if=/dev/urandom
    too and all the other options I could think of, just to start over... but... it is just broken now? Was it broken before?
    Last edited by smsware (2013-07-17 11:57:24)

    It was in some old phone of mine and appears to be as clean as brand new. But
    sudo dcfldd if=/dev/urandom of=/dev/mmcblk0 bs=4M count=1
    gave
    1+0 records in
    1+0 records out
    as an output so I actually can write into it, right? I played a little with the lock label but it's acting the same. If lock label is set to protect the data, the output is
    dcfldd:/dev/mmcblk0: Read-only file system
    so it's not the problem. I want to buy new card anyway but I just want to be sure that I will not broke it too. ;-)
    I've found this:
    The SD/SDHC/SDXC memory cards have a "Protected Area" on the card for the SD standard's security function. The SD Formatter does not format the "Protected Area".
    and also (but can't find it again to quote) that you should leave first 8192 sectors (blocks? I'm really bad with hardware) free of modification because the performance would be worse then (but no information about braking it!).

  • [Solved][KF5 Plasma] I broke my kwallet service

    Hello,
    I think I broke my kwallet service between updates and an attemp to reset it.
    Few week ago, after an update, kwallet started to ask password any time I wanted to connect to a WIFI network.
    As I didn't remember the kwallet password, I clicked "cancel" and entered the WIFI password manually.
    Today I looked for method to reset kwallet and I've done this :
    rm ~/.config/kwalletrc
    mv ~/.local/share/kwalletd ~/.local/share/kwalletd.bak
    Now i briefly see the kwallet password window, without any chance to do anything with that window.
    And I can't connect WIFI network as it doesn't ask for WIFI password anymore.
    kwalletmanager doesn't work :
    [thomas@thomas-xps-14:~]$ kwalletmanager
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
    kwalletmanager(7331)/kdeui (Wallet): The kwalletd service has been disabled
    kwalletmanager(7331)/kdeui (Wallet): The kwalletd service has been disabled
    Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
    kwalletmanager(7331)/kdeui (Wallet): The kwalletd service has been disabled
    kwalletmanager(7331)/kdeui (Wallet): The kwalletd service has been disabled
    [thomas@thomas-xps-14:~]$ kwalletmanager(7331)/kdeui (Wallet): The kwalletd service has been disabled
    kwalletmanager(7331)/kdeui (Wallet): The kwalletd service has been disabled
    kwalletmanager(7331)/kdeui (Wallet): The kwalletd service has been disabled
    kwalletmanager(7331)/kdeui (Wallet): The kwalletd service has been disabled
    kwalletmanager(7331)/kdeui (Wallet): The kwalletd service has been disabled
    kwalletmanager(7331)/kdeui (Wallet): The kwalletd service has been disabled
    kwalletmanager(7331)/kdeui (Wallet): The kwalletd service has been disabled
    kwalletmanager(7331)/kdeui (Wallet): The kwalletd service has been disabled
    kwalletmanager(7331)/kdeui (Wallet): The kwalletd service has been disabled
    Installed packakages
    [thomas@thomas-xps-14:~]$ pacman -Qs kwallet
    local/kdeutils-kwalletmanager 15.04.1-1 (kde-applications kdeutils)
    Wallet Management Tool
    local/ksshaskpass 5.3.0-3 (plasma)
    ssh-add helper that uses kwallet and kpassworddialog
    local/kwallet 5.10.0-1 (kf5)
    Secure and unified container for user passwords
    Is anyone could help me to get kwallet working again, or make the WIFI password prompt appear again ?
    Last edited by kanar (2015-05-15 09:03:07)

    Working again.
    mv .kde4/share/config/kwalletrc .kde4/share/config/kwalletrc.bak
    mv .kde4/share/config/kwalletmanagerrc .kde4/share/config/kwalletmanagerrc.bak
    Then reboot and it was ok.

  • [SOLVED] I broke X by pressing a function key

    My laptop is a Lenovo y50 4K.  I have Nvidia hybrid optimus graphics with the proprietary Nvidia driver and xrandr modesetting in my .xinitrc.  I have been using my current configuration successfully for a few months.  The issue started when I pressed FN + F3.  This is the function key that toggles my video output source / screen mirroring to the HDMI plug.  I meant to press FN + F2, which is the one that toggles my screen backlight, but my finger missed the key.  I didn't have anything plugged into the HDMI port at the time and X immediately crashed.  I tried to restart X, but it segfaulted.  I tried pressing the function key again, but under TTY all it does is type "p" in console.  I tried restarting the computer, but that changed nothing.  X still crashes.  I tried loading X with a HDMI screen plugged in, no change.  Now I started to think that it was maybe a bios level toggle, so I looked for an option to disable the HDMI plug in my bios settings.  There was none.  I tried rebooting into Windows plugging a device into the HDMI port and cycling through the HDMI screen mirroring options, disabling the HDMI port there and rebooting.  I tried this because I had a wifi issue in the past that turned out to be a bios level toggle from my wifi function key that could only be set from Windows.  At this point, The HDMI output would no longer mirror the screen at bios and Grub, but as soon as the Linux kernel loaded, the screen would mirror over HDMI again.  I don't know if it's relevant or not, but I have used my HDMI port for screen mirroring in the past without problems, but I never used the function key to toggle it before.
    This error shows up under dmesg when I try to start X.
    [ 1965.483823] vgaarb: this pci device is not a vga device
    [ 1965.484045] nvidia 0000:01:00.0: irq 36 for MSI/MSI-X
    [ 1965.485905] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140926/nsarguments-95)
    [ 1965.485935] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140926/nsarguments-95)
    [ 1965.485948] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140926/nsarguments-95)
    [ 1965.485968] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140926/nsarguments-95)
    [ 1965.485980] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140926/nsarguments-95)
    [ 1965.485992] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140926/nsarguments-95)
    [ 1965.486018] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140926/nsarguments-95)
    [ 1965.486030] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140926/nsarguments-95)
    [ 1965.488207] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140926/nsarguments-95)
    This is my Xorg log.
    [ 5246.182]
    X.Org X Server 1.17.1
    Release Date: 2015-02-10
    [ 5246.189] X Protocol Version 11, Revision 0
    [ 5246.191] Build Operating System: Linux 3.17.6-1-ARCH x86_64
    [ 5246.194] Current Operating System: Linux Rocco_Lenovo 3.18.6-1-ARCH #1 SMP PREEMPT Sat Feb 7 08:44:05 CET 2015 x86_64
    [ 5246.194] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=f1165f63-72c5-4bd0-a061-6379dc86c97c rw rcutree.rcu_idle_gp_delay=5
    [ 5246.199] Build Date: 11 February 2015 08:27:38AM
    [ 5246.201]
    [ 5246.203] Current version of pixman: 0.32.6
    [ 5246.209] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 5246.209] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 5246.219] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Feb 16 16:06:34 2015
    [ 5246.222] (==) Using config file: "/etc/X11/xorg.conf"
    [ 5246.224] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 5246.225] (==) ServerLayout "layout"
    [ 5246.225] (**) |-->Screen "nvidia" (0)
    [ 5246.225] (**) | |-->Monitor "<default monitor>"
    [ 5246.225] (**) | |-->Device "nvidia"
    [ 5246.225] (==) No monitor specified for screen "nvidia".
    Using a default monitor configuration.
    [ 5246.225] (**) |-->Inactive Device "intel"
    [ 5246.225] (==) Automatically adding devices
    [ 5246.225] (==) Automatically enabling devices
    [ 5246.225] (==) Automatically adding GPU devices
    [ 5246.225] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/OTF/".
    [ 5246.225] Entry deleted from font path.
    [ 5246.225] (Run 'mkfontdir' on "/usr/share/fonts/OTF/").
    [ 5246.225] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 5246.225] Entry deleted from font path.
    [ 5246.225] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 5246.225] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 5246.225] Entry deleted from font path.
    [ 5246.225] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 5246.225] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 5246.225] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 5246.225] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 5246.225] (II) Loader magic: 0x814d40
    [ 5246.225] (II) Module ABI versions:
    [ 5246.225] X.Org ANSI C Emulation: 0.4
    [ 5246.225] X.Org Video Driver: 19.0
    [ 5246.225] X.Org XInput driver : 21.0
    [ 5246.225] X.Org Server Extension : 9.0
    [ 5246.226] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c1
    [ 5246.226] (II) xfree86: Adding drm device (/dev/dri/card1)
    [ 5246.227] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 8 paused 0
    [ 5246.227] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 5246.227] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 9 paused 0
    [ 5246.228] (--) PCI:*(0:0:2:0) 8086:0416:17aa:3978 rev 6, Mem @ 0xd1000000/4194304, 0xc0000000/268435456, I/O @ 0x00005000/64
    [ 5246.228] (--) PCI: (0:1:0:0) 10de:1392:17aa:3978 rev 162, Mem @ 0xd0000000/16777216, 0xa0000000/268435456, 0xb0000000/33554432, I/O @ 0x00004000/128, BIOS @ 0x????????/524288
    [ 5246.228] (II) Open ACPI successful (/var/run/acpid.socket)
    [ 5246.228] (II) LoadModule: "glx"
    [ 5246.228] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 5246.235] (II) Module glx: vendor="NVIDIA Corporation"
    [ 5246.235] compiled for 4.0.2, module version = 1.0.0
    [ 5246.235] Module class: X.Org Server Extension
    [ 5246.235] (II) NVIDIA GLX Module 346.35 Sat Jan 10 20:53:39 PST 2015
    [ 5246.235] (II) LoadModule: "nvidia"
    [ 5246.235] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 5246.235] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 5246.235] compiled for 4.0.2, module version = 1.0.0
    [ 5246.235] Module class: X.Org Video Driver
    [ 5246.235] (II) LoadModule: "modesetting"
    [ 5246.235] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
    [ 5246.235] (II) Module modesetting: vendor="X.Org Foundation"
    [ 5246.235] compiled for 1.17.1, module version = 1.17.1
    [ 5246.235] Module class: X.Org Video Driver
    [ 5246.235] ABI class: X.Org Video Driver, version 19.0
    [ 5246.235] (II) NVIDIA dlloader X Driver 346.35 Sat Jan 10 20:32:18 PST 2015
    [ 5246.235] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 5246.235] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
    [ 5246.235] (++) using VT number 1
    [ 5246.235] (--) controlling tty is VT number 1, auto-enabling KeepTty
    [ 5246.235] (II) Loading sub module "fb"
    [ 5246.235] (II) LoadModule: "fb"
    [ 5246.235] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 5246.235] (II) Module fb: vendor="X.Org Foundation"
    [ 5246.235] compiled for 1.17.1, module version = 1.0.0
    [ 5246.235] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 5246.235] (II) Loading sub module "wfb"
    [ 5246.235] (II) LoadModule: "wfb"
    [ 5246.235] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 5246.235] (II) Module wfb: vendor="X.Org Foundation"
    [ 5246.235] compiled for 1.17.1, module version = 1.0.0
    [ 5246.235] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 5246.235] (II) Loading sub module "ramdac"
    [ 5246.235] (II) LoadModule: "ramdac"
    [ 5246.235] (II) Module "ramdac" already built-in
    [ 5246.236] (II) modeset(1): using drv /dev/dri/card0
    [ 5246.236] (II) modeset(G0): using drv /dev/dri/card0
    [ 5246.236] (EE) Screen 1 deleted because of no matching config section.
    [ 5246.236] (II) UnloadModule: "modesetting"
    [ 5246.236] (II) NVIDIA(0): Creating default Display subsection in Screen section
    "nvidia" for depth/fbbpp 24/32
    [ 5246.236] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 5246.236] (==) NVIDIA(0): RGB weight 888
    [ 5246.236] (==) NVIDIA(0): Default visual is TrueColor
    [ 5246.236] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 5246.236] (**) NVIDIA(0): Option "ConstrainCursor" "off"
    [ 5246.236] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration" "on"
    [ 5246.236] (**) NVIDIA(0): Option "IgnoreDisplayDevices" "CRT"
    [ 5246.236] (**) NVIDIA(0): Enabling 2D acceleration
    [ 5246.332] (II) NVIDIA(GPU-0): Found DRM driver nvidia-drm (20130102)
    [ 5246.333] (II) NVIDIA(0): NVIDIA GPU GeForce GTX 860M (GM107-A) at PCI:1:0:0 (GPU-0)
    [ 5246.333] (--) NVIDIA(0): Memory: 2097152 kBytes
    [ 5246.333] (--) NVIDIA(0): VideoBIOS: 82.07.34.00.08
    [ 5246.333] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 5246.333] (--) NVIDIA(0): Valid display device(s) on GeForce GTX 860M at PCI:1:0:0
    [ 5246.333] (--) NVIDIA(0): none
    [ 5246.333] (II) NVIDIA(0): Validated MetaModes:
    [ 5246.333] (II) NVIDIA(0): "NULL"
    [ 5246.333] (II) NVIDIA(0): Virtual screen size determined to be 640 x 480
    [ 5246.333] (WW) NVIDIA(0): Unable to get display device for DPI computation.
    [ 5246.333] (==) NVIDIA(0): DPI set to (75, 75); computed from built-in default
    [ 5246.333] (==) modeset(G0): Depth 24, (==) framebuffer bpp 32
    [ 5246.333] (==) modeset(G0): RGB weight 888
    [ 5246.333] (==) modeset(G0): Default visual is TrueColor
    [ 5246.333] (II) Loading sub module "glamoregl"
    [ 5246.333] (II) LoadModule: "glamoregl"
    [ 5246.333] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 5246.336] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 5246.336] compiled for 1.17.1, module version = 1.0.0
    [ 5246.336] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 5246.336] (II) glamor: OpenGL accelerated X.org driver based.
    [ 5246.351] (EE)
    [ 5246.351] (EE) Backtrace:
    [ 5246.351] (EE) 0: /usr/lib/xorg-server/Xorg (xorg_backtrace+0x56) [0x590416]
    [ 5246.351] (EE) 1: /usr/lib/xorg-server/Xorg (0x400000+0x194579) [0x594579]
    [ 5246.351] (EE) 2: /usr/lib/libc.so.6 (0x7fe5a1f0d000+0x33540) [0x7fe5a1f40540]
    [ 5246.351] (EE) 3: /usr/lib/libX11.so.6 (_XSend+0x2b) [0x7fe597eb80bb]
    [ 5246.351] (EE) 4: /usr/lib/libX11.so.6 (_XFlush+0x15) [0x7fe597eb8575]
    [ 5246.351] (EE) 5: /usr/lib/libX11.so.6 (_XGetRequest+0x65) [0x7fe597ebb055]
    [ 5246.351] (EE) 6: /usr/lib/libX11.so.6 (XQueryExtension+0x4d) [0x7fe597eae5ed]
    [ 5246.352] (EE) 7: /usr/lib/libX11.so.6 (XInitExtension+0x32) [0x7fe597ea2392]
    [ 5246.352] (EE) 8: /usr/lib/libXext.so.6 (XextAddDisplay+0x4f) [0x7fe597c7138f]
    [ 5246.352] (EE) 9: /usr/lib/libnvidia-glsi.so.346.35 (0x7fe5981b8000+0x63017) [0x7fe59821b017]
    [ 5246.352] (EE) 10: /usr/lib/libnvidia-glsi.so.346.35 (0x7fe5981b8000+0x4484) [0x7fe5981bc484]
    [ 5246.352] (EE) 11: /usr/lib/libEGL.so.1 (0x7fe598442000+0x2381e) [0x7fe59846581e]
    [ 5246.352] (EE) 12: /usr/lib/libEGL.so.1 (0x7fe598442000+0x2417a) [0x7fe59846617a]
    [ 5246.352] (EE) 13: /usr/lib/libEGL.so.1 (0x7fe598442000+0x2c946) [0x7fe59846e946]
    [ 5246.352] (EE) 14: /usr/lib/xorg/modules/libglamoregl.so (glamor_egl_init+0x99) [0x7fe59a768539]
    [ 5246.352] (EE) 15: /usr/lib/xorg/modules/drivers/modesetting_drv.so (0x7fe59adf7000+0x6a86) [0x7fe59adfda86]
    [ 5246.352] (EE) 16: /usr/lib/xorg-server/Xorg (InitOutput+0xbcc) [0x47b42c]
    [ 5246.352] (EE) 17: /usr/lib/xorg-server/Xorg (0x400000+0x3c78a) [0x43c78a]
    [ 5246.352] (EE) 18: /usr/lib/libc.so.6 (__libc_start_main+0xf0) [0x7fe5a1f2d800]
    [ 5246.352] (EE) 19: /usr/lib/xorg-server/Xorg (_start+0x29) [0x426e29]
    [ 5246.352] (EE)
    [ 5246.352] (EE) Segmentation fault at address 0x0
    [ 5246.352] (EE)
    Fatal server error:
    [ 5246.352] (EE) Caught signal 11 (Segmentation fault). Server aborting
    [ 5246.352] (EE)
    [ 5246.352] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 5246.352] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 5246.352] (EE)
    [ 5246.367] (EE) Server terminated with error (1). Closing log file.
    The main thing that I noticed from my xorg log is
    [  5246.333] (--) NVIDIA(0): Valid display device(s) on GeForce GTX 860M at PCI:1:0:0
    [  5246.333] (--) NVIDIA(0):     none
    [  5246.333] (II) NVIDIA(0): Validated MetaModes:
    [  5246.333] (II) NVIDIA(0):     "NULL"
    Last edited by testing567 (2015-02-17 01:57:57)

    Trilby wrote:If you have longish uptimes, I suspect this has nothing to do with the output switch.  The switch may have caused a crash, but the failure to restart X could be due to this issue
    It turned out to be exactly this.  Thank you.  It would seem that the function key causing the crash was completely unrelated to my not being able to restart X.  I found the bug report here.
    I followed the advice in the comments and got it running by renaming /usr/lib/xorg/modules/libglamoregl.so so glamor can't load.  I'll mark the thread as solved.  Hopefully this bug gets addressed quickly because that fix feels like a dirty hack.
    Last edited by testing567 (2015-02-17 01:56:58)

  • Everything is broke! gstreamer, pidgin [SOLVED]

    Whats going on with arch? its not a bleeding edge anymore, its "fix you system after each upgrade" :\
    First I had a lot of errors from ldconfig that /usr/lib/libgstX is bad because ELF header does not contain a good magic number (something like this), the same goes for libfuse and libulockmgr. So i simply removed gstreamer and fuse (and half of gnome on the way) and ldconfig still said the same, so I deleted the libXX that ldconfig complained about. reinstaller fuse, gstreamer, gnome and they complained that "XX already exists in filesystem" so I did pacman -Sf on those packages. Now I cant start pidgin because:
    pidgin
    pidgin: error while loading shared libraries: libgstreamer-0.10.so.0: cannot open shared object file: No such file or directory
    What the hell?! cant gstreamer create all files it needs?
    Also gnome-mixer applet cannot be loaded.
    No more gnome-cups-manager
    Duplicate packages like polkit and policykit, shouldnt new package that replaces old one, remove the old one?
    Sorry for being that annoying, just some time ago, arch was more usable, you simply update and continue using the system. Today you update, spent half day to fix the problem that update caused.
    Any help?
    pacman.log
    [2010-02-10 20:19] synchronizing package lists
    [2010-02-10 20:20] starting full system upgrade
    [2010-02-10 20:21] starting full system upgrade
    [2010-02-12 15:08] upgraded xf86-input-evdev (2.3.2-1 -> 2.2.5-1)
    [2010-02-12 15:08] upgraded xf86-video-vesa (2.2.1-1 -> 2.2.0-1)
    [2010-02-12 15:08] upgraded xorg-server (1.7.4.901-1 -> 1.6.3.901-1)
    [2010-02-12 15:09] synchronizing package lists
    [2010-02-12 15:09] starting full system upgrade
    [2010-02-12 15:10] starting full system upgrade
    [2010-02-12 15:11] synchronizing package lists
    [2010-02-12 15:11] starting full system upgrade
    [2010-02-12 15:11] starting full system upgrade
    [2010-02-12 15:11] upgraded brasero (2.28.3-1 -> 2.28.3-2)
    [2010-02-12 15:11] upgraded curl (7.19.7-1 -> 7.20.0-1)
    [2010-02-12 15:11] upgraded enca (1.12-1 -> 1.13-1)
    [2010-02-12 15:11] upgraded flashplugin (10.0.42.34-1 -> 10.0.45.2-1)
    [2010-02-12 15:11] upgraded gnome-python-desktop (2.28.0-2 -> 2.28.0-3)
    [2010-02-12 15:11] upgraded kernel26-firmware (2.6.32.7-1 -> 2.6.32.8-1)
    [2010-02-12 15:12] >>> Updating module dependencies. Please wait ...
    [2010-02-12 15:12] >>> MKINITCPIO SETUP
    [2010-02-12 15:12] >>> ----------------
    [2010-02-12 15:12] >>> If you use LVM2, Encrypted root or software RAID,
    [2010-02-12 15:12] >>> Ensure you enable support in /etc/mkinitcpio.conf .
    [2010-02-12 15:12] >>> More information about mkinitcpio setup can be found here:
    [2010-02-12 15:12] >>> http://wiki.archlinux.org/index.php/Mkinitcpio
    [2010-02-12 15:12]
    [2010-02-12 15:12] >>> Generating initial ramdisk, using mkinitcpio.  Please wait...
    [2010-02-12 15:12] ==> Building image "default"
    [2010-02-12 15:12] ==> Running command: /sbin/mkinitcpio -k 2.6.32-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26.img
    [2010-02-12 15:12] :: Begin build
    [2010-02-12 15:12] :: Parsing hook [base]
    [2010-02-12 15:12] :: Parsing hook [udev]
    [2010-02-12 15:12] :: Parsing hook [autodetect]
    [2010-02-12 15:12] :: Parsing hook [pata]
    [2010-02-12 15:12] :: Parsing hook [scsi]
    [2010-02-12 15:12] :: Parsing hook [sata]
    [2010-02-12 15:12] :: Parsing hook [filesystems]
    [2010-02-12 15:12] :: Generating module dependencies
    [2010-02-12 15:12] :: Generating image '/boot/kernel26.img'...SUCCESS
    [2010-02-12 15:12] ==> SUCCESS
    [2010-02-12 15:12] ==> Building image "fallback"
    [2010-02-12 15:12] ==> Running command: /sbin/mkinitcpio -k 2.6.32-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26-fallback.img -S autodetect
    [2010-02-12 15:12] :: Begin build
    [2010-02-12 15:12] :: Parsing hook [base]
    [2010-02-12 15:12] :: Parsing hook [udev]
    [2010-02-12 15:12] :: Parsing hook [pata]
    [2010-02-12 15:12] :: Parsing hook [scsi]
    [2010-02-12 15:12] :: Parsing hook [sata]
    [2010-02-12 15:12] :: Parsing hook [filesystems]
    [2010-02-12 15:12] :: Generating module dependencies
    [2010-02-12 15:13] :: Generating image '/boot/kernel26-fallback.img'...SUCCESS
    [2010-02-12 15:13] ==> SUCCESS
    [2010-02-12 15:13] upgraded kernel26 (2.6.32.7-1 -> 2.6.32.8-1)
    [2010-02-12 15:13] upgraded libdrm (2.4.17-3 -> 2.4.17-4)
    [2010-02-12 15:13] upgraded libebml (0.7.8-1 -> 0.7.8-2)
    [2010-02-12 15:13] upgraded libv4l (0.6.3-2 -> 0.6.4-1)
    [2010-02-12 15:13] upgraded postgresql-libs (8.4.2-1 -> 8.4.2-4)
    [2010-02-12 15:13] upgraded ppp (2.4.4-9 -> 2.4.5-1)
    [2010-02-12 15:13] upgraded sip (4.9.3-1 -> 4.10.0-1)
    [2010-02-12 15:13] upgraded qt (4.5.3-4 -> 4.6.1-1)
    [2010-02-12 15:13] upgraded qscintilla (2.4.0-2 -> 2.4.2-1)
    [2010-02-12 15:13] upgraded pyqt (4.6.2-2 -> 4.7.0-2)
    [2010-02-12 15:13] upgraded rxvt-unicode (9.06-3 -> 9.07-1)
    [2010-02-12 15:13] upgraded udev (151-2 -> 151-3)
    [2010-02-12 15:13] upgraded wpa_supplicant (0.6.9-2 -> 0.6.10-1)
    [2010-02-12 15:13] upgraded xf86-input-evdev (2.2.5-1 -> 2.3.2-1)
    [2010-02-12 15:13] upgraded xf86-video-vesa (2.2.0-1 -> 2.2.1-1)
    [2010-02-12 15:13] upgraded xorg-server (1.6.3.901-1 -> 1.7.4.901-1)
    [2010-02-12 17:26] synchronizing package lists
    [2010-02-12 17:26] starting full system upgrade
    [2010-02-14 20:57] synchronizing package lists
    [2010-02-14 20:58] starting full system upgrade
    [2010-02-14 21:04] starting full system upgrade
    [2010-02-14 21:18] starting full system upgrade
    [2010-02-14 21:19] starting full system upgrade
    [2010-02-14 21:20] synchronizing package lists
    [2010-02-14 21:20] starting full system upgrade
    [2010-02-14 21:20] starting full system upgrade
    [2010-02-15 13:48] installed lshw (B.02.14-1)
    [2010-02-15 13:48] synchronizing package lists
    [2010-02-15 13:48] starting full system upgrade
    [2010-02-15 13:48] starting full system upgrade
    [2010-02-15 13:49] upgraded libidn (1.15-1 -> 1.16-1)
    [2010-02-15 13:49] installed beanshell (2.0b4-1)
    [2010-02-15 13:49] installed saxon (9.2.0.2-1)
    [2010-02-15 13:49] installed vigra (1.6.0-2)
    [2010-02-15 13:49] installed libgraphite (2.3.1-1)
    [2010-02-15 13:49] installed hyphen (2.4-1)
    [2010-02-15 13:49] installed lpsolve (5.5.0.15-1)
    [2010-02-15 13:49] installed libmspack (0.0.20060920alpha-1)
    [2010-02-15 13:49] installed lucene (3.0.0-1)
    [2010-02-15 13:50]  * check /etc/profile.d/openoffice.sh, then relogin or "source" the file
    [2010-02-15 13:50]  * see http://wiki.archlinux.org/index.php/Openoffice
    [2010-02-15 13:50]    how to use extensions, e.g. for spell checking
    [2010-02-15 13:50]    see /usr/lib/openoffice/share/extension/install what
    [2010-02-15 13:50]    is shipped with this package
    [2010-02-15 13:50]  * make sure you have installed a ttf font (ttf-dejavu recommended)
    [2010-02-15 13:50] upgraded openoffice-base (3.1.1-3 -> 3.2.0-1)
    [2010-02-15 13:50] Updating vi help tags...done.
    [2010-02-15 13:50] upgraded vim (7.2.266-1 -> 7.2.359-1)
    [2010-02-15 13:50] upgraded vlc (1.0.5-2 -> 1.0.5-3)
    [2010-02-15 13:50] upgraded vlc-plugin (1.0.5-2 -> 1.0.5-3)
    [2010-02-15 13:50] removed policykit-gnome (0.9.2-5)
    [2010-02-15 13:50] removed policykit (0.9-9)
    [2010-02-16 11:51] synchronizing package lists
    [2010-02-16 11:52] starting full system upgrade
    [2010-02-16 11:53] synchronizing package lists
    [2010-02-16 11:53] starting full system upgrade
    [2010-02-16 11:53] starting full system upgrade
    [2010-02-16 11:58] removed klibc-udev (141-3)
    [2010-02-16 11:58] removed klibc-module-init-tools (3.8-1)
    [2010-02-16 11:58] removed klibc-kbd (1.15.20080312-10)
    [2010-02-16 11:58] removed klibc-extras (2.5-4)
    [2010-02-16 11:58] removed klibc (1.5.15-3)
    [2010-02-16 11:58] upgraded device-mapper (2.02.60-2 -> 2.02.60-3)
    [2010-02-16 11:58] upgraded cryptsetup (1.1.0-1 -> 1.1.0-2)
    [2010-02-16 11:58] warning: /etc/ld.so.conf installed as /etc/ld.so.conf.pacnew
    [2010-02-16 11:58] upgraded filesystem (2010.01-1 -> 2010.02-3)
    [2010-02-16 11:58] upgraded geany (0.18-1 -> 0.18.1-1)
    [2010-02-16 11:58] upgraded ghostscript (8.70-4 -> 8.71-1)
    [2010-02-16 11:58] installed mkinitcpio-busybox (1.15.3-5)
    [2010-02-16 11:58] upgraded mkinitcpio (0.5.30-1 -> 0.6.2-1)
    [2010-02-16 11:58] upgraded libisofs (0.6.26-1 -> 0.6.28-1)
    [2010-02-16 11:58] upgraded lvm2 (2.02.60-2 -> 2.02.60-3)
    [2010-02-16 11:58] upgraded mdadm (3.1.1-1 -> 3.1.1-2)
    [2010-02-16 11:58] upgraded nano (2.2.2-1 -> 2.2.3-1)
    [2010-02-16 11:58] In order to use the new nvidia module, exit Xserver and unload it manually.
    [2010-02-16 11:58] upgraded nvidia (190.53-3 -> 190.53-4)
    [2010-02-16 11:58] >>> The kernel-mode plugin has a new place.
    [2010-02-16 11:58] >>> It's now located under /usr/lib/rp-pppoe/rp-pppoe.so
    [2010-02-16 11:58] >>> Change LINUX_PLUGIN to the new path in your /etc/ppp/pppoe.conf
    [2010-02-16 11:58] upgraded rp-pppoe (3.10-2 -> 3.10-4)
    [2010-02-16 11:58] upgraded tzdata (2010a-1 -> 2010b-1)
    [2010-02-16 11:58] upgraded vi (050325-1 -> 050325-2)
    [2010-02-16 11:58] upgraded wireshark (1.2.6-1 -> 1.2.6-2)
    [2010-02-16 12:00] synchronizing package lists
    [2010-02-16 12:00] starting full system upgrade
    [2010-02-16 12:00] synchronizing package lists
    [2010-02-16 12:00] starting full system upgrade
    [2010-02-16 12:00] synchronizing package lists
    [2010-02-16 12:00] starting full system upgrade
    [2010-02-16 12:06] synchronizing package lists
    [2010-02-16 12:06] starting full system upgrade
    [2010-02-16 12:08] removed purple-plugin-pack (2.6.2-1)
    [2010-02-16 12:08] removed pidgin (2.6.5-1)
    [2010-02-16 12:08] removed gtkspell (2.0.16-1)
    [2010-02-16 12:08] removed libpurple (2.6.5-1)
    [2010-02-16 12:08] removed farsight2 (0.0.17-1)
    [2010-02-16 12:08] removed silc-toolkit (1.1.10-1)
    [2010-02-16 12:08] removed gstreamer0.10-python (0.10.17-1)
    [2010-02-16 12:08] removed libnice (0.0.10-1)
    [2010-02-16 12:08] removed libidn (1.16-1)
    [2010-02-16 12:14] synchronizing package lists
    [2010-02-16 12:14] starting full system upgrade
    [2010-02-16 12:14] installed libnice (0.0.10-1)
    [2010-02-16 12:14] installed gstreamer0.10-python (0.10.17-1)
    [2010-02-16 12:14] installed farsight2 (0.0.17-1)
    [2010-02-16 12:14] installed libidn (1.16-1)
    [2010-02-16 12:14] installed silc-toolkit (1.1.10-1)
    [2010-02-16 12:14] installed libpurple (2.6.5-1)
    [2010-02-16 12:14] installed gtkspell (2.0.16-1)
    [2010-02-16 12:14] installed pidgin (2.6.5-1)
    [2010-02-16 12:15] removed gstreamer0.10-base (0.10.26-1)
    [2010-02-16 12:18] synchronizing package lists
    [2010-02-16 12:18] starting full system upgrade
    [2010-02-16 12:18] synchronizing package lists
    [2010-02-16 12:18] starting full system upgrade
    [2010-02-16 12:19] synchronizing package lists
    [2010-02-16 12:20] starting full system upgrade
    [2010-02-16 12:20] synchronizing package lists
    [2010-02-16 12:20] starting full system upgrade
    [2010-02-16 12:20] synchronizing package lists
    [2010-02-16 12:21] starting full system upgrade
    [2010-02-16 12:21] synchronizing package lists
    [2010-02-16 12:22] starting full system upgrade
    [2010-02-16 12:26] synchronizing package lists
    [2010-02-16 12:26] starting full system upgrade
    [2010-02-16 12:26] starting full system upgrade
    [2010-02-16 12:27] removed pidgin (2.6.5-1)
    [2010-02-16 12:27] removed gtkspell (2.0.16-1)
    [2010-02-16 12:27] removed libpurple (2.6.5-1)
    [2010-02-16 12:27] removed farsight2 (0.0.17-1)
    [2010-02-16 12:27] removed silc-toolkit (1.1.10-1)
    [2010-02-16 12:27] removed gstreamer0.10-python (0.10.17-1)
    [2010-02-16 12:27] removed libnice (0.0.10-1)
    [2010-02-16 12:27] removed libidn (1.16-1)
    [2010-02-16 12:28] removed gnome-control-center (2.28.1-1)
    [2010-02-16 12:28] removed gnome-settings-daemon (2.28.1-1)
    [2010-02-16 12:28] removed sound-theme-freedesktop (0.3-2)
    [2010-02-16 12:28] removed gstreamer0.10-bad (0.10.17-3)
    [2010-02-16 12:28] removed notification-daemon (0.4.0-4)
    [2010-02-16 12:28] removed libsexy (0.1.11-2)
    [2010-02-16 12:29] removed gnome-media (2.28.5-1)
    [2010-02-16 12:29] removed cheese (2.28.1-1)
    [2010-02-16 12:29] removed gstreamer0.10-good-plugins (0.10.18-1)
    [2010-02-16 12:35] installed gstreamer0.10-base (0.10.26-1)
    [2010-02-16 12:36] removed gstreamer0.10-base (0.10.26-1)
    [2010-02-16 12:36] removed liboil (0.3.16-1)
    [2010-02-16 12:41] installed liboil (0.3.16-1)
    [2010-02-16 12:41] installed gstreamer0.10-base (0.10.26-1)
    [2010-02-16 12:41] removed gstreamer0.10-base (0.10.26-1)
    [2010-02-16 12:41] removed liboil (0.3.16-1)
    [2010-02-16 12:46] removed gnome-games-extra-data (2.28.0-1)
    [2010-02-16 12:46] removed gnome-games (2.28.2-1)
    [2010-02-16 12:46] removed gnochm (0.9.11-3)
    [2010-02-16 12:46] removed sensors-applet (2.2.5-1)
    [2010-02-16 12:46] removed libgail-gnome (1.20.1-1)
    [2010-02-16 12:46] removed gnome-utils (2.28.3-1)
    [2010-02-16 12:46] removed gnome-python-extras (2.25.3-5)
    [2010-02-16 12:46] removed gnome-python-desktop (2.28.0-3)
    [2010-02-16 12:46] removed gnome-applets (2.28.0-2)
    [2010-02-16 12:47] removed gdm (2.28.2-1)
    [2010-02-16 12:47] removed alacarte (0.12.4-2)
    [2010-02-16 12:47] removed gnomebaker (0.6.4-1)
    [2010-02-16 12:47] removed gnome-python (2.28.0-1)
    [2010-02-16 12:47] removed gnome-panel (2.28.0-2)
    [2010-02-16 12:47] removed gnome-cups-manager (0.33-7)
    [2010-02-16 12:47] removed ghex (2.24.0-1)
    [2010-02-16 12:47] removed mysql-workbench (5.1.18-1)
    [2010-02-16 12:47] removed mysql-gui-tools (5.0r14-4)
    [2010-02-16 12:47] removed gnome-system-tools (2.28.2-1)
    [2010-02-16 12:47] removed libgnomeui (2.24.2-1)
    [2010-02-16 12:47] removed libbonoboui (2.24.2-1)
    [2010-02-16 12:47] removed glipper-old (0.95.1-3)
    [2010-02-16 12:47] removed nautilus (2.28.4-1)
    [2010-02-16 12:47] removed libgnome (2.28.0-2)
    [2010-02-16 12:47] removed sshfs (2.2-3)
    [2010-02-16 12:47] removed gvfs (1.4.3-1)
    [2010-02-16 12:47] removed fuse (2.8.3-1)
    [2010-02-16 12:47] removed clutter-gtk (0.10.2-1)
    [2010-02-16 12:47] removed ggz-client-libs (0.0.14.1-1)
    [2010-02-16 12:47] removed guile (1.8.7-1)
    [2010-02-16 12:47] removed libgtkhtml (2.11.1-2)
    [2010-02-16 12:47] removed python-pychm (0.8.4-3)
    [2010-02-16 12:47] removed at-spi (1.28.1-1)
    [2010-02-16 12:47] removed cpufrequtils (007-1)
    [2010-02-16 12:47] removed gucharmap (2.28.2-1)
    [2010-02-16 12:47] removed libgnomekbd (2.28.2-1)
    [2010-02-16 12:47] removed libxklavier (4.0-1)
    [2010-02-16 12:47] removed gnome-menus (2.28.0.1-1)
    [2010-02-16 12:47] removed dvd+rw-tools (7.1-2)
    [2010-02-16 12:47] removed pyorbit (2.24.0-2)
    [2010-02-16 12:47] removed gksu (2.0.2-2)
    [2010-02-16 12:47] removed libgnomeprintui (2.18.4-1)
    [2010-02-16 12:47] removed libzip (0.9-1)
    [2010-02-16 12:47] removed gtkhtml (3.28.2-1)
    [2010-02-16 12:47] removed liboobs (2.22.2-1)
    [2010-02-16 12:47] removed libgnomecanvas (2.26.0-1)
    [2010-02-16 12:47] removed libtracker (0.6.95-1)
    [2010-02-16 12:47] removed gnome-vfs (2.24.2-2)
    [2010-02-16 12:49] synchronizing package lists
    [2010-02-16 12:50] installed gnome-menus (2.28.0.1-1)
    [2010-02-16 12:50] installed libgnomecanvas (2.26.0-1)
    [2010-02-16 12:50] upgraded gnome-mime-data (2.18.0-4 -> 2.18.0-4)
    [2010-02-16 12:50] installed gnome-vfs (2.24.2-2)
    [2010-02-16 12:50] ==> You must load the fuse kernel module to use FUSE.
    [2010-02-16 12:50]  -> Run 'modprobe fuse' to load the module now.
    [2010-02-16 12:50]  -> Add fuse to $MODULES in /etc/rc.conf to load on every boot.
    [2010-02-16 12:50] ==> You will need a /dev/fuse device node to use FUSE.
    [2010-02-16 12:50]  -> If you use udev, nothing needs to be done
    [2010-02-16 12:50]  -> For a static /dev, run: mknod /dev/fuse -m 0666 c 10 229
    [2010-02-16 12:50] installed fuse (2.8.3-1)
    [2010-02-16 12:50] installed gvfs (1.4.3-1)
    [2010-02-16 12:50] installed libgnome (2.28.0-2)
    [2010-02-16 12:50] installed libbonoboui (2.24.2-1)
    [2010-02-16 12:50] installed libgnomeui (2.24.2-1)
    [2010-02-16 12:50] upgraded gnome-desktop (2.28.2-1 -> 2.28.2-1)
    [2010-02-16 12:50] installed gnome-panel (2.28.0-2)
    [2010-02-16 12:50] installed gucharmap (2.28.2-1)
    [2010-02-16 12:50] installed cpufrequtils (007-1)
    [2010-02-16 12:50] installed libxklavier (4.0-1)
    [2010-02-16 12:50] installed libgnomekbd (2.28.2-1)
    [2010-02-16 12:50] installed gnome-applets (2.28.0-2)
    [2010-02-16 12:50] upgraded gnome-backgrounds (2.28.0-1 -> 2.28.0-1)
    [2010-02-16 12:50] installed liboil (0.3.16-1)
    [2010-02-16 12:50] installed gstreamer0.10-base (0.10.26-1)
    [2010-02-16 12:50] installed gnome-settings-daemon (2.28.1-1)
    [2010-02-16 12:50] installed sound-theme-freedesktop (0.3-2)
    [2010-02-16 12:50] upgraded metacity (2.28.1-1 -> 2.28.1-1)
    [2010-02-16 12:50] installed gnome-control-center (2.28.1-1)
    [2010-02-16 12:50] upgraded gnome-icon-theme (2.28.0-1 -> 2.28.0-1)
    [2010-02-16 12:50] installed gstreamer0.10-good-plugins (0.10.18-1)
    [2010-02-16 12:50] installed gnome-media (2.28.5-1)
    [2010-02-16 12:50] upgraded gnome-screensaver (2.28.3-1 -> 2.28.3-1)
    [2010-02-16 12:50] upgraded gnome-session (2.28.0-1 -> 2.28.0-1)
    [2010-02-16 12:51] upgraded gnome-themes (2.28.1-1 -> 2.28.1-1)
    [2010-02-16 12:51] upgraded yelp (2.28.1-2 -> 2.28.1-2)
    [2010-02-16 12:51] upgraded gnome2-user-docs (2.28.2-1 -> 2.28.2-1)
    [2010-02-16 12:51] installed at-spi (1.28.1-1)
    [2010-02-16 12:51] installed libgail-gnome (1.20.1-1)
    [2010-02-16 12:51] installed libtracker (0.6.95-1)
    [2010-02-16 12:51] installed nautilus (2.28.4-1)
    [2010-02-16 12:51] installed libsexy (0.1.11-2)
    [2010-02-16 12:51] installed notification-daemon (0.4.0-4)
    [2010-02-16 12:51] warning: directory permissions differ on var/log/gdm/
    filesystem: 1770  package: 755
    [2010-02-16 12:51] installed gdm (2.28.2-1)
    [2010-02-16 12:52] upgraded gstreamer0.10-base (0.10.26-1 -> 0.10.26-1)
    [2010-02-16 12:52] installed gstreamer0.10-bad (0.10.17-3)
    [2010-02-16 12:52] installed gstreamer0.10-python (0.10.17-1)
    [2010-02-16 12:52] upgraded gstreamer0.10-good-plugins (0.10.18-1 -> 0.10.18-1)
    [2010-02-16 12:52] upgraded notification-daemon (0.4.0-4 -> 0.4.0-4)
    [2010-02-16 12:52] installed libnice (0.0.10-1)
    [2010-02-16 12:52] installed farsight2 (0.0.17-1)
    [2010-02-16 12:52] installed libidn (1.16-1)
    [2010-02-16 12:52] installed silc-toolkit (1.1.10-1)
    [2010-02-16 12:52] installed libpurple (2.6.5-1)
    [2010-02-16 12:52] installed gtkspell (2.0.16-1)
    [2010-02-16 12:52] installed pidgin (2.6.5-1)
    [2010-02-16 12:54] synchronizing package lists
    [2010-02-16 12:55] starting full system upgrade
    [2010-02-16 12:55] upgraded gstreamer0.10-base (0.10.26-1 -> 0.10.26-1)
    [2010-02-16 12:57] installed glipper-old (0.95.1-3)
    [2010-02-16 13:09] installed liboobs (2.22.2-1)
    [2010-02-16 13:09] installed gnome-system-tools (2.28.2-1)
    [2010-02-16 13:10] installed gnome-utils (2.28.3-1)
    Last edited by skwo (2010-02-16 13:37:41)

    Thanks for reply!!
    Here is the output:
    ┌─[ skwo @ werewolf ] - [ 15:22:32 Tue Feb 16 ] - [ ~ ]
    └─[$]> locate libgstreamer-0.10.so.0
    /usr/lib/libgstreamer-0.10.so.0
    /usr/lib/libgstreamer-0.10.so.0.22.0
    ┌─[ skwo @ werewolf ] - [ 15:22:45 Tue Feb 16 ] - [ ~ ]
    └─[$]> sudo pacman -Qo /usr/lib/libgstreamer-0.10.so.0
    Password:
    error: failed to read file '/usr/lib/libgstreamer-0.10.so.0': No such file or directory
    ┌─[ skwo @ werewolf ] - [ 15:23:06 Tue Feb 16 ] - [ ~ ]
    └─[$]> sudo pacman -Qo /usr/lib/libgstreamer-0.10.so
    error: No package owns /usr/lib/libgstreamer-0.10.so
    ┌─[ skwo @ werewolf ] - [ 15:23:34 Tue Feb 16 ] - [ ~ ]
    └─[$]> sudo pacman -Qo /usr/lib/libgstreamer-0.10.so.0.22.0
    error: failed to read file '/usr/lib/libgstreamer-0.10.so.0.22.0': No such file or directory
    I tried to use up-to-date mirror, didnt help.
    -Edit-
    locate libgstreamer
    /usr/lib/libgstreamer-0.10.a
    /usr/lib/libgstreamer-0.10.so
    /usr/lib/libgstreamer-0.10.so.0
    /usr/lib/libgstreamer-0.10.so.0.22.0
    /usr/share/gtk-doc/html/gstreamer-0.10/libgstreamer.html
    ls -l /usr/lib/ | grep libgstreamer
    -rw-r--r--  1 root root  1193656 Feb 12 22:20 libgstreamer-0.10.a
    lrwxrwxrwx  1 root root       27 Feb 12 22:20 libgstreamer-0.10.so -> libgstreamer-0.10.so.0.23.0
    -Edit 2-
    Using another mirror solved the problem. Thanks!
    Last edited by skwo (2010-02-16 13:37:25)

  • [SOLVED] - kernel 2.6.34-2 upgrade broke my wireless ...

    ... so I downgraded back to 2.6.33.4-1 along with the headers, got rid of linux-firmware and reinstalled kernel26-firmware.
    But it still isn't working.
    iwconfig spurts out all the expected info and the card (Intel Corporation PRO/Wireless 2200BG [Calexico2] Network Connection (rev 05) is seen, but wicd simply refuses to get an ip address. dmesg tells me that the firmware was requested and geography detected.
    I tried restarting the network daemon and it fails
    Hm, could it be udev that broke my network? Off to try...
    EDIT:
    Nope, downgraded to 151-3 but still cannot start the network daemon. dmesg is not telling me anything useful. Where else to check for useful hints?
    Last edited by toad (2010-06-23 06:58:21)

    Thanks ewaller,
    I've got dhclient and a sudo dhclient eth1 does nothing, unfortunately.
    PS:
    Your post made me think...
    Since wicd kept on failing with getting an ip address I told it to get a static one - and hey presto, I'm in again. Even upgraded everything again and am still in, so there!?
    Last edited by toad (2010-06-23 06:59:40)

  • [SOLVED] System upgrade broke pm-resume (kernel problem?)

    It now seems every other time I suspend to RAM, it fails to come back. I just get a blank screen, no backlight, with a completely unresponsive keyboard. At this point, the only thing I do that has any effect is a hard shutdown by holding down the power button. I had no problems before I upgraded on April 10. I didn't post this immediately because I wanted to see if the new xorg-server and associated updates would fix it, but it didn't.
    Here is pm-suspend.log:
    Initial commandline parameters:
    Tue Apr 14 03:46:54 PDT 2009: Running hooks for suspend.
    /usr/lib/pm-utils/sleep.d/00auto-quirk suspend suspend: Adding quirks from HAL: --quirk-dpms-on --quirk-dpms-suspend --quirk-vbe-post --quirk-vbemode-restore --quirk-vbestate-restore --quirk-vga-mode-3
    success.
    /usr/lib/pm-utils/sleep.d/00logging suspend suspend: Linux helium 2.6.29-ARCH #1 SMP PREEMPT Wed Apr 8 12:47:56 UTC 2009 i686 Intel(R) Pentium(R) M processor 2.00GHz GenuineIntel GNU/Linux
    Module Size Used by
    radeon 144928 2
    drm 138240 3 radeon
    arc4 1556 2
    ecb 2452 2
    lib80211_crypt_wep 3476 1
    snd_seq_oss 29888 0
    snd_seq_midi_event 5972 1 snd_seq_oss
    joydev 9600 0
    snd_seq 48176 4 snd_seq_oss,snd_seq_midi_event
    snd_seq_device 6080 2 snd_seq_oss,snd_seq
    pcmcia 33388 0
    snd_pcm_oss 38112 0
    snd_mixer_oss 14388 1 snd_pcm_oss
    irtty_sir 4852 0
    btusb 11720 0
    wacom 19836 0
    sir_dev 11224 1 irtty_sir
    bluetooth 52292 1 btusb
    psmouse 54536 0
    ppdev 7192 0
    lp 8964 0
    usbhid 35136 0
    hid 39744 1 usbhid
    thinkpad_acpi 59736 0
    rfkill 9392 2 thinkpad_acpi
    led_class 3384 1 thinkpad_acpi
    nvram 6336 1 thinkpad_acpi
    serio_raw 5048 0
    ipw2200 139808 0
    libipw 26136 1 ipw2200
    lib80211 5208 3 lib80211_crypt_wep,ipw2200,libipw
    yenta_socket 23840 1
    rsrc_nonstatic 10868 1 yenta_socket
    pcmcia_core 32328 3 pcmcia,yenta_socket,rsrc_nonstatic
    snd_intel8x0 28688 2
    snd_intel8x0m 13312 0
    snd_ac97_codec 100120 2 snd_intel8x0,snd_intel8x0m
    ac97_bus 1364 1 snd_ac97_codec
    video 16484 0
    output 2388 1 video
    snd_pcm 67992 4 snd_pcm_oss,snd_intel8x0,snd_intel8x0m,snd_ac97_codec
    snd_timer 19260 2 snd_seq,snd_pcm
    nsc_ircc 16208 0
    parport_pc 35556 1
    parport 30924 3 ppdev,lp,parport_pc
    iTCO_wdt 10680 0
    iTCO_vendor_support 2840 1 iTCO_wdt
    uhci_hcd 22500 0
    snd 51460 14 snd_seq_oss,snd_seq,snd_seq_device,snd_pcm_oss,snd_mixer_oss,snd_intel8x0,snd_intel8x0m,snd_ac97_codec,snd_pcm,snd_timer
    soundcore 6080 1 snd
    snd_page_alloc 8092 3 snd_intel8x0,snd_intel8x0m,snd_pcm
    irda 110648 2 sir_dev,nsc_ircc
    crc_ccitt 1620 1 irda
    sg 24712 0
    ehci_hcd 35424 0
    i2c_i801 8904 0
    i2c_core 20648 2 drm,i2c_i801
    usbcore 137232 6 btusb,wacom,usbhid,uhci_hcd,ehci_hcd
    tg3 109176 0
    libphy 17780 1 tg3
    intel_agp 25628 0
    agpgart 29492 2 drm,intel_agp
    evdev 9248 11
    thermal 15120 0
    fan 4056 0
    button 5700 0
    battery 9880 0
    ac 3832 0
    cpufreq_powersave 1268 1
    cpufreq_ondemand 6752 0
    acpi_cpufreq 7584 0
    freq_table 3412 2 cpufreq_ondemand,acpi_cpufreq
    processor 39136 3 thermal,acpi_cpufreq
    rtc_cmos 10188 0
    rtc_core 16304 1 rtc_cmos
    rtc_lib 2324 1 rtc_core
    ext3 126556 4
    jbd 45512 1 ext3
    mbcache 6488 1 ext3
    dm_mod 53640 9
    sr_mod 14596 0
    cdrom 33600 1 sr_mod
    sd_mod 25072 3
    ata_generic 4504 0
    pata_acpi 3828 0
    ata_piix 22136 2
    ahci 30116 0
    libata 157036 4 ata_generic,pata_acpi,ata_piix,ahci
    scsi_mod 100500 4 sg,sr_mod,sd_mod,libata
    total used free shared buffers cached
    Mem: 2073804 1381928 691876 0 130512 929756
    -/+ buffers/cache: 321660 1752144
    Swap: 729080 0 729080
    success.
    /usr/lib/pm-utils/sleep.d/00powersave suspend suspend: success.
    /usr/lib/pm-utils/sleep.d/01grub suspend suspend: not applicable.
    /usr/lib/pm-utils/sleep.d/11netcfg suspend suspend: /bin/stty: standard input: Inappropriate ioctl for device
    :: home-wireless down [BUSY] [DONE]
    success.
    /usr/lib/pm-utils/sleep.d/49bluetooth suspend suspend: success.
    /usr/lib/pm-utils/sleep.d/55NetworkManager suspend suspend: success.
    /usr/lib/pm-utils/sleep.d/75modules suspend suspend: not applicable.
    /usr/lib/pm-utils/sleep.d/90clock suspend suspend: not applicable.
    /usr/lib/pm-utils/sleep.d/94cpufreq suspend suspend: success.
    /usr/lib/pm-utils/sleep.d/95led suspend suspend: success.
    /usr/lib/pm-utils/sleep.d/98smart-kernel-video suspend suspend: not applicable.
    /usr/lib/pm-utils/sleep.d/99video suspend suspend: kernel.acpi_video_flags = 0
    Allocated buffer at 0x2010 (base is 0x0)
    ES: 0x0201 EBX: 0x0000
    success.
    Tue Apr 14 03:46:56 PDT 2009: performing suspend
    Not very informative as far as I can see. Here is what I upgraded on that day (from pacman.log):
    [2009-04-10 22:51] synchronizing package lists
    [2009-04-10 22:51] starting full system upgrade
    [2009-04-10 22:57] starting full system upgrade
    [2009-04-10 22:57] upgraded fftw (3.2-1 -> 3.2.1-1)
    [2009-04-10 22:57] upgraded gpgme (1.1.7-2 -> 1.1.8-1)
    [2009-04-10 22:57] upgraded hdparm (9.12-1 -> 9.14-1)
    [2009-04-10 22:57] upgraded ipw2200-fw (3.0-2 -> 3.1-1)
    [2009-04-10 22:57] upgraded kbproto (1.0.3-1 -> 1.0.3-2)
    [2009-04-10 22:57] upgraded kernel26-firmware (2.6.28-1 -> 2.6.29-1)
    [2009-04-10 22:57] >>> Updating module dependencies. Please wait ...
    [2009-04-10 22:57] >>> MKINITCPIO SETUP
    [2009-04-10 22:57] >>> ----------------
    [2009-04-10 22:57] >>> If you use LVM2, Encrypted root or software RAID,
    [2009-04-10 22:57] >>> Ensure you enable support in /etc/mkinitcpio.conf .
    [2009-04-10 22:57] >>> More information about mkinitcpio setup can be found here:
    [2009-04-10 22:57] >>> http://wiki.archlinux.org/index.php/Mkinitcpio
    [2009-04-10 22:57]
    [2009-04-10 22:57] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2009-04-10 22:57] ==> Building image "default"
    [2009-04-10 22:57] ==> Running command: /sbin/mkinitcpio -k 2.6.29-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26.img
    [2009-04-10 22:57] :: Begin dry run
    [2009-04-10 22:57] :: Parsing hook [base]
    [2009-04-10 22:57] :: Parsing hook [udev]
    [2009-04-10 22:57] :: Parsing hook [autodetect]
    [2009-04-10 22:57] :: Parsing hook [pata]
    [2009-04-10 22:57] :: Parsing hook [scsi]
    [2009-04-10 22:57] :: Parsing hook [sata]
    [2009-04-10 22:58] :: Parsing hook [lvm2]
    [2009-04-10 22:58] :: Parsing hook [filesystems]
    [2009-04-10 22:58] :: Generating module dependencies
    [2009-04-10 22:58] :: Generating image '/boot/kernel26.img'...SUCCESS
    [2009-04-10 22:58] ==> SUCCESS
    [2009-04-10 22:58] ==> Building image "fallback"
    [2009-04-10 22:58] ==> Running command: /sbin/mkinitcpio -k 2.6.29-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26-fallback.img -S autodetect
    [2009-04-10 22:58] :: Begin dry run
    [2009-04-10 22:58] :: Parsing hook [base]
    [2009-04-10 22:58] :: Parsing hook [udev]
    [2009-04-10 22:58] :: Parsing hook [pata]
    [2009-04-10 22:58] :: Parsing hook [scsi]
    [2009-04-10 22:58] :: Parsing hook [sata]
    [2009-04-10 22:58] :: Parsing hook [lvm2]
    [2009-04-10 22:58] :: Parsing hook [filesystems]
    [2009-04-10 22:59] :: Generating module dependencies
    [2009-04-10 22:59] :: Generating image '/boot/kernel26-fallback.img'...SUCCESS
    [2009-04-10 22:59] ==> SUCCESS
    [2009-04-10 22:59] upgraded kernel26 (2.6.28.8-1 -> 2.6.29.1-3)
    [2009-04-10 22:59] upgraded klibc-udev (140-1 -> 141-1)
    [2009-04-10 22:59] upgraded libdvdread (0.9.7-1 -> 0.9.7-2)
    [2009-04-10 22:59] upgraded libfontenc (1.0.4-1 -> 1.0.4-2)
    [2009-04-10 22:59] upgraded libid3tag (0.15.1b-2 -> 0.15.1b-3)
    [2009-04-10 22:59] upgraded libmatroska (0.8.1-1 -> 0.8.1-2)
    [2009-04-10 22:59] upgraded libofa (0.9.3-1 -> 0.9.3-2)
    [2009-04-10 22:59] upgraded libogg (1.1.3-1 -> 1.1.3-2)
    [2009-04-10 22:59] installed libftdi (0.15-1)
    [2009-04-10 22:59] upgraded lirc-utils (0.8.4-1 -> 0.8.5pre2-1)
    [2009-04-10 22:59] upgraded m4 (1.4.12-1 -> 1.4.13-1)
    [2009-04-10 22:59] upgraded man-db (2.5.4-2 -> 2.5.5-1)
    [2009-04-10 22:59] upgraded man-pages (3.19-1 -> 3.20-1)
    [2009-04-10 22:59] upgraded python-numpy (1.2.1-4 -> 1.3.0-1)
    [2009-04-10 22:59] upgraded tzdata (2009d-1 -> 2009e-1)
    [2009-04-10 22:59] upgraded udev (140-2 -> 141-1)
    The kernel was upgraded then. Is that the most likely culprit? Generally, how can I help debug this?
    Thanks...
    Last edited by Lux Perpetua (2009-07-08 04:20:11)

    Hi there. Me here with the same problem. Well I think it to be so...
    I can not suspend/resume for the second time - when I resume the backlight turns on, but the suspend LED is not turned off, HDD works, CPU, fans work. My computer is Thinkpad T43p. And older kernel does solve the problems.
    I am considering one more issue about this problem is that the drivers may conflict with the newest kernel (for example my opensource ati drivers). Any suggestions?
    By the way, if someone needs older packages, you can use 'Arch Rollback Machine' (ARM - http://bbs.archlinux.org/viewtopic.php?id=53665)

  • Broke my sound, can't find soundcard now? [SOLVED]

    Hi,
    I'm having some trouble with my sound and it's escalated to the level where I'm not sure if my soundcard is even detected.
    The story so far: A few months ago I invested in a Xonar DX sound card and some days ago tried to make it work in an existing Arch installation. I wasn't sure precisely what to do, so I followed the installation guide here (http://www.alsa-project.org/main/index. … e-virtuoso) to the letter and, hey, it worked so I was happy. I hadn't uninstalled my previous ALSA config or anything like that though, just wanted to get it working really.
    Yesterday, I assume after the latest kernel update, the DX stopped working but my integrated Realtek still worked. Today I tried fixing it by first following those steps again, but that resulted in no sound card working. So I uninstalled everything ('make uninstall' in the src folders for the custom installed drivers, 'pacman -Rd' for alsa-lib, alsa-utils and alsa-oss, 'd' so I woulnd't have to uninstall every library depending on ALSA) and started from the beginning. Now I can't even get my integrated card working again.
    lsmod|grep '^snd'
    outputs nothing.
    /dev/snd/
    doesn't exist.
    modprobe snd-virtuoso
    gives "No such file or directory"
    So, what should I do next? Will be grateful for any help I can get.
    Thanks!
    Petter Johansson
    Last edited by peak_performance (2009-05-11 21:06:55)

    Nevermind, solved it by reinstalling the kernel and even got my new sound card to work without compiling custom drivers Just by installing asoundconf from AUR and configuring it to prefer my DX instead of the integrated. Thinking about updating the wiki on this front, since the ALSA article right now doesn't mention anything about multiple sound cards.
    Is there any other easy way to select sound card?

  • [SOLVED] zenity 3.8 broke my scripts

    After updating from zenity 3.6 to 3.8, most of my scripts dont work.
    A little example:
    #!/bin/bash
    title="Server Options"
    prompt="Pick an option:"
    options=("option 1" "option 2" "option 3")
    while opt=$(zenity --width 500 --height 300 --title="$title" --text="$prompt" --list --column="Options" "${options[@]}"); do
    case "$opt" in
    "${options[0]}" ) zenity --info --text "option 1";;
    "${options[1]}" ) zenity --info --text "option 2";;
    "${options[2]}" ) zenity --info --text "option 3";;
    esac
    done
    This normally, when selecting an option should execute: zenity --info --text "option X"
    Now it does not execute anything.
    Downgrading to zenity 3.6 fixes the problem.
    Please, a little help !
    Last edited by tritonas00 (2013-04-24 16:55:25)

    Stebalien wrote:Please mark this thread as solved. Also, if you don't plan on reporting the bug upstream yourself, tell me so I can.
    Sorry, i forgot.
    I made the report yesterday -> https://bugzilla.gnome.org/show_bug.cgi?id=698683
    Last edited by tritonas00 (2013-04-24 16:57:32)

  • [SOLVED] Glibc broke pacman after 2 months without update

    Hello all !
    So I did an update of the system after two months.
    To begin with I couldn't update because of the issue with the /lib.
    Pacman was complaining that /lib was existing in the filesystem.
    I used the command provided by the wiki and by some posts to update :
    pacman -Syu --ignore glibc,curl
    Everything went fine and 422 packages were upgraded.
    But then when I tried to use pacman, I had the following error :
    pacman: /lib/libc.so.6: version 'GLIBC_2.16' not found (required by /lib/libarchive.so.12)
    I tried to follow several posts, and that's what I did :
    - downgrade pacman (extracting the tar.xz directly in the /)
    - downgrade curl (extracting the tar.xz directly in the /)
    - upgrade pacman to 2.16 (downloading it on the web and extracting it directly in the /)
    I still have the same problem with version 'GLIBC_2.16' not found.
    When I tried to upgrade pacman to 2.16, no files were put in /lib, they were put instead to /usr/lib, so I don't see how it could have solved the problem.
    Thank you for your help, I'm desperate now ! (by the way, I use yaourt)
    Last edited by Sathors (2012-10-05 13:06:16)

    WorMzy wrote:Which post? You've been told never to use --force during this update: https://www.archlinux.org/news/the-lib- … a-symlink/
    The message error was different from the one about this update : https://www.archlinux.org/news/the-lib- … a-symlink/
    It was that I installed glibc by extracting the tarball, and I was trying to reinstall it cleanly using pacman. It was complaining about the files of glibc already installed.
    That's why I used the flag --force, only to overwrite glibc install.
    WorMzy wrote:It seems to me that you're only interested in a quick fix, and aren't interested in understanding what the problem is. Coupled with the fact that you haven't updated in two months, I'm going to tentatively suggest that Arch isn't the distro for you.
    Actually I am quite interested in understanding what the problem is, but even following the different posts I don't clearly get it, because I can find solutions, but not many explanations.
    As for the fact that I didn't do an update in two months, it was because I had a master thesis to write, and I couldn't afford even one day of messing around with my system. So I guess I had my reasons for doing so.
    I finally found the solution to be able to chroot back into my system, I simply had to delete /lib, and to symlink /usr/lib to /lib.
    Now everything seems to work fine.
    I am sorry if my previous posts were not clear enough, as I'm chrooting into a live usb on my desktop and using my laptop at the same time, it was hard for me to keep track of all the topics I followed.
    Thank you for your help, now I'll try and solve my booting problems !

  • [Solved] I broke Gnome

    I have been playing with Gnome Shell for the the last couple days. I was doing some stuff this morning (a bunch of different things), then I rebooted and just got a black screen with my mouse (which I could move around). GDM auto logs me in.
    I regenerated my xorg.conf (even though I wasn't playing with that), and that didn't help.
    Is there a way to kind of "restore gnome" or something or how should I go about troubleshooting this?
    I can hit ctrl+alt+f2 to get to another terminal window.
    Last edited by Dethredic (2011-08-01 18:00:07)

    Dethredic wrote:
    litemotiv wrote:Depends on what you did? One thing to try is to rename your Gnome user config dir temporarily and let it be created with default settings.
    Thanks, renaming my .config folder fixed it
    Cool. Can you please mark this thread as solved?

Maybe you are looking for

  • Install BI Tools with paid VS2008 Pro in workstation and paid Sql Server 2008 R2 in server?

    My workstation has VS2008 Pro (paid) and Sql Express (free); our Windows Enterprise server has SQL Server 2008 R2 RTM (paid). In other words, my workstation may not have a paid version of the sql server DB, but our server does. Is there a possibility

  • JNLP Supported Servers

    Hi! Can someone please give me a JNLP supported and Java Web Start Supported Web Hosting Program� I tried geocities but it won let me upload it, something about invalid name. I would greatly apreciate it if some one would fix the geocity problem. Tha

  • SELECT query performance : One big table Vs many small tables

    Hello, We are using BDB 11g with SQLITE support. I have a query about 'select' query performance when we have one huge table vs. multiple small tables. Basically in our application, we need to run select query multiple times and today we have one hug

  • Update rule to transformation migration error

    Error produced during update rule (BW3.5) to transformation migration. During start routine validation check it states that ' The data object 'COMM_STRUCTURE' has no component called 'BIC/ZCH_FABC1'  but there is a component called 'BIC/ZCH_FAAC1'. E

  • White background on output?

    Hi, guys! Sorry for the stupid question, but how do you change the output background from black to white? Thank you!