No Window Manager After Last pacman Update

Today, my xfwm suddenly stop to work after a system wide pacman update yesterday.
There seems no error in dmesg and Xorg.o.log. How can I debug now?

[2010-04-25 14:38] synchronizing package lists
[2010-04-25 14:39] starting full system upgrade
[2010-04-25 14:41] upgraded linux-api-headers (2.6.33.1-1 -> 2.6.33.2-1)
[2010-04-25 14:41] Generating locales...
[2010-04-25 14:41] en_US.UTF-8... done
[2010-04-25 14:41] en_US.ISO-8859-1... done
[2010-04-25 14:41] zh_TW.UTF-8... done
[2010-04-25 14:41] zh_TW.BIG5... done
[2010-04-25 14:41] Generation complete.
[2010-04-25 14:41] upgraded glibc (2.11.1-2 -> 2.11.1-3)
[2010-04-25 14:41] upgraded binutils (2.20.1-1 -> 2.20.1-2)
[2010-04-25 14:41] upgraded cloog-ppl (0.15.8-1 -> 0.15.9-1)
[2010-04-25 14:41] upgraded coreutils (8.4-2 -> 8.4-3)
[2010-04-25 14:41] installed libmpc (0.8.1-2)
[2010-04-25 14:41] upgraded gcc (4.4.3-2 -> 4.5.0-1)
[2010-04-25 14:41] upgraded gcc-libs (4.4.3-2 -> 4.5.0-1)
[2010-04-25 14:41] upgraded git (1.7.0.5-1 -> 1.7.1-1)
[2010-04-25 14:41] upgraded libassuan (1.0.5-2 -> 2.0.0-1)
[2010-04-25 14:41] upgraded gnupg2 (2.0.14-1 -> 2.0.15-1)
[2010-04-25 14:41] upgraded gpgme (1.2.0-1 -> 1.3.0-1)
[2010-04-25 14:41] upgraded grub (0.97-16 -> 0.97-17)
[2010-04-25 14:41] upgraded libgnomekbd (2.30.0-1 -> 2.30.1-1)
[2010-04-25 14:41] upgraded libmysqlclient (5.1.46-1 -> 5.1.46-2)
[2010-04-25 14:41] upgraded libnl (1.1-1 -> 1.1-2)
[2010-04-25 14:41] upgraded libsasl (2.1.23-2 -> 2.1.23-4)
[2010-04-25 14:41] upgraded qt (4.6.2-3 -> 4.6.2-4)
[2010-04-25 14:41] upgraded sdparm (1.04-1 -> 1.05-1)
[2010-04-25 14:41] upgraded unixodbc (2.2.14-2 -> 2.3.0-1)
[2010-04-25 14:41] upgraded util-linux-ng (2.17.2-1 -> 2.17.2-2)
[2010-04-25 14:43] upgraded ibus-qt (1.2.0.20091217-2 -> 1.3.0-1)
There are lots of update yesterday. Maybe cause by GCC?
How can I revert the change by pacman?

Similar Messages

  • [Solved] Makepkg aborting after last pacman update

    Hi all,
    firing makepkg yields:
    $ makepkg
    ==> ERROR: An unknown error has occurred. Exiting...
    And therefore this happens also when I try building packages of the AUR with yaourt.
    The problem showed up with last pacman update.
    What I am I doing wrong?
    Thanks for you patience,
    Davide
    Last edited by flakedave (2010-06-23 22:46:39)

    Yeah, version and help are fine.
    $ cat /etc/makepkg.conf
    # /etc/makepkg.conf
    # SOURCE ACQUISITION
    #-- The download utilities that makepkg should use to acquire sources
    # Format: 'protocol::agent'
    DLAGENTS=('ftp::/usr/bin/wget -c --passive-ftp -t 3 --waitretry=3 -O %o %u'
    'http::/usr/bin/wget -c -t 3 --waitretry=3 -O %o %u'
    'https::/usr/bin/wget -c -t 3 --waitretry=3 --no-check-certificate -O %o %u'
    'rsync::/usr/bin/rsync -z %u %o'
    'scp::/usr/bin/scp -C %u %o')
    # Other common tools:
    # /usr/bin/snarf
    # /usr/bin/lftpget -c
    # /usr/bin/curl
    # ARCHITECTURE, COMPILE FLAGS
    CARCH="x86_64"
    CHOST="x86_64-unknown-linux-gnu"
    #-- Exclusive: will only run on x86_64
    # -march (or -mcpu) builds exclusively for an architecture
    # -mtune optimizes for an architecture, but builds for whole processor family
    CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe"
    CXXFLAGS="-march=x86-64 -mtune=generic -O2 -pipe"
    LDFLAGS="-Wl,--hash-style=gnu -Wl,--as-needed"
    #-- Make Flags: change this for DistCC/SMP systems
    #MAKEFLAGS="-j2"
    # BUILD ENVIRONMENT
    # Defaults: BUILDENV=(fakeroot !distcc color !ccache)
    # A negated environment option will do the opposite of the comments below.
    #-- fakeroot: Allow building packages as a non-root user
    #-- distcc: Use the Distributed C/C++/ObjC compiler
    #-- color: Colorize output messages
    #-- ccache: Use ccache to cache compilation
    BUILDENV=(fakeroot !distcc color !ccache)
    #-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
    #-- specify a space-delimited list of hosts running in the DistCC cluster.
    #DISTCC_HOSTS=""
    # GLOBAL PACKAGE OPTIONS
    # These are default values for the options=() settings
    # Default: OPTIONS=(strip docs libtool emptydirs zipman purge)
    # A negated option will do the opposite of the comments below.
    #-- strip: Strip symbols from binaries/libraries in STRIP_DIRS
    #-- docs: Save doc directories specified by DOC_DIRS
    #-- libtool: Leave libtool (.la) files in packages
    #-- emptydirs: Leave empty directories in packages
    #-- zipman: Compress manual (man and info) pages in MAN_DIRS with gzip
    #-- purge: Remove files specified by PURGE_TARGETS
    OPTIONS=(strip docs libtool emptydirs zipman purge)
    #-- File integrity checks to use. Valid: md5, sha1, sha256, sha384, sha512
    INTEGRITY_CHECK=(md5)
    #-- Options to be used when stripping binaries. See `man strip' for details.
    STRIP_BINARIES="--strip-all"
    #-- Options to be used when stripping shared libraries. See `man strip' for details.
    STRIP_SHARED="--strip-unneeded"
    #-- Options to be used when stripping static libraries. See `man strip' for details.
    STRIP_STATIC="--strip-debug"
    #-- Manual (man and info) directories to compress (if zipman is specified)
    MAN_DIRS=({usr{,/local}{,/share},opt/*}/{man,info})
    #-- Doc directories to remove (if !docs is specified)
    DOC_DIRS=(usr/{,local/}{,share/}{doc,gtk-doc} opt/*/{doc,gtk-doc})
    #-- Directories to be searched for the strip option (if strip is specified)
    STRIP_DIRS=(bin lib sbin usr/{bin,lib,sbin,local/{bin,lib,sbin}} opt/*/{bin,lib,sbin})
    #-- Files to be removed from all packages (if purge is specified)
    PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod)
    # PACKAGE OUTPUT
    # Default: put built package and cached source in build directory
    #-- Destination: specify a fixed directory where all packages will be placed
    #PKGDEST=/home/packages
    #-- Source cache: specify a fixed directory where source files will be cached
    #SRCDEST=/home/sources
    #-- Source packages: specify a fixed directory where all src packages will be placed
    #SRCPKGDEST=/home/srcpackages
    #-- Packager: name/email of the person or organization building packages
    #PACKAGER="John Doe <[email protected]>"
    # EXTENSION DEFAULTS
    # WARNING: Do NOT modify these variables unless you know what you are
    # doing.
    PKGEXT='.pkg.tar.xz'
    SRCEXT='.src.tar.gz'
    # vim: set ft=sh ts=2 sw=2 et:

  • IWork (Pages) does not work after last system update!

    since some days (after last system update) iWork programms are not starting any more!
    macosx 10.7.5 new update
    solution atemd: cancel p-ram and p-list, re-installing iwork from DVD and update it from http://support.apple.com/kb/DL1563
    macbookpro 2.53 ghz intel core 2 duo, 8 gb ram
    any body an idea what i can do to fix it?

    hi - i think you should not use 'xhost +' - it's not secure and you shouldn't need it....
    in your .bashrc or .cshrc or whatever, you should have setenv DISPLAY .0 or the equivalent export...
    then ssh -Y hostname should be all you need... no xhost, and not setting DISPLAY every time...
    could you enter the following command from a terminal window and post back the results?
    grep X11 /etc/ssh*_config
    cheers

  • After last automatic update, error message XUL Runner error platform version '6.0.2' is not compatible with minVersion 6.0.1. maxVersion 6.0.1. I am unable to open Mozilla Firefox at all. Had to use Explorer to ask this question!

    After last automatic update, error message XUL Runner error platform version 6.0.2. is not compatible with min Version 6.0.1 maxVersion 6.0.1 appeared every time I try to open/run Mozilla Firefox.

    See:
    *[[/questions/869812]]
    *[[/questions/869951]]

  • After last iPhoto update I find Pages documents in photo files

    After last IPhoto update 9.3.1, files from Pages are showing up in my photo files. How can I fix his ? Also bought Apeture 3 from App Store . C

    I did delete them. Just wonder how/why they showed up. Hope hey stay away. Thanks.

  • Cannot access internet through itunes after last itunes update. Cannot get to itunes store or itunes help. Everything else works fine.

    After last itunes update I cannot get to the internet through itunes. Cannot get to itunes store, itunes help, etc. Also, now when I sync everything syncs properly but I get message at end that tells me that my phone cannot be backed up on the laptop.

    Something may be corrupt in your iTunes installation. The backup problem may or may not be related. The first step is reboot your system, disable your antivirus and firewall and try again. The next thing to try is completely removing iTunes and reinstalling: http://support.apple.com/kb/HT1925.
    Also, if you used TinyUmbrella or Recboot as unauthorized apps to help with the update they corrupted your network settings on your computer. You will have to edit your hosts file and remove all references to Apple servers.

  • After last iTunes update 3 days ago, my iPod doesn`t sync with my iTunes. What should I do?  :(

    After last iTunes update 3 days ago, my iPod doesn`t sync with my iTunes. What should I do? 
    Regards,
    Gisele

    Try:                                               
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable       
    - Try on another computer                            
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar                                     

  • CD Tray open automatically after last Security Update

    when I start up or restart Mymac Pro CD Tray open automatically after last Security Update. Also I could not reinstall Mac OS Tiger because CD Tray open automatically every start up or restart. What's happen? Somebody help me! Please~

    Hi.
    If you have a USB keyboard and mouse, try unplugging them and then restart. If you have a Bluetooth set, remove the batteries and restart.
    See what happens.
    Good Luck.

  • Cannot start mac mini coreduo after last security update

    Hi,
    after last security update mac mini cannot see anymore the new 7200 rpm hddisk which worked like a charm since that…
    When try to boot now I see only a question mark folder…
    I can fix permissions via dvd, I can see the mac mini disk if i connet via firewire to another mac,
    but cannot boot from it…
    tried a kind of tech tool test: it seems that I've got a huge amount of corrupted .plist files…
    How could that happen?
    does it mean that it's not an hardware issue?
    should I reinstall snow?
    help me please

    tmma.a wrote:
    I thought that erasing was formatting as well;
    no, it's not. there is probably something wrong with the partition map of the drive which is why your mac firmware does not recognize it as a boot drive when you restart. simply erasing the drive won't fix it. reformatting might.
    anyway I'm reinstalling now, if doesn't work will try reformatting too…

  • Firefox extension: "TrueSuite 5.2.500.16" stopped working after last firefox update (30.0), even though about:plugin says it's enabled. Any fix to make it work?

    Firefox extension: "TrueSuite 5.2.500.16" stopped working after last firefox update (30.0), even though about:plugin says it's enabled.
    i tried resetting firefox and look for similar problems, unfortunately didn't find anything.
    also there's weird blank space before address in address bar
    other extensions and addons seem to be running fine.

    jscher2000, i tried that, i thought it didnt work before, it's just that this time i accidentally closed (and thus restarted) firefox and it worked, thanks man

  • Difficulty with some sites after last Security update..

    anyone else had any problems?
    I've found that with my bank, and a couple of other sites like myspace, Safari keeps instantly coming up with 'server cannot be found' error, without even trying to access the sites. Sometimes shift-click/return does the trick (after 10 hits!) or I end up having to reset Safari, and it'll work for a couple of visits. And even then, once I've managed to get into the site, clicking links is a chance in itself, that I don't get the same error.
    My mac at work was fine (didn't do the last Security update), and all this only started after the last update..
    GAAAH!!!!

    Terrible Problem, and I'm certain attributable to the latest Security Update. I have tried EVERYTHING, including deep system cache clearning, combined update, permission repairs, Purging ALL plugins from Safari, DNS cache reset... you name it. I am an EE, Mac User for 20 years, computer/Unix savvy, and am completely stumped, having tried EVERY trick in book short of the Windows Style "Reformat and Reload the Hard Disk." I can't log into gmail, or this site for that matter (using an old laptop presently). The problem occurs with the following common denominators: ASP page, Screen Name/Password dialog box, and then either a return to blank dialog page, or an endless string of redirects. THIS AFFECTS EVERY BROWSER I TRY, INCLUDING THE LATEST FIREFOX. Needless to say, this problem is driving me NUTS, and of course I can't get any help directly from Apple, since my laptop is over a year old. I doubt I would find tech help sophisticated enough anyway. Does ANYBODY have any suggestions? This is one of these maddening problems that can consume entire evenings. I wish I had never installed the latest security update.
    AL PB G4   Mac OS X (10.4.8)   1.5GB Ram

  • After last maverick update macbook pro can't be shut down anymore - only by using the power button

    Hello!
    I hope that someone can help: after the last Maverick update I can't shut down the computer anymore - or restart. I need to use the power button. Furthermore several apps don't close when they are supposed to be closed - I always have to check with Force Quit. I could live with that, but not being able to shut down or restart the Mac is more than tiresome. Can anybody help?

    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Step 1
    For this step, the title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    In the top right corner of the Console window, there's a search box labeled Filter. Initially the words "String Matching" are shown in that box. Enter "BOOT_TIME" (without the quotes.)
    Each message in the log begins with the date and time when it was entered. Note the timestamps of the BOOT_TIME log messages, which refer to the times when the system was started. Now clear the search box and scroll back in the log to the last boot time when you had the problem. Select the messages logged before the boot, during the time something abnormal was happening. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    For example, if the system was unresponsive or was failing to shut down for three minutes before you forced a restart, post the messages timestamped within three minutes before the boot time, not after. Please include the BOOT_TIME message at the end of the log extract—not at the beginning.
    If there are long runs of repeated messages, please post only one example of each. Don’t post many repetitions of the same message.
    When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Some private information, such as your name, may appear in the log. Anonymize before posting.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Step 2
    In the Console window, select
              DIAGNOSTIC AND USAGE INFORMATION ▹ System Diagnostic Reports
    (not Diagnostic and Usage Messages) from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar.
    There is a disclosure triangle to the left of the list item. If the triangle is pointing to the right, click it so that it points down. You'll see a list of reports. A crash report has a name that begins with the name of the crashed process and ends in ".crash". A panic report has a name that begins with "Kernel" and ends in ".panic". A shutdown stall report has a name that ends in ".shutdownstall". Select the most recent of each, if any. The contents of the report will appear on the right. Use copy and paste to post the entire contents—the text, not a screenshot. It's possible that none of these reports exists.
    I know the report is long, maybe several hundred lines. Please post all of it anyway.
    If you don't see any reports listed, but you know there was a crash or panic, you may have chosen Diagnostic and Usage Messages from the log list. Choose DIAGNOSTIC AND USAGE INFORMATION instead.
    In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.)
    Please don’t post other kinds of diagnostic report—they're very long and rarely helpful.

  • IMovie 11 crashed after last software update

    I have a MacBook Air (mid 2011) with last Lion update. After I mede this week sofware update iMovie 11 cannot open, it tries but crash after a few second. If I push reopen in the crash window report it crashed again. I read in this forum that is happening the same in MacBook Pro, with Lion and with Snow Leopard too.  Any idea?

    Thank you, Thank you, Thank you!!!! That worked! I haven't used my iMovie in awhile and I wanted to edit a short clip when it started to act up and crash. Thanks to you I was able to follow you directions and everything is working fine now.

  • Time machine is non functional after last OS update

    I am unable to back up my I mac. When I click on the TM button it brings up a prompt that says " You haven't selected a location for time machine backups". When i click "set up Time Machine" it brings up a new TM window that shows the TM is "off". When I click the option on the left that that says "select back up disc", it brings up a new window that has one option only "other Airport Time Capsule". If I click onto that it opens a new grey window with a globe on it and it says "no configured airport base stations have been found. Airport utility will continue searching". If I try to turn the TM to the on position it brings up the same window scenario described above. This worked fine since 2009 and with the last major OS update it went bad....
    I was a pc guy before getting our macs and so this world is different, I have had NO problems with any of our macs since 2009, this is the first time and it started with the last OS update...our printer is not working either unless its hard wired to one of our 2 computers...again new issue since the last OS update. I have done a hard reboot on the Airport/TM and that didn't do anything. I wonder if it needs to be reloaded onto the IMAC, not really sure how to do that either.
    Thanks for any help/consideration you could give. Peter

    You need to do a full reset.. Yosemite wants to control and own everything.
    1. Full factory reset.
    Power off the TC.. ie pull the power cord or power off at the wall.. wait 10sec.. hold in the reset button.. be gentle.. power on again still holding in reset.. and keep holding it in for another 10sec. You may need some help as it is hard to both hold in reset and apply power. It will show success by rapidly blinking the front led. Release the reset.. and wait a couple of min for the TC to reset and come back with factory settings. If the front LED doesn’t blink rapidly you missed it and simply try again. The reset is fairly fragile in these.. press it so you feel it just click and no more.. I have seen people bend the lever or even break it. I use a toothpick as tool.
    N.B. None of your files on the hard disk of the TC are deleted.. this simply clears out the router settings of the TC.
    2. It will now show up in Airport Utility.
    Redo the setup but do not accept apple recommended names.. use short names, no spaces and pure alphanumeric.
    3. Wireless should have WPA2 Personal with pure alphanumeric password.
    4. Your computer share name is well advised to be short, no spaces and pure alphanumeric.. (just remember your windows days.. apple is now using windows networking by default.. they began in Mavericks. when did you problems start.. oh yeah.. in mavericks.. hmm.. connected?? I think so!!)
    5. Make sure in network preferences for whatever connection you use IPv6 is set to link-local only.
    6. Manually mount the TC in finder if you still cannot connect in TM. Do this using top menu, Go, Connect to server.
    Type in AFP://TCname.local (TCname is your new short name.. local is default domain).
    Or AFP://TCIPaddress (eg 10.0.1.1 the IP you can find by the summary on the TC in airport utility).
    Type in and save the password for disk access in your keychain.. this is important.
    7. If it stops the day after you set it up.. welcome to Yosemite.. reboot the TC.. make sure it is mounted in Finder and try again.
    8. Use a replacement backup utility.. eg Carbon Copy Cloner to a USB drive.. much more reliable.

  • IMac doesn't work after last software update

    After last Apple software update (new Safari and security stuff), my iMac 20"/2GHz enters in an on/off loop. It starts but it doesn't manage to load the OS, it shuts off, it restarts, it shuts off and so on.
    Does anybody have the same problem?
    Thks

    Was your update download interrupted in any way? if so, then the computer is trying to find the downloaded files and because the download wasn't completed then it's causing the loop. That's exactly what happened to me. My computer was shutting off intermittent and it did on an update download, so it caused a loop at that's now your case, then never mind.

Maybe you are looking for

  • What does it take to work with Sun on Java?

    How did they create Java and keep coming out with new versions? Heh, they can't write Java to create it, you know? Or can they? Lets discuss.

  • How do I disable AirPlay on my Macbook Pro

    I don't understand how to disable AirPlay on my macbook pro. It keeps asking for a password...In which i never set! Now my garageband is soundless and a pop up keeps coming on my screen asking for the password.

  • Mac client of a Debian server

    Hello, We just installed a Debian server (dual boot start up: Linux or Windows), and a dual boot client at our Info Room. After some time, all the 8 machines will be dual boot Linux or Windows. But I am the one who is in charge of the room most of th

  • New features for oracle 10g DBA

    hi all, i want to download new features for oracle 10g dba in free, but i cant found it free.so if somebody know anylink which provide it free or if somebody have it.plz let me know.i need it on urgent basis. Ihsan DBA from Pak

  • Does imessage send to iphones(with imessage) without internet?

    im considering getting an ipod and i want to know will i be able to imessage people even if i do not have access to internet?