[SOLVED] google-chrome update fails

Hi,
Apologies if this is a dumb-basic problem, but for some reason chrome is not updating via pacaur.
I noticed chrome was complaining about being an unsupported version in gmail, and I realised my google-chrome-stable was v38, so I went to update it in pacaur...
pacaur -S google-chrome
:: Package(s) google-chrome not found in repositories, trying AUR...
:: resolving dependencies...
:: looking for inter-conflicts...
AUR Packages (1): google-chrome-43.0.2357.81-1
:: Proceed with installation? [Y/n] y
:: Retrieving package(s)...
:: View google-chrome PKGBUILD? [Y/n] n
[sudo] password for timbeauhk:
/usr/bin/pacaur: line 720: cd: /tmp/pacaurtmp-timbeauhk/google-chrome: No such file or directory
:: Building google-chrome package(s)...
==> ERROR: PKGBUILD does not exist.
:: Could not clean google-chrome
I have just performed a pacman -Syu and all updated.
I have rebooted, even though this should not be necessary.
chrome was not running at the time.
It is likey some other fundamental error/mistake on my part, as not being able to change directory is a pretty basic step to fail on, and hints at a silent mkdir failure?
The dir and privs, from a root perspective, are as follows:
[root@machine timbeauhk]# ls -al /tmp/pacaurtmp-timbeauhk/
total 4
drwxr-xr-x 2 timbeauhk users 60 Jun 6 13:04 .
drwxrwxrwt 8 root root 180 Jun 6 13:40 ..
-rw-r--r-- 1 timbeauhk users 61 Jun 6 13:05 rpc.json
Ideas would be most appreciated.
Thanks in advance.
Last edited by timbeauhk (2015-06-06 07:39:23)

jasonwryan wrote:Install it manually, see if that works...
That did it, thanks.
Shame it did not install via pacaur, but hey.

Similar Messages

  • Google Chrome Updated..

    Google Chrome has been updated to Build 39 it's for Bug Fixes and other improvements should be seeing it soon in the Play Store. b33
    http://www.droid-life.com/2014/11/12/google-releases-chrome-build-29-brings-bug-fixes-and-performance-improvements/

    Yes, I've checked the 'always enabled' option as shown in the screenshot below. But I notice that there are 2 shockwave flash types in here. Could there be some kind of conflict between the two?

  • [SOLVED] AMD Microcode update failed (on Xen host)

    I have an Arch system running as a VM Host based on Xen 4.4.1
    It is yet unclear to me why the VMHost (Dom0) cannot update the CPU microcode of the AMD Opteron 3365.
    The following errors appear.
    [ 9.664531] microcode: CPU0: patch_level=0x0600081c
    [ 9.664548] microcode: CPU1: patch_level=0x0600081c
    [ 9.664566] microcode: CPU2: patch_level=0x0600081c
    [ 9.664580] microcode: CPU3: patch_level=0x0600081c
    [ 9.664593] microcode: CPU4: patch_level=0x0600081c
    [ 9.664607] microcode: CPU5: patch_level=0x0600081c
    [ 9.664624] microcode: CPU6: patch_level=0x0600081c
    [ 9.664639] microcode: CPU7: patch_level=0x0600081c
    [ 9.664723] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 18.344286] microcode: CPU0: update failed for patch_level=0x06000832
    [ 18.345579] microcode: CPU1: update failed for patch_level=0x06000832
    [ 18.346899] microcode: CPU2: update failed for patch_level=0x06000832
    [ 18.348202] microcode: CPU3: update failed for patch_level=0x06000832
    [ 18.349488] microcode: CPU4: update failed for patch_level=0x06000832
    [ 18.350776] microcode: CPU5: update failed for patch_level=0x06000832
    [ 18.352063] microcode: CPU6: update failed for patch_level=0x06000832
    [ 18.353352] microcode: CPU7: update failed for patch_level=0x06000832
    I am aware that Xen can do some early loading of microcodes, since I have found clues in the Xen git logs.
    But I guess Xen does not update the microcode, since the OS in Dom0 believes it is necessary to update the microcode.
    Does anybody have a clue why updating the CPU microcode from within Dom0 fails?
    Last edited by ArthurBorsboom (2015-01-10 12:45:29)

    I have solved the issue by using the Xen early microcode loading with the following changes.
    Copy the correct microcode binary to the boot folder.
    sudo cp /lib/firmware/amd-ucode/microcode_amd_fam15h.bin /boot
    Edit the Xen command line in /etc/xen/grub.conf from
    XEN_HYPERVISOR_CMDLINE="dom0_mem=1024M,max:1024M xsave=1"
    to
    XEN_HYPERVISOR_CMDLINE="dom0_mem=1024M,max:1024M xsave=1 ucode=-1"
    Hardcode the /etc/grub.d/09_xen configuration file to load the binary.
    From
    menuentry "Xen ${XEN_VERSION} / Arch Linux ${_KERNEL_PKG_} kernel" ${CLASS} {
    $(save_default_entry)
    if [ x\$feature_all_video_module = xy ]; then
    insmod all_video
    fi
    set gfxpayload=keep
    insmod ${BOOT_PART_FS}
    if [ x\$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root ${BOOT_PART_HINTS_STRING} ${BOOT_PART_FS_UUID}
    else
    search --no-floppy --fs-uuid --set=root ${BOOT_PART_FS_UUID}
    fi
    echo '$(printf "Loading Xen %s ..." ${XEN_VERSION})'
    multiboot ${REAL_DIR}/${XEN_BASENAME} ${REAL_DIR}/${XEN_BASENAME} ${XEN_HYPERVISOR_CMDLINE}
    echo 'Loading Arch Linux ${_KERNEL_PKG_} kernel ...'
    module ${REAL_DIR}/${_KERNEL_FILE_} ${REAL_DIR}/${_KERNEL_FILE_} root=${GRUB_LINUX_ROOT_DEVICE} rw ${GRUB_LINUX_PARAMS}
    echo 'Loading Arch Linux ${_KERNEL_PKG_} kernel initramfs ...'
    module ${REAL_DIR}/${_INITRAMFS_}
    To
    menuentry "Xen ${XEN_VERSION} / Arch Linux ${_KERNEL_PKG_} kernel" ${CLASS} {
    $(save_default_entry)
    if [ x\$feature_all_video_module = xy ]; then
    insmod all_video
    fi
    set gfxpayload=keep
    insmod ${BOOT_PART_FS}
    if [ x\$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root ${BOOT_PART_HINTS_STRING} ${BOOT_PART_FS_UUID}
    else
    search --no-floppy --fs-uuid --set=root ${BOOT_PART_FS_UUID}
    fi
    echo '$(printf "Loading Xen %s ..." ${XEN_VERSION})'
    multiboot ${REAL_DIR}/${XEN_BASENAME} ${REAL_DIR}/${XEN_BASENAME} ${XEN_HYPERVISOR_CMDLINE}
    echo 'Loading Arch Linux ${_KERNEL_PKG_} kernel ...'
    module ${REAL_DIR}/${_KERNEL_FILE_} ${REAL_DIR}/${_KERNEL_FILE_} root=${GRUB_LINUX_ROOT_DEVICE} rw ${GRUB_LINUX_PARAMS}
    echo 'Loading Arch Linux ${_KERNEL_PKG_} kernel initramfs ...'
    module ${REAL_DIR}/${_INITRAMFS_}
    echo 'Loading AMD Microcode'
    module ${REAL_DIR}/microcode_amd_fam15h.bin
    Rebuild the grub configuration file
    sudo grub-mkconfig -o /boot/grub/grub.cfg
    And reboot
    Check with the following command that Xen is running
    dmesg | grep xen
    Check with the following command that the microcode has the correct version
    [arthur@orion1695 ~]$ dmesg | grep microcode
    [ 9.379631] microcode: CPU0: patch_level=0x06000832
    [ 9.379645] microcode: CPU1: patch_level=0x06000832
    [ 9.379662] microcode: CPU2: patch_level=0x06000832
    [ 9.379676] microcode: CPU3: patch_level=0x06000832
    [ 9.379692] microcode: CPU4: patch_level=0x06000832
    [ 9.379710] microcode: CPU5: patch_level=0x06000832
    [ 9.379724] microcode: CPU6: patch_level=0x06000832
    [ 9.379738] microcode: CPU7: patch_level=0x06000832
    [ 9.379823] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [arthur@orion1695 ~]$
    And as you see in this example, there is no attempt to update the microcode anymore, since it is already up-to-date.
    I hope this helps other people facing this issue.

  • [SOLVED] Google Chrome doesn't render page after lost focus in Awesome

    Hello !
    I have installed fresh Arch Linux with linux-ck and awesome. After that I have installed google-chrome-stable and started it. Everything works well, but if I opened other application (chrome lost focus) and then got back to the chrome, it freezes. Mouce cursor worked as expected (cursor changed after hovering link, input field, etc) but view was not updated.
    Everything works well again if I change desktop to the second and go back to the first again (mod+2, mod+1). Chrome works, responses etc well.
    bvg
    Did you met something like that ? How can I fix it ?
    Edit:
    I bet this issue has something in common with hw acceleration. If I run some game on steam, lost focus, got back to the game - it show last rendered screen before focus has been lost (sound is ok, game is responsible but not updates screen).
    I use nvidia. Do I need some extra configuration to handle it ?
    Last edited by hsz (2013-12-18 17:16:17)

    The problem was `xcompmgr` which caused "freezing" view. I switched it to `unagi` and all of the problems have gone.

  • [SOLVED] Google chrome/chromium freezing when typing in address bar

    Hello again everyone, sorry to bother you.
    Im using Arch 64 bit + kde.
    Recently my chromium began freezing at random when I begin typing in the address bar. Since it persisted after several updates I installed google chrome beta from AUR, and the problem persists there. I've tried deleting the configuration directory to no avail.
    I am a web developer and therefore this is kind of extremely annoying, I need more browsers than just Firefox so I thought about asking your help, are there any of you with a 64 bit arch system in which chrome works flawlessly? Did you do anything special?
    Im beggining to think this is a chrome bug:
    http://www.google.com/support/forum/p/C … 253b&hl=en
    I found as well an old thread here in the forums:
    https://bbs.archlinux.org/viewtopic.php?id=129632
    But I decided to not be a thread necromancer.
    My google chrome version is: 18.0.1025.39 beta
    My chromium version is: 17.0.963.56
    I'm willing to recompile this thing if you think that will help, but I've heard horrible stories about compiling chrome. Any help will be tremendously appreciated.
    Last edited by denn1s (2012-03-10 17:46:50)

    yes, my card is nvidia 8600GT.
    This morning I spent a few experiments.
    1. I noticed that if you run full-screen application (game), then when you try to switch to the console - is a black screen without text, a problem arises as in KDE and in xfce, if you switch to the console without running full screen applications, the when switching to the console you can see the shell prompt to login (enter your login and password), both in KDE and in xfce.
    I tried to remove the option "VGA = 773" from the boot parameter has the kernel (GRUB), and the problem with switching to the console was gone.
    2. I made a nvidia-xconfig, creating a file /etc/x11/xorg.conf, rebooted (with the VGA = 773), and logged in to KDE user denis (yes my name is Denis too ), the name of my new account, the name of the old - user0), and the Problem with switching to the console was gone, at least for now.
    I think that the Problem with chromium somehow connected with the fact that the video card is Nvidia and its mode of operation, which hurt when you log in to your account.
    How does chromium in KDE in your account until Dennis, I have not tested that particular - will be tested, the result accomplish your goal.
    So try to remowe vga=773 from kernel line, and and see how it will work chromium.
    But i still dont know, why chromium work fine in xfce, but freezing in KDE...
    Last edited by killer1804 (2012-03-01 06:00:05)

  • SAP Fiori Error - Create Sales Order app doesn't run after Google Chrome updates

    Hi,
    I have a problem with the create sales order app (ui5_sd_so_cr).
    Everything works fine until Google Chrome browser updates to version 34.0.1847.116 m .
    The create sales order application has an error when i try to checkout the cart.
    This error is in the SalesOrderCreatePriceAndAvailabilityCheck.controller.js and SalesOrderCartDetails.js in this function:
    l.oSOCartModel.refreshSecurityToken(function (a, b) {
            l.oSOCartModel.create("/SalesOrders", m, null, function (c, d) {
                com.sap.kelley.salesordercreate.utils.ModelUtils.updateCartModelFromSimulationResponse(d);
                oSObusyIndicator.close();
            }, function (g) {
                oSObusyIndicator.close();
                var d = g.response.body;
                var f = jQuery.parseXML(d);
                var e = f.getElementsByTagName("message")[0].childNodes[0].nodeValue;
                var c = new sap.m.Dialog({
                    title: sap.ca.common.uilib.message.AlertMessageBoxType.ERROR.title,
                    content: [new sap.m.Label({
                        text: e
                    leftButton: new sap.m.Button({
                        text: l.oBundle.getProperty("XBUT_OK"),
                        tap: function () {
                            if (j) {
                                l._onNavigateBack();
                            c.close();
                c.addStyleClass("sapSOC-SingleButtonDialog");
                c.open();
        }, function (a) {
            oSObusyIndicator.close();
            var b = new sap.m.Dialog({
                title: sap.ca.common.uilib.message.AlertMessageBoxType.ERROR.title,
                content: [new sap.m.Label({
                    text: sap.ui.getCore()
                        .getModel("i18n")
                        .getProperty("ERROR_REFRESH_SECURITY_TOKEN")
                leftButton: new sap.m.Button({
                    text: l.oBundle.getProperty("XBUT_OK"),
                    tap: function () {
                        if (j) {
                            l._onNavigateBack();
                        b.close();
            b.addStyleClass("sapSOC-SingleButtonDialog");
            b.open();
        }, false);
    The error is in the line 07. Cannot read property 'body' of undefined
    Variable g is undefined.
    I tested the application with other browsers (IE, Firefox, Safari) and everything works perfectly. Only Chrome has this kind of problem.
    UISRA
    UISRA017
    100
    0002
    SAPK-10002INUISRA017
    HTML5 Create Order
    System
    SAP_BASIS
    731
    0007
    SAPKB73107
    SAP Basis Component
    GW_CORE
    200
    0006
    SAPK-20006INGWCORE
    SAP GW CORE 200
    IW_BEP
    200
    0007
    SAPK-20007INIWBEP
    Backend Event Provider
    UI5 version 1.16.4
    It 'happened to someone else?
    How can I fix the problem?
    Thank you for your help.
    Regards,
    Nicola

    Few things you can try,
    Upgrade your UI5 library version. Latest is 1.18
    Implement release notes :
    1948368 - Fiori Create Sales Order Wave 1 Common Library Fixes
    1947789 - Fiori Create Sales Order Wave 1 Fixes
    Check if these can be applied or go with UI library update.
    1939288 - Hotfix 1.16.5 for UI AddOn SP06 SC: UI2_SRVC
    Regards,
    Tejas

  • [SOLVED] google-chrome doesn't open images

    Hi,
    I want to know if there's any chance to define which software google-chrome uses to open image files.
    Currently when I try to open a file from google-chrome I get this:
    LaunchApp: failed to execvp:
    xdg-open
    Thanks.
    Last edited by aeurielesn (2010-07-31 08:12:22)

    karol wrote:https://bbs.archlinux.org/viewtopic.php … 40#p780740
    Thanks karol!
    As stated here, I needed to install xdg-utils too, now it works like a charm.
    Regards, Alexander.
    Last edited by aeurielesn (2010-08-02 16:34:15)

  • [SOLVED] Google Chrome does not work on my T61

    SOLVED. THIS HAPPENS BECAUSE OF SYMANTEC ENDPOINT PROTECTION. 
    Hello Everyone.
    I wonder if anyone can use Google Chrome on T61.
    I got my T61 from Hong Kong 5 months ago and I am using Windows Vista SP1 32 Bit Traditional Chinese.
    After I installed Google Chrome, it couldn' t connect to any websites. I had tried to uninstall it and even reinstall my computer, but it still doesn't work. The Internet Explorer does work.
    Surprisingly, I can connect to different websites using Google Chrome when I use Windows XP on Virtual PC. It seems that it's related to the OS itself. I will try to use Vista on Virtual PC, but I hope that you guys will be able to solve my problem.
    Thanks you very much.
    Edwin 
    Message Edited by Edwin2005HK on 11-17-2008 05:40 PM
    Message Edited by Edwin2005HK on 11-17-2008 08:15 PM

    It might be helpful to provide some more details such as: will it not install?, will it install and not run?, will it run but give error message?, etc, etc, etc.
    Another option may be to use the Google Chrome Help site which has
    1. troubleshooter: https://support.google.com/chrome/troubleshooter/3338247?hl=en&ref_topic=3421642
    2. other Chrome help: https://support.google.com/chrome/?hl=en#topic=3421642

  • [SOLVED] Google Chrome vs Chromium

    A few months ago while visiting Youtube, I noticed it was asking me to install google chrome. So I realized the Linux version is finally out. So I googled for it and installed it on my Ubuntu laptop under the name of google-chrome. Then I tried to install it on my 64 bit Arch Linux machine. I googled for it, but didn't find anything. I tried to search for it on pacman, but I only found Chromium. I installed it, and it looked exactly the same as my google-chrome on ubuntu.
    Today, I got confused whether or not chromium is the same as google-chrome. I read somewhere that chromium is the ported version of windows google-chrome for Linux while there's a separate version of google-chrome for linux, named google-chrome. I don't find any differences between my google-chrom on ubuntu and chromium on Arch, but I'm really confused.
    Would be glad if someone tells me what is what.
    Thanks in advance.
    EDIT: I just found my answer at: http://code.google.com/p/chromium/wiki/ … ogleChrome
    Last edited by mohtasham1983 (2010-02-04 23:23:30)

    Yep that link explains it all straight from the horses mouth so to speak.
    Basically chromium is the open source projected created by Google and google-chrome is a slightly modified version, google branded version of the browser that comes in binary form.

  • [SOLVED] Catalyst-dkms Update Fails (404 Not Found)

    It seems there's some mirror problems with this file... on every mirror I've tried.
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirror.us.leaseweb.net : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from hive.ist.unomaha.edu : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirrors.cicku.me : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirror.rit.edu : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirrors.kernel.org : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from cake.lib.fit.edu : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from ftp.tuxdroid.org : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirror.bytemark.co.uk : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from miroir.ezvan.fr : The requested URL returned error: 403 Forbidden
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from ftp5.gwdg.de : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from archlinux.openlabto.org : The requested URL returned error: 403 Forbidden
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from archlinux.surlyjake.com : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirror.selfnet.de : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirror.datacenter.by : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from archlinux.mirrors.uk2.net : The requested URL returned error: 403 Forbidden
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirrors.liquidweb.com : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mir.archlinux.fr : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from arch.apt-get.eu : The requested URL returned error: 403 Forbidden
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirror.ece.vt.edu : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from ftp.jaist.ac.jp : The requested URL returned error: 403 Forbidden
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from archlinux.mirror.dkm.cz : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from fruk.org : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirror.mocker.org : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirror.archlinux.no : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from archlinux.mirror.kangaroot.net : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from archlinux.c3sl.ufpr.br : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from ftp.lysator.liu.se : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirror.aarnet.edu.au : The requested URL returned error: 403 Forbidden
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirrors.n-ix.net : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirrors.cat.pdx.edu : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from www.gtlib.gatech.edu : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from ftp.tku.edu.tw : The requested URL returned error: 403 Forbidden
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirror.cc.columbia.edu : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirror.yandex.ru : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from 1favre.de : The requested URL returned error: 403 Forbidden
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from arch.ping.uio.no : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirror.devnu11.net : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from arch.linux.net.mk : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from pet.inf.ufsc.br : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from ftp.byfly.by : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mir1.archlinux.fr : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from mirrors.dotsrc.org : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from archlinux.puzzle.ch : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'catalyst-dkms-12.9-1-x86_64.pkg.tar.xz' from ftp.spline.inf.fu-berlin.de : The requested URL returned error: 404 Not Found
    I tried manually browing to my top mirror in Firefox and had the same problem.  It's only for this one file though.  The rest of the packages that were marked for upgrade downloaded succesfully.  Try going here first:
    http://mirror.us.leaseweb.net/archlinux … os/x86_64/
    You can scroll down and see catalyst-dkms-12.9-1-x86_64.pkg.tar.xz on the list but when you try to click it:
    http://mirror.us.leaseweb.net/archlinux … pkg.tar.xz
    404 error
    EDIT: Actually after letting pacman sit for a minute, I got this:
    catalyst-dkms-12.9-... 4.2 KiB 64.0K/s 00:00 [######################] 100%
    (14/14) checking package integrity [######################] 100%
    error: failed to commit transaction (invalid or corrupted package)
    Errors occurred, no packages were upgraded.
    Obviously 4.2KB is too small for this package.  I'm really not sure what's going on here.
    EDIT 2: Before anyone suggests it, I did try force refreshing the database multiple times (pacman -Syy)
    Last edited by weirddan455 (2012-10-13 20:00:43)

    I had just a similar issue with freeglut. When this happens, an update is probably in progress. Just wait a few minutes or try a different mirror. In my case it was sufficient to use the US mirror of Leaseweb (http://mirror.us.leaseweb.net/archlinux/$repo/os/$arch). I am able to download the catalyst DKMS package now, try again?

  • Google Chrome updates keep reverting my plugin to pepper flash

    This is a problem because pepper flash has a bug which does not let video play back locally from a machine , only via a server load , this is a serious bug , I have reported it here , feel free to visit the page and star the report to escalate it.
    https://code.google.com/p/chromium/issues/detail?id=144614
    For a developer its irratating  , for a non technical end user using the developers application .. its .. broken - point! This gives the developer a bad name

    function return wrote:
    ok nevermind me , keep disscussing your disscussing then.
    ps: I cant see how you say you are not sure of the relationship between a flash player plugin , flash video formats .flv /.f4v and adobe. Lets not nitpick about the word products now, I mean in the broader sense.
    Simple. I don't use Flash at all, and I didn't realize that by flash you were refering to the Flash software.
    May I suggest that you post your question in the Flash Player forum without infuriating you any further? It's here:
    http://forums.adobe.com/community/flashplayer

  • After updating to 10.10.2, my OpenGL applications do not work, and there are problems with window updates/refresh in App Store, and many applications, Google Chrome is unusable.

    After performing the OS X 10.10.2 update, OpenGL applications, for example Starry Night Pro fail to run, there are numerous windows update/refresh problems (incomplete refresh, remnants of window/frame borders), and some applications, for example Google Chrome are unusable, as cursor motion in the application window causes the display to flash horizontal bars in the window.
    I've tried a variety of things, including downloading the most current release of Xcode, turning on/off transparency in Accessibility, graphics switching, and a few other things, but the problem persists.
    The App Store display behaves similarly.  I am running a MacBook Pro.
    This is the output from EtreCheck:
    Problem description:
    Screen/windows corruption
    EtreCheck version: 2.1.8 (121)
    Report generated March 11, 2015 at 10:26:15 PM CDT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro (15-inch, Mid 2012) (Technical Specifications)
        MacBook Pro - model: MacBookPro9,1
        1 2.6 GHz Intel Core i7 CPU: 4-core
        16 GB RAM Upgradeable
            BANK 0/DIMM0
                8 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                8 GB DDR3 1600 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 36
    Video Information: ℹ️
        Intel HD Graphics 4000
        NVIDIA GeForce GT 650M - VRAM: 1024 MB
    System Software: ℹ️
        OS X 10.10.2 (14C1510) - Time since boot: 23:26:45
    Disk Information: ℹ️
        APPLE HDD HTS547575A9E384 disk0 : (750.16 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 748.96 GB (146.71 GB free)
                Encrypted AES-XTS Unlocked
                Core Storage: disk0s2 749.30 GB Online
        HL-DT-ST DVDRW  GS31N 
    USB Information: ℹ️
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple iPod
        Western Digital My Book 1 TB
            EFI (disk3s1) <not mounted> : 210 MB
            WDP1 (disk3s2) /Volumes/WDP1 : 333.40 GB (9.12 GB free)
            WDP2 (disk3s3) /Volumes/WDP2 : 333.40 GB (2.55 GB free)
            WDP3 (disk3s4) /Volumes/WDP3 : 332.79 GB (94.00 GB free)
        Western Digital My Book 1140 2 TB
            EFI (disk4s1) <not mounted> : 210 MB
            2TB_1 (disk4s2) /Volumes/2TB_1 : 666.79 GB (31.36 GB free)
            2TB_2 (disk4s3) /Volumes/2TB_2 : 666.79 GB (58.76 GB free)
            2TB_3 (disk4s4) /Volumes/2TB_3 : 666.18 GB (70.41 GB free)
        Logitech USB Receiver
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Computer, Inc. IR Receiver
        Logitech USB Receiver
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Anywhere
    Kernel Extensions: ℹ️
            /Applications/Parallels Access.app
        [loaded]    com.parallels.virtualsound (1.0.36 36 - SDK 10.6) [Click for support]
            /Applications/Parallels Desktop.app
        [not loaded]    com.parallels.kext.hypervisor (10.1.1 28614 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.netbridge (10.1.1 28614 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.usbconnect (10.1.1 28614 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.vnic (10.1.1 28614 - SDK 10.7) [Click for support]
            /Applications/Utilities/DiskWarrior.app
        [not loaded]    com.alsoft.Preview (4.1) [Click for support]
            /Library/Extensions
        [loaded]    com.epson.driver.EPSONProjectorUDAudio (1.40 - SDK 10.6) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.FTDI.driver.FTDIUSBSerialDriver (2.2.18 - SDK 10.6) [Click for support]
        [loaded]    com.Logitech.Control Center.HID Driver (3.6.0 - SDK 10.6) [Click for support]
        [loaded]    com.Logitech.Unifying.HID Driver (1.2.0 - SDK 10.6) [Click for support]
        [not loaded]    com.Ralink.driver.RT73 (1.1.6) [Click for support]
        [not loaded]    com.beceem.BeceemAppleWiMAXAdapter (5.2.56d16) [Click for support]
        [not loaded]    com.cisco.nke.ipsec (2.0.1) [Click for support]
        [not loaded]    com.devguru.driver.DIFMCDFree (1.1.0) [Click for support]
        [not loaded]    com.devguru.driver.DIFMSerial (1.1.0) [Click for support]
        [not loaded]    com.fklt.driver (1.8.0) [Click for support]
        [not loaded]    com.novatelwireless.driver.3G (2.2.8) [Click for support]
        [not loaded]    com.novatelwireless.driver.DisableAutoInstall (1.2) [Click for support]
        [not loaded]    com.prolific.driver.PL2303 (2.0.0) [Click for support]
        [not loaded]    com.rim.driver.BlackBerryUSBDriverInt (0.0.39) [Click for support]
        [not loaded]    com.rim.driver.BlackBerryUSBDriverVSP (0.0.39) [Click for support]
        [not loaded]    com.sbig.driver.SBIGUSBEDriver (4.70) [Click for support]
        [not loaded]    com.sbig.driver.SBIGUSBLoader (4.70.2) [Click for support]
        [not loaded]    com.sierrawireless.driver.SierraDevSupport (2.0.6) [Click for support]
        [not loaded]    com.sierrawireless.driver.SierraFSCSupport (2.0.6) [Click for support]
        [not loaded]    com.tomtom.driver.UsbEthernetGadget (1.0.0d1) [Click for support]
        [not loaded]    com.wacom.kext.wacomtablet (6.3.7 - SDK 10.8) [Click for support]
        [not loaded]    org.emul.driver.EarthMate (1.0.0d1) [Click for support]
            /System/Library/Extensions/NovatelWireless3G.kext/Contents/Plugins
        [not loaded]    com.novatelwireless.driver.3GData (2.2.8) [Click for support]
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [running]    com.adobe.AdobeCreativeCloud.plist [Click for support]
        [not loaded]    com.canon.MFManager.plist [Click for support]
        [loaded]    com.divx.dms.agent.plist [Click for support]
        [loaded]    com.divx.update.agent.plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [running]    com.kodak.BonjourAgent.plist [Click for support]
        [running]    com.Logitech.Control Center.Daemon.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
        [running]    com.parallels.mobile.prl_deskctl_agent.launchagent.plist [Click for support]
        [running]    com.wacom.wacomtablet.plist [Click for support]
        [loaded]    org.macosforge.xquartz.startx.plist [Click for support]
    Launch Daemons: ℹ️
        [running]    com.adobe.adobeupdatedaemon.plist [Click for support]
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [running]    com.autodesk.backburner_manager.plist [Click for support]
        [running]    com.autodesk.backburner_server.plist [Click for support]
        [loaded]    com.autodesk.backburner_start.plist [Click for support]
        [loaded]    com.google.keystone.daemon.plist [Click for support]
        [running]    com.makerbot.conveyor.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
        [running]    com.parallels.mobile.dispatcher.launchdaemon.plist [Click for support]
        [loaded]    com.parallels.mobile.kextloader.launchdaemon.plist [Click for support]
        [loaded]    org.macosforge.xquartz.privileged_startx.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.citrixonline.GoToMeeting.G2MUpdate.plist [Click for support]
        [loaded]    com.kodak.KODAK AiO Firmware Updater.plist [Click for support]
        [loaded]    com.kodak.KODAK AiO Software Updater.plist [Click for support]
        [running]    com.parallels.mobile.startgui.launchagent.plist [Click for support]
        [loaded]    com.valvesoftware.steamclean.plist [Click for support]
    User Login Items: ℹ️
        Google Drive    Application  (/Applications/Google Drive.app)
        USB Display Agent    Application  (/Applications/USB Display/USB Display.app/Contents/Resources/USB Display Agent.app)
        USB Display Agent    Application  (/Applications/USB Display/USB Display.app/Contents/Resources/USB Display Agent.app)
    Internet Plug-ins: ℹ️
        WacomNetscape: Version: 2.1.0-1 - SDK 10.8 [Click for support]
        OVSHelper: Version: 1.1 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        Google Earth Web Plug-in: Version: 6.0 [Click for support]
        SlingPlayer: Version: Unknown [Click for support]
        RealPlayer Plugin: Version: Unknown [Click for support]
        AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7 [Click for support]
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        DivX Web Player: Version: 3.2.4.1250 - SDK 10.6 [Click for support]
        Silverlight: Version: 5.1.10411.0 - SDK 10.6 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        iPhotoPhotocast: Version: 6.0
        WacomTabletPlugin: Version: WacomTabletPlugin 2.1.0.2 [Click for support]
        AdobePDFViewer: Version: 9.5.5 [Click for support]
        JavaAppletPlugin: Version: Java 8 Update 40 Check version
    User internet Plug-ins: ℹ️
        fbplugin_1_0_3: Version: Unknown [Click for support]
        BrowserPlus_2.6.0: Version: 2.6.0 [Click for support]
        CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 [Click for support]
        fbplugin_1_0_1: Version: Unknown [Click for support]
        Picasa: Version: 1.0 [Click for support]
    Safari Extensions: ℹ️
        Open in Internet Explorer
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
        Flip4Mac WMV  [Click for support]
        GoPro  [Click for support]
        Growl  [Click for support]
        Java  [Click for support]
        Logitech Control Center  [Click for support]
        MacFUSE  [Click for support]
        Perian  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: NO - Auto backup turned off
        Volumes being backed up:
            Macintosh HD: Disk size: 748.96 GB Disk used: 602.25 GB
        Destinations:
            WDP3 [Local]
            Total size: 332.79 GB
            Total number of backups: 2
            Oldest backup: 2013-04-03 12:26:32 +0000
            Last backup: 2013-04-03 12:26:32 +0000
            Size of backup disk: Too small
                Backup size 332.79 GB < (Disk used 602.25 GB X 3)
            STAR_TECH_EXT [Local]
            Total size: 499.76 GB
            Total number of backups: 2
            Oldest backup: 2013-04-03 14:26:44 +0000
            Last backup: 2013-04-03 14:26:44 +0000
            Size of backup disk: Too small
                Backup size 499.76 GB < (Disk used 602.25 GB X 3)
    Top Processes by CPU: ℹ️
             3%    WindowServer
             1%    Creative Cloud
             0%    firefox
             0%    fontd
             0%    AdobeUpdateDaemon
    Top Processes by Memory: ℹ️
        670 MB    Safari
        567 MB    firefox
        464 MB    softwareupdated
        395 MB    mds_stores
        309 MB    WindowServer
    Virtual Memory Information: ℹ️
        1.43 GB    Free RAM
        7.87 GB    Active RAM
        6.40 GB    Inactive RAM
        1.47 GB    Wired RAM
        7.30 GB    Page-ins
        205 KB    Page-outs
    Diagnostics Information: ℹ️
        Mar 11, 2015, 04:04:23 PM    /Library/Logs/DiagnosticReports/ScreenSaverEngine_2015-03-11-160423_[redacted]. cpu_resource.diag [Click for details]
        Mar 11, 2015, 02:54:29 PM    /Library/Logs/DiagnosticReports/ScreenSaverEngine_2015-03-11-145429_[redacted]. cpu_resource.diag [Click for details]
        Mar 11, 2015, 10:18:18 AM    /Library/Logs/DiagnosticReports/ScreenSaverEngine_2015-03-11-101818_[redacted]. cpu_resource.diag [Click for details]
        Mar 10, 2015, 10:55:10 PM    Self test - passed
        Mar 9, 2015, 03:21:58 AM    /Library/Logs/DiagnosticReports/SubmitDiagInfo_2015-03-09-032158_[redacted].cpu _resource.diag [Click for details]

    Here is the diagnostic script output:
    Start time: 12:06:12 03/14/15
    Revision: 1290
    Model Identifier: MacBookPro9,1
    System Version: OS X 10.10.2 (14C1510)
    Kernel Version: Darwin 14.1.0
    Time since boot: 3 days 13:11
    UID: 502
    Memory
        BANK 0/DIMM0
          Size: 8 GB
          Speed: 1600 MHz
          Status: OK
          Manufacturer: 0x859B
        BANK 1/DIMM0
          Size: 8 GB
          Speed: 1600 MHz
          Status: OK
          Manufacturer: 0x859B
    USB
        Hub (Belkin Corporation)
        My Book 1140 (Western Digital Technologies, Inc.)
        My Book (Western Digital Technologies, Inc.)
        USB Receiver (Logitech Inc.)
        USB Receiver (Logitech Inc.)
    FileVault 2: On
    Activity
        CPU: user 13%, system 7%
    CPU usage (%)
        plugin-container (UID 502): 100.0
        com.apple.WebKit (UID 502): 26.2
    File opens (per sec)
        AdobeUpdateDaem (UID 0) => /tmp/UUID_OUT (status 60): 6
    Energy (lifetime)
        WindowServer (UID 88): 7.44
        com.apple.WebKit.WebContent (UID 502): 7.22
    Energy (sampled)
        plugin-container (UID 502): 99.13
        com.apple.WebKit.WebContent (UID 502): 23.60
        WindowServer (UID 88): 21.29
        com.apple.WebKit.WebContent (UID 502): 13.16
        Console (UID 502): 12.28
    Memory (MB)
        kernel_task (UID 0): 1327
    Font issues: 1
    Listeners
        launchd: ftp
    System caches/logs
        3.6 GiB: /System/Library/Caches/com.apple.coresymbolicationd/data
    Diagnostic reports
        2015-02-19 com.apple.WebKit.WebContent crash
        2015-02-20 Topaz Adjust 5 crash
        2015-02-20 Topaz ReStyle crash
        2015-02-20 com.apple.WebKit.WebContent crash x2
        2015-02-21 com.apple.WebKit.WebContent crash x2
        2015-02-25 com.apple.WebKit.WebContent crash
        2015-03-04 system_profiler crash
        2015-03-07 com.apple.WebKit.WebContent crash
        2015-03-08 MPEG Streamclip hang x2
        2015-03-08 com.apple.WebKit.WebContent crash
    I/O errors
        disk2s2: close: journal 0xffffff8049bb9c20, is invalid.  aborting outstanding transactions 1
        disk2s2: do_jnl_io: strategy err 0x6 1
        disk2s3: close: journal 0xffffff8049bb9740, is invalid.  aborting outstanding transactions 1
        disk2s3: do_jnl_io: strategy err 0x6 1
        disk2s4: close: journal 0xffffff8049bb9260, is invalid.  aborting outstanding transactions 1
        disk2s4: do_jnl_io: strategy err 0x6 1
        disk3s2: do_jnl_io: strategy err 0x6 1
        disk3s3: close: journal 0xffffff8049bb95a0, is invalid.  aborting outstanding transactions 1
        disk3s3: do_jnl_io: strategy err 0x6 1
        disk3s4: close: journal 0xffffff8049bb9400, is invalid.  aborting outstanding transactions 1
        disk3s4: do_jnl_io: strategy err 0x6 1
        disk4s3: close: journal 0xffffff8023522c20, is invalid.  aborting outstanding transactions 1
        disk4s3: do_jnl_io: strategy err 0x6 1
    Volumes
        disk1: /
        disk5s3: /Volumes/WDP2
        disk5s2: /Volumes/WDP1
        disk5s4: /Volumes/WDP3
        disk6s2: /Volumes/2TB_1
        disk6s4: /Volumes/2TB_3
        disk6s3: /Volumes/2TB_2
        disk7s2: /Volumes/Starry Night Pro 7
    HID errors: 3
    Kernel log
        Mar  8 17:08:19 firefox (map: 0xffffff80501790f0) triggered DYLD shared region unnest for map: 0xffffff80501790f0, region 0x7fff8a200000->0x7fff8a400000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
        Mar  8 17:08:59 firefox (map: 0xffffff8051e54870) triggered DYLD shared region unnest for map: 0xffffff8051e54870, region 0x7fff8a200000->0x7fff8a400000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
        Mar  9 08:11:09 jnl: disk2s4: close: journal 0xffffff8049bb9260, is invalid.  aborting outstanding transactions
        Mar  9 08:11:09 jnl: disk3s4: close: journal 0xffffff8049bb9400, is invalid.  aborting outstanding transactions
        Mar  9 08:11:09 jnl: disk2s3: close: journal 0xffffff8049bb9740, is invalid.  aborting outstanding transactions
        Mar  9 08:11:09 jnl: disk3s3: close: journal 0xffffff8049bb95a0, is invalid.  aborting outstanding transactions
        Mar  9 08:11:09 jnl: disk3s2: write_journal_header: error writing the journal header!
        Mar  9 08:11:09 jnl: disk2s2: close: journal 0xffffff8049bb9c20, is invalid.  aborting outstanding transactions
        Mar  9 11:42:59 firefox (map: 0xffffff8031b5e780) triggered DYLD shared region unnest for map: 0xffffff8031b5e780, region 0x7fff89e00000->0x7fff8a000000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
        Mar 10 13:44:08 Limiting closed port RST response from 310 to 250 packets per second
        Mar 10 23:03:12 firefox (map: 0xffffff802a954780) triggered DYLD shared region unnest for map: 0xffffff802a954780, region 0x7fff90000000->0x7fff90200000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
        Mar 10 23:20:37 Limiting icmp unreach response from 302 to 250 packets per second
        Mar 11 08:39:04 jnl: disk4s3: write_journal_header: error writing the journal header!
        Mar 11 08:39:04 jnl: disk4s3: close: journal 0xffffff8023522c20, is invalid.  aborting outstanding transactions
        Mar 13 17:42:33 Limiting icmp unreach response from 428 to 250 packets per second
        Mar 13 17:42:34 Limiting icmp unreach response from 433 to 250 packets per second
    System log
        Mar 14 09:09:18 VTDecoderXPCService: GVA warning: failed to get a service for display id: 4128828
        Mar 14 09:09:18 VTDecoderXPCService: GVA warning: failed to get a service for display id: 4128829
        Mar 14 09:09:18 VTDecoderXPCService: GVA warning: failed to get a service for display id: 4128830
        Mar 14 09:09:18 VTDecoderXPCService: GVA warning: failed to get a service for display id: 4128831
        Mar 14 09:14:35 Adobe Photoshop Elements Editor: Error loading /Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library:  dlopen(/Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library, 262): no suitable image found.  Did find:
        /Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library: mach-o, but wrong architecture
        Mar 14 09:14:35 Adobe Photoshop Elements Editor: Error loading /Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library:  dlopen(/Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library, 262): no suitable image found.  Did find:
        /Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library: mach-o, but wrong architecture
        Mar 14 09:14:35 Adobe Photoshop Elements Editor: Error loading /Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library:  dlopen(/Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library, 262): no suitable image found.  Did find:
        /Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library: mach-o, but wrong architecture
        Mar 14 09:32:27 com.apple.sbd:  SOSCCThisDeviceIsInCircle SOSCCThisDeviceIsInCircle!! 7
        Mar 14 09:35:28 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 09:47:41 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "Installer" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 09:50:38 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 09:52:55 WindowServer: WSGetSurfaceInWindow : Invalid surface 583724228 for window 1898
        Mar 14 10:09:38 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "com.apple.appkit.xpc.openAndSav" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 10:09:38 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "com.apple.WebKit.Plugin.64" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 10:09:48 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "com.apple.appkit.xpc.openAndSav" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 10:09:49 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "com.apple.WebKit.Plugin.64" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 10:09:55 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "com.apple.appkit.xpc.openAndSav" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 10:10:08 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "com.apple.appkit.xpc.openAndSav" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 10:39:34 launchservicesd: Application App:"loginwindow" asn:0x0-1001 pid:69 refs=7 @ 0x7fd821519070 tried to be brought forward, but isn't in fPermittedFrontApps ( ( "LSApplication:0x0-0x29a29a pid=25591 "ScreenSaverEngine"")), so denying. : LASSession.cp #1521 SetFrontApplication() q=LSSession 100005/0x186a5 queue
        Mar 14 10:39:34 launchservicesd: Application App:"loginwindow" asn:0x0-1001 pid:69 refs=8 @ 0x7fd821519070 tried to be brought forward, but isn't in fPermittedFrontApps ( ( "LSApplication:0x0-0x29a29a pid=25591 "ScreenSaverEngine"")), so denying. : LASSession.cp #1521 SetFrontApplication() q=LSSession 100005/0x186a5 queue
        Mar 14 11:57:26 launchservicesd: Application App:"loginwindow" asn:0x0-1001 pid:69 refs=7 @ 0x7fd821519070 tried to be brought forward, but isn't in fPermittedFrontApps ( ( "LSApplication:0x0-0x29f29f pid=26088 "ScreenSaverEngine"")), so denying. : LASSession.cp #1521 SetFrontApplication() q=LSSession 100005/0x186a5 queue
        Mar 14 11:57:26 launchservicesd: Application App:"loginwindow" asn:0x0-1001 pid:69 refs=8 @ 0x7fd821519070 tried to be brought forward, but isn't in fPermittedFrontApps ( ( "LSApplication:0x0-0x29f29f pid=26088 "ScreenSaverEngine"")), so denying. : LASSession.cp #1521 SetFrontApplication() q=LSSession 100005/0x186a5 queue
    launchd log
        Mar  8 17:07:46 com.apple.xpc.launchd.domain.system: Session adoption is only allowed in user domains.
        Mar  8 17:08:18 com.apple.xpc.launchd.user.502.100006.Aqua: Could not import service from caller: caller = otherbsd.341, service = com.garmin.renu.service, error = 119: Service is disabled
        Mar  8 17:08:18 com.apple.xpc.launchd.user.502.100006.Aqua: Could not import service from caller: caller = otherbsd.341, service = com.apple.photostream-agent, error = 119: Service is disabled
        Mar  9 11:41:23 com.apple.xpc.launchd.domain.system: Session adoption is only allowed in user domains.
        Mar  9 11:41:51 com.apple.xpc.launchd.user.502.100006.Aqua: Could not import service from caller: caller = otherbsd.274, service = com.garmin.renu.service, error = 119: Service is disabled
        Mar  9 11:41:51 com.apple.xpc.launchd.user.502.100006.Aqua: Could not import service from caller: caller = otherbsd.274, service = com.apple.photostream-agent, error = 119: Service is disabled
        Mar 10 22:48:48 com.apple.xpc.launchd.domain.user.loginwindow.14802.4294967295: Could not import service from caller: caller = imklaunchagent.14852, service = com.parallels.inputmethod.ParallelsIM.5712, error = 134: Service cannot load in requested session
        Mar 10 22:48:58 com.apple.xpc.launchd.domain.user.loginwindow.14802.4294967295: Could not import service from caller: caller = WacomTabletDriv.14813, service = com.wacom.WacomTouchDriver.183780, error = 134: Service cannot load in requested session
        Mar 10 22:48:59 com.apple.xpc.launchd.domain.user.loginwindow.14802.4294967295: Could not import service from caller: caller = prl_deskctl_age.14812, service = com.parallels.mobile.prl_deskctl_agent.220416.UUID, error = 134: Service cannot load in requested session
        Mar 10 22:48:59 com.apple.xpc.launchd.domain.user.loginwindow.14802.4294967295: Could not import service from caller: caller = WacomTabletDriv.14813, service = com.wacom.TabletDriver.184064, error = 134: Service cannot load in requested session
        Mar 10 22:56:21 com.apple.xpc.launchd.domain.system: Session adoption is only allowed in user domains.
        Mar 10 22:59:02 com.apple.xpc.launchd.user.502.100005.Aqua: Could not import service from caller: caller = otherbsd.340, service = com.garmin.renu.service, error = 119: Service is disabled
        Mar 10 22:59:02 com.apple.xpc.launchd.user.502.100005.Aqua: Could not import service from caller: caller = otherbsd.340, service = com.apple.photostream-agent, error = 119: Service is disabled
    Loaded kernel extensions
        com.Logitech.Control Center.HID Driver (3.6.0)
        com.Logitech.Unifying.HID Driver (1.2.0)
        com.epson.driver.EPSONProjectorUDAudio (1.40)
        com.parallels.virtualsound (1.0.36 36)
    System services loaded
        com.adobe.adobeupdatedaemon
        com.adobe.fpsaud
        com.apple.watchdogd
        com.autodesk.backburner_manager
        com.autodesk.backburner_server
        com.autodesk.backburner_start
        com.google.keystone.daemon
        com.makerbot.conveyor.daemon
        com.oracle.java.Helper-Tool
        com.oracle.java.JavaUpdateHelper
        com.parallels.mobile.dispatcher.launchdaemon
        com.parallels.mobile.kextloader.launchdaemon
        org.macosforge.xquartz.privileged_startx
    System services disabled
        com.apple.security.FDERecoveryAgent
        com.apple.mtmd
        com.apple.mrt
        com.apple.mtmfs
    Login services loaded
        com.GoPro.GoPro-Importer
        com.Logitech.Control Center.Daemon
        com.adobe.AAM.Scheduler-1.0
        com.adobe.ARM.UUID
        com.adobe.ARM.UUID
        com.adobe.ARM.UUID
        com.adobe.AdobeCreativeCloud
        com.apple.Safari
        - status: 78
        com.apple.mrt.uiagent
        com.citrixonline.GoToMeeting.G2MUpdate
        com.divx.dms.agent
        com.divx.update.agent
        com.google.keystone.system.agent
        com.kodak.BonjourAgent
        com.kodak.KODAK AiO Firmware Updater
        com.kodak.KODAK AiO Software Updater
        com.oracle.java.Java-Updater
        com.parallels.mobile.prl_deskctl_agent.launchagent
        com.parallels.mobile.startgui.launchagent
        com.valvesoftware.steamclean
        com.wacom.wacomtablet
        gldrvmond
        org.macosforge.xquartz.startx
    Global login items
        /Applications/USB Display/USB Display.app/Contents/Resources/USB Display Agent.app
        /Applications/USB Display/USB Display.app/Contents/Resources/USB Display Agent.app
    User login items
        Google Drive
        - /Applications/Google Drive.app
        USB Display Agent
        - /Applications/USB Display/USB Display.app/Contents/Resources/USB Display Agent.app
        USB Display Agent
        - /Applications/USB Display/USB Display.app/Contents/Resources/USB Display Agent.app
    User crontab
        #SqzS VERSION = 1.0.0
        #SYMANTEC SCHEDULER CRON ENTRIES.  THESE ENTRIES ARE AUTOMATICALLY GENERATED
        #PLEASE DO NOT EDIT.
        # Enc=1 Name="Update Virus Protection"  EvType1=1 EvType2=0 Sched=2
        0 8 * * 5 "/Library/Application Support/Symantec/Scheduler/SymSecondaryLaunch.app/Contents/schedLauncher"  1 "/Applications/Symantec Solutions/LiveUpdate.app/Contents/MacOS/LiveUpdate" "    "  "oapp"  "aevt"  "exAG" "-update LUdf"
        # Enc=1 Name="My AntiVirus Scan Task"  EvType1=2 EvType2=0 Sched=2
        #0 9 * * 6 "/Library/Application Support/Symantec/Scheduler/SymSecondaryLaunch.app/Contents/schedLauncher" -n  2 "/Library/Application Support/Symantec/AntiVirus/ScanNotification.app/Contents/scheduledScanner" "    "  "NVsi"  "SCae"  "path" '/' "kydo" "niCE" "long" 0
        # Enc=1 Name="My Product Update Task"  EvType1=1 EvType2=0 Sched=3
        0 8 * * * "/Library/Application Support/Symantec/Scheduler/SymSecondaryLaunch.app/Contents/schedLauncher"  3 "/Applications/Symantec Solutions/LiveUpdate.app/Contents/MacOS/LiveUpdate" "    "  "oapp"  "aevt"  "exAG" "-update LUlu"
        #SqzS END SYMANTEC CRON ENTRIES
    Safari extensions
        Open in Internet Explorer
        - com.parallels.openinie
    Widgets
        TimeCalc
        eCalc_Scientific
    iCloud errors
        bird 137
        cloudd 18
        storedownloadd 2
        CallHistorySyncHelper 2
    Continuity errors
        lsuseractivityd 21
        sharingd 11
    Restricted files: 10847
    Lockfiles: 19
    High file counts
        Desktop: 84
    Accessibility
        Keyboard Zoom: On
        Scroll Zoom: On
    Contents of /Library/LaunchAgents/com.canon.MFManager.plist
        - mod date: May 22 05:23:32 2012
        - checksum: 290641261
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.canon.MFManager</string>
        <key>Program</key>
        <string>/Applications/Canon Utilities/ImageBrowser EX/ExtApp/MFManager.app/Contents/MacOS/MFManager</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Canon Utilities/ImageBrowser EX/ExtApp/MFManager.app/Contents/MacOS/MFManager</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.divx.dms.agent.plist
        - mod date: Nov 17 02:11:48 2014
        - checksum: 637650676
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.divx.dms.agent</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/DivX/DivXMediaServer.app/Contents/MacOS/DivXMediaServer</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.divx.update.agent.plist
        - mod date: May 19 16:24:29 2014
        - checksum: 3867571547
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.divx.update.agent</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/DivX/DivXUpdate.app/Contents/MacOS/DivXUpdate</string>
        <string>/silent</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>10800</integer>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.kodak.BonjourAgent.plist
        - mod date: Sep 21 01:39:00 2012
        - checksum: 2625351456
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Kodak Version</key>
        <string>7.1.6.10</string>
        <key>Label</key>
        <string>com.kodak.BonjourAgent</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Printers/Kodak/AiO_Printers/KodakAiOBonjourAgent.app/Contents/ MacOS/KodakAiOBonjourAgent</string>
        </array>
        <key>ServiceIPC</key>
        <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.oracle.java.Java-Updater.plist
        - mod date: Feb 15 11:22:20 2014
        - checksum: 2857777334
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.oracle.java.Java-Updater</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Resources/Java Updater.app/Contents/MacOS/Java Updater</string>
        <string>-bgcheck</string>
        </array>
        <key>StandardErrorPath</key>
        <string>/dev/null</string>
        <key>StandardOutPath</key>
        <string>/dev/null</string>
        <key>StartCalendarInterval</key>
        <dict>
        <key>Hour</key>
        <integer>71</integer>
        <key>Minute</key>
        <integer>54</integer>
        <key>Weekday</key>
        <integer>5</integer>
        </dict>
        </dict>
        ...and 1 more line(s)
    Contents of /Library/LaunchAgents/com.parallels.mobile.prl_deskctl_agent.launchagent.plist
        - mod date: Feb 24 10:45:51 2015
        - checksum: 1795713191
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>EnableTransactions</key>
        <true/>
        <key>KeepAlive</key>
        <dict>
        <key>PathState</key>
        <dict>
        <key>/etc/com.parallels.mobile.prl_deskctl_agent.launchd</key>
        <true/>
        </dict>
        </dict>
        <key>Label</key>
        <string>com.parallels.mobile.prl_deskctl_agent.launchagent</string>
        <key>LimitLoadToSessionType</key>
        <array>
        <string>Aqua</string>
        <string>LoginWindow</string>
        </array>
        <key>Program</key>
        <string>/Applications/Parallels Access.app/Contents/MacOS/Parallels Access Agent.app/Contents/MacOS/prl_deskctl_agent</string>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.wacom.wacomtablet.plist
        - mod date: Oct 11 17:37:46 2013
        - checksum: 2972905917
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>EnvironmentVariables</key>
        <dict>
        <key>RUN_WITH_LAUNCHD</key>
        <string>1</string>
        </dict>
        <key>KeepAlive</key>
        <dict>
        <key>SuccessfulExit</key>
        <true/>
        </dict>
        <key>Label</key>
        <string>com.wacom.wacomtablet</string>
        <key>LimitLoadToSessionType</key>
        <array>
        <string>Aqua</string>
        <string>LoginWindow</string>
        </array>
        <key>Program</key>
        <string>/Library/Application Support/Tablet/WacomTabletSpringboard</string>
        <key>RunAtLoad</key>
        <true/>
        ...and 4 more line(s)
    Contents of /Library/LaunchAgents/org.macosforge.xquartz.startx.plist
        - mod date: Aug 11 16:52:54 2014
        - checksum: 2451978492
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>org.macosforge.xquartz.startx</string>
        <key>ProgramArguments</key>
        <array>
        <string>/opt/X11/lib/X11/xinit/launchd_startx</string>
        <string>/opt/X11/bin/startx</string>
        <string>--</string>
        <string>/opt/X11/bin/Xquartz</string>
        </array>
        <key>Sockets</key>
        <dict>
        <key>org.macosforge.xquartz:0</key>
        <dict>
        <key>SecureSocketWithKey</key>
        <string>DISPLAY</string>
        </dict>
        </dict>
        <key>ServiceIPC</key>
        <true/>
        <key>EnableTransactions</key>
        <true/>
        ...and 2 more line(s)
    Contents of /Library/LaunchDaemons/com.autodesk.backburner_manager.plist
        - mod date: Feb  4 12:44:56 2013
        - checksum: 3394451584
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>KeepAlive</key>
        <dict>
        <key>PathState</key>
        <dict>
        <key>/usr/discreet/backburner/nrapi.conf</key>
        <true/>
        </dict>
        </dict>
        <key>Label</key>
        <string>com.autodesk.backburner_manager</string>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/discreet/backburner/backburnerManager</string>
        </array>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.autodesk.backburner_server.plist
        - mod date: Feb  4 12:44:56 2013
        - checksum: 2405015914
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>KeepAlive</key>
        <dict>
        <key>PathState</key>
        <dict>
        <key>/usr/discreet/backburner/nrapi.conf</key>
        <true/>
        </dict>
        </dict>
        <key>Label</key>
        <string>com.autodesk.backburner_server</string>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/discreet/backburner/backburnerServer</string>
        </array>
        <key>Nice</key>
        <integer>18</integer>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.autodesk.backburner_start.plist
        - mod date: Feb  4 12:44:56 2013
        - checksum: 597826117
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>RunAtLoad</key>
        <true/>
        <key>Label</key>
        <string>com.autodesk.backburner_start</string>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/discreet/backburner/backburner</string>
        <string>boot</string>
        </array>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.makerbot.conveyor.plist
        - mod date: Dec  2 11:47:26 2013
        - checksum: 147573995
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
            <key>Disabled</key>
            <false/>
            <key>Label</key>
            <string>com.makerbot.conveyor.daemon</string>
            <key>WorkingDirectory</key>
            <string>/Library/MakerBot</string>
            <key>ProgramArguments</key>
            <array>
                <string>/Library/MakerBot/conveyor-svc</string>
                <string>--config_file</string>
                <string>/Library/MakerBot/conveyor.conf</string>
            </array>
            <key>KeepAlive</key>
            <true/>
            <key>EnvironmentVariables</key>
            <dict/>
            <key>RunAtLoad</key>
            <true/>
            <key>UserName</key>
            <string>_conveyor</string>
        </dict>
        ...and 1 more line(s)
    Contents of /Library/LaunchDaemons/com.parallels.mobile.dispatcher.launchdaemon.plist
        - mod date: Feb 24 10:45:50 2015
        - checksum: 1994226602
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>ExitTimeOut</key>
        <integer>150</integer>
        <key>Label</key>
        <string>com.parallels.mobile.dispatcher.launchdaemon</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Parallels Access.app/Contents/MacOS/Parallels Access Dispatcher Service.app/Contents/MacOS/prl_pm_service</string>
        <string>-e</string>
        <string>--logfile</string>
        <string>/var/log/prl_disp_service_server.log</string>
        <string>--pidfile</string>
        <string>/var/run/prl_pm_service.pid</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.parallels.mobile.kextloader.launchdaemon.plist
        - mod date: Feb 24 10:45:51 2015
        - checksum: 3938648138
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>ExitTimeOut</key>
        <integer>150</integer>
        <key>Label</key>
        <string>com.parallels.mobile.kextloader.launchdaemon</string>
        <key>ProgramArguments</key>
        <array>
                <string>/sbin/kextload</string>
        <string>/Applications/Parallels Access.app/Contents/Library/Extensions/10.9/prl_virtual_sound.kext</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of /private/etc/ssh_config
        - mod date: Nov 19 19:03:16 2012
        - checksum: 1281775184
         Host *
           SendEnv LANG LC_*
        Host *
            XAuthLocation /opt/X11/bin/xauth
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: Jan 20 19:45:18 2011
        - checksum: 408149527
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Reader.app/Contents/MacOS/Updater/Adobe Reader Updater Helper.app/Contents/MacOS/Adobe Reader Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: Jan 29 16:03:43 2010
        - checksum: 2544798274
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Reader 8/Adobe Reader.app/Contents/MacOS/Updater/Adobe Reader Updater Helper.app/Contents/MacOS/Adobe Reader Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: Sep 11 18:20:35 2011
        - checksum: 2170691092
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Reader 9/Adobe Reader.app/Contents/MacOS/Updater/Adobe Reader Updater Helper.app/Contents/MacOS/Adobe Reader Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: Oct 19 12:47:52 2009
        - checksum: 10744905
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/MacOS/Updater/Adobe Acrobat Updater Helper.app/Contents/MacOS/Adobe Acrobat Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.apple.FolderActions.folders.plist
        - mod date: Jan 30 08:36:08 2015
        - checksum: 1189540302
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.apple.FolderActions.folders</string>
        <key>Program</key>
        <string>/usr/bin/osascript</string>
        <key>ProgramArguments</key>
        <array>
        <string>osascript</string>
        <string>-e</string>
        <string>tell application "Folder Actions Dispatcher" to tick</string>
        </array>
        <key>WatchPaths</key>
        <array/>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.apple.SafariBookmarksSyncer.plist
        - mod date: Dec 18 09:24:48 2008
        - checksum: 3493273791
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.apple.Safari</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Safari.app/Contents/SafariSyncClient.app/Contents/MacOS/S afariSyncClient</string>
        <string>--sync</string>
        <string>com.apple.Safari</string>
        <string>--entitynames</string>
        <string>com.apple.bookmarks.Bookmark,com.apple.bookmarks.Folder</string>
        </array>
        <key>RunAtLoad</key>
        <false/>
        <key>ThrottleInterval</key>
        <integer>60</integer>
        <key>WatchPaths</key>
        <array>
        <string>/Users/USER/Library/Safari/Bookmarks.plist</string>
        </array>
        </dict>
        ...and 1 more line(s)
    Contents of Library/LaunchAgents/com.citrixonline.GoToMeeting.G2MUpdate.plist
        - mod date: Dec 15 10:55:51 2014
        - checksum: 3001252484
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.citrixonline.GoToMeeting.G2MUpdate</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Users/USER/Library/Application Support/CitrixOnline/GoToMeeting/G2MUpdate</string>
        </array>
        <key>StartInterval</key>
        <integer>3660</integer>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.parallels.mobile.startgui.launchagent.plist
        - mod date: Mar 10 23:00:25 2015
        - checksum: 662430762
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>ExitTimeOut</key>
        <integer>150</integer>
        <key>Label</key>
        <string>com.parallels.mobile.startgui.launchagent</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Parallels Access.app/Contents/MacOS/prl_deskctl_wizard</string>
                <string>--autorun</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.valvesoftware.steamclean.plist
        - mod date: Mar  7 15:48:06 2014
        - checksum: 1327160095
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.valvesoftware.steamclean</string>
        <key>Program</key>
        <string>/Users/USER/Library/Application Support/Steam/SteamApps/steamclean</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Users/USER/Library/Application Support/Steam/SteamApps/steamclean</string>
        <string>Public</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>SteamContentPaths</key>
        <array>
        <string>/Users/USER/Library/Application Support/Steam/SteamApps</string>
        </array>
        <key>WatchPaths</key>
        <array>
        <string>/Applications/Steam.app</string>
        </array>
        </dict>
        </plist>
    App extensions
        com.google.GoogleDrive.FinderSyncAPIExtension
        com.parallels.desktop.console.Resource-Monitor
    Installations
        Topaz Detail2: 11/15/12, 2:58 PM
        Topaz DeNoise 5: 11/15/12, 2:57 PM
        Topaz Adjust 5: 1

  • My hard drive has 70.93 GB available, yet when i have more than one internet tab open, i have to force quit google chrome because 'there is no more available application memory'. How can I solve this? I have a 2009 macbook pro running on 10.6.8.

    My hard drive has 70.93 GB available, yet when i have more than one internet tab open, i have to force quit google chrome because 'there is no more available application memory'. How can I solve this? I have a 2009 macbook pro running on 10.6.8. I have tried updating to mavericks through the mac app store but after it downloading for a day i got an error message saying there was a problem with the download. The same thing happens if i try to update itunes or the mac app store. After research, i have also tried repairing disk permissions, but every time they do get repaired the 'repair' button still appears, i'm not sure if it's because it was unable to repair the initial problems or if it just keeps detecting new ones.

    2 GBs is a minimum in which you can do many things, but not concurrently. Be very careful to not install third-party add-ons, limit the number of applications you choose to enter in Login Items, run as few applications concurrently as you demand.
    I would consider adding more RAM to your computer. Your model supports 8 GBs, so I would install that.

  • Google Chrome and Skype Won't Start / Crashing After 10.9.2 Update

    I installed 10.9.2 today and am unable to start Google Chrome, Google Chrome Canary, or Skype. All 3 of them seem to be failling on the same piece of code ("FillInSystemVersionInfoFromString"). Has anyone else seen this issue? Could it be related to some other conflicting software? I don't see the issue with any other installed applications, and the same thing happens when I try starting the apps from a brand new user account. I also already tried to re-seat the 4 RAM sticks, no dice.
    Chrome crash report:
    Process:         Google Chrome [1781]
    Path:            /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
    Identifier:      com.google.Chrome
    Version:         33.0.1750.117 (1750.117)
    Code Type:       X86 (Native)
    Parent Process:  launchd [1575]
    Responsible:     Google Chrome [1781]
    User ID:         502
    Date/Time:       2014-03-03 15:51:26.020 -0500
    OS Version:      Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Anonymous UUID:  9A44A608-31C5-4660-44AD-1A225FD73339
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000fffc4085
    VM Regions Near 0xfffc4085:
        Stack                  00000000bf7ae000-00000000bffae000 [ 8192K] rw-/rwx SM=COW 
    -->
        Submap                 00000000ffff0000-00000000ffff1000 [    4K] r--/r-- SM=PRV  process-only VM submap
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_c.dylib                  0x9826111e __svfscanf_l + 3887
    1   libsystem_c.dylib                  0x982693b2 vsscanf_l + 952
    2   libsystem_c.dylib                  0x9825a3ec sscanf_l + 41
    3   com.apple.HIServices               0x91d1a78d FillInSystemVersionInfoFromString + 183
    4   com.apple.HIServices               0x91d193c8 _RegisterApplication + 5582
    5   com.apple.HIServices               0x91d17df3 INIT_Processes + 65
    6   com.apple.HIServices               0x91d3d15c ProcessInformationCopyDictionary + 173
    7   com.google.Chrome.framework        0x00843750 0x5a000 + 8296272
    8   com.google.Chrome.framework        0x001be735 0x5a000 + 1460021
    9   com.google.Chrome.framework        0x02faf949 0x5a000 + 49633609
    10  com.google.Chrome.framework        0x02fb513c 0x5a000 + 49656124
    11  com.google.Chrome.framework        0x02faf32a 0x5a000 + 49632042
    12  com.google.Chrome.framework        0x007de7b3 0x5a000 + 7882675
    13  com.google.Chrome.framework        0x007df25f 0x5a000 + 7885407
    14  com.google.Chrome.framework        0x007de620 0x5a000 + 7882272
    15  com.google.Chrome.framework        0x0005cc59 ChromeMain + 41
    16  com.google.Chrome                  0x00053f78 main + 24
    17  com.google.Chrome                  0x00053f55 0x53000 + 3925
    Skype crash report:
    Process:         Skype [1943]
    Path:            /Applications/Skype.app/Contents/MacOS/Skype
    Identifier:      com.skype.skype
    Version:         6.12 (6.12.0.438)
    Code Type:       X86 (Native)
    Parent Process:  launchd [1575]
    Responsible:     Skype [1943]
    User ID:         502
    Date/Time:       2014-03-03 16:07:22.271 -0500
    OS Version:      Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Anonymous UUID:  9A44A608-31C5-4660-44AD-1A225FD73339
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000fffc4085
    VM Regions Near 0xfffc4085:
        __LINKEDIT             00000000d0006000-00000000d0008000 [    8K] r--/rwx SM=COW  /Applications/Skype.app/Contents/Frameworks/Skype.framework/Versions/A/Skype
    -->
        Submap                 00000000ffff0000-00000000ffff1000 [    4K] r--/r-- SM=PRV  process-only VM submap
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_c.dylib                  0x9826111e __svfscanf_l + 3887
    1   libsystem_c.dylib                  0x982693b2 vsscanf_l + 952
    2   libsystem_c.dylib                  0x9825a3ec sscanf_l + 41
    3   com.apple.HIServices               0x91d1a78d FillInSystemVersionInfoFromString + 183
    4   com.apple.HIServices               0x91d193c8 _RegisterApplication + 5582
    5   com.apple.HIServices               0x91d17df3 INIT_Processes + 65
    6   com.apple.HIServices               0x91d17d8e GetCurrentProcess + 29
    7   com.apple.HIToolbox                0x90210218 MenuBarInstance::GetAggregateUIMode(unsigned long*, unsigned long*) + 40
    8   com.apple.HIToolbox                0x9000fb0f MenuBarInstance::IsVisible() + 49
    9   com.apple.HIToolbox                0x9000f918 IsMenuBarVisible + 19
    10  com.apple.AppKit                   0x9ae6c506 _NSInitializeAppContext + 62
    11  com.apple.AppKit                   0x9ae6b6ab -[NSApplication init] + 746
    12  com.apple.AppKit                   0x9ae6b1da +[NSApplication sharedApplication] + 153
    13  com.skype.skype                    0x0000fff4 0x1000 + 61428
    14  com.skype.skype                    0x000035d5 0x1000 + 9685

    Here is my etrecheck output as well:
    Hardware Information:
        iMac (27-inch, Late 2012)
        iMac - model: iMac13,2
        1 3.4 GHz Intel Core i7 CPU: 4 cores
        32 GB RAM
    Video Information:
        NVIDIA GeForce GTX 680MX - VRAM: 2048 MB
    System Software:
        OS X 10.9.2 (13C64) - Uptime: 0 days 1:35:4
    Disk Information:
        APPLE HDD ST3000DM001 disk1 : (3 TB)
            EFI (disk1s1) <not mounted>: 209.7 MB
            disk1s2 (disk1s2) <not mounted>: 3 TB
            Recovery HD (disk1s3) <not mounted>: 650 MB
        APPLE SSD SM128E disk0 : (121.33 GB)
            EFI (disk0s1) <not mounted>: 209.7 MB
            disk0s2 (disk0s2) <not mounted>: 120.99 GB
            Boot OS X (disk0s3) <not mounted>: 134.2 MB
    USB Information:
        Apple Inc. FaceTime HD Camera (Built-in)
        FiiO FiiO USB DAC-E17
        Razer Razer DeathAdder
        Apple Inc. MacBook Air SuperDrive
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
    FireWire Information:
    Thunderbolt Information:
        Apple Inc. thunderbolt_bus
    Kernel Extensions:
        org.virtualbox.kext.VBoxDrv    (4.3.2)
        org.virtualbox.kext.VBoxUSB    (4.3.2)
        org.virtualbox.kext.VBoxNetFlt    (4.3.2)
        org.virtualbox.kext.VBoxNetAdp    (4.3.2)
    Launch Daemons:
        [System]    com.livescribe.PenCommService.plist 3rd-Party support link
        [System]    com.microsoft.office.licensing.helper.plist 3rd-Party support link
        [System]    com.oracle.java.Helper-Tool.plist 3rd-Party support link
        [System]    org.virtualbox.startup.plist 3rd-Party support link
    Launch Agents:
        [System]    com.oracle.java.Java-Updater.plist 3rd-Party support link
    User Login Items:
        None
    Internet Plug-ins:
        QuickTime Plugin: Version: 7.7.3
        Default Browser: Version: 537 - SDK 10.9
        o1dbrowserplugin: Version: 5.1.5.17733 3rd-Party support link
        SharePointBrowserPlugin: Version: 14.3.9 - SDK 10.6 3rd-Party support link
        npgtpo3dautoplugin: Version: 0.1.44.29 - SDK 10.5 3rd-Party support link
        googletalkbrowserplugin: Version: 5.1.5.17733 3rd-Party support link
        JavaAppletPlugin: Version: Java 7 Update 51 3rd-Party support link
    Audio Plug-ins:
        BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
        AirPlay: Version: 2.0 - SDK 10.9
        AppleAVBAudio: Version: 203.2 - SDK 10.9
        iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
        Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes:
        Java  3rd-Party support link
    Old Applications:
        Solver:    Version: 1.0 - SDK 10.5 3rd-Party support link
            /Applications/Microsoft Office 2011/Office/Add-Ins/Solver.app
        /Users/dkerrigan/Library/Application Support/WebEx Folder/1324
            convertpdf:    Version: 1.2 - SDK 10.5 3rd-Party support link
            Cisco WebEx Meeting Center:    Version: 1301.05.2809.0 - SDK 10.5 3rd-Party support link
            asannotation2:    Version: 1206.25.2804.0 - SDK 10.5 3rd-Party support link
            atmsupload:    Version: 1209.12.2806.0 - SDK 10.5 3rd-Party support link
        /Users/dkerrigan/Library/Application Support/WebEx Folder/1326
            Cisco WebEx Event Center:    Version: 1209.12.2806.0 - SDK 10.5 3rd-Party support link
            convertpdf:    Version: 1.2 - SDK 10.5 3rd-Party support link
            asannotation2:    Version: 1206.25.2804.0 - SDK 10.5 3rd-Party support link
        Audacity:    Version: 2.0.5.0 - SDK 10.4 3rd-Party support link
            /Applications/Audacity/Audacity.app
        /Applications/Microsoft Office 2011/Office
            Microsoft Graph:    Version: 14.3.9 - SDK 10.5 3rd-Party support link
            Microsoft Database Utility:    Version: 14.3.9 - SDK 10.5 3rd-Party support link
            Microsoft Office Reminders:    Version: 14.3.9 - SDK 10.5 3rd-Party support link
            Microsoft Upload Center:    Version: 14.3.9 - SDK 10.5 3rd-Party support link
            My Day:    Version: 14.3.9 - SDK 10.5 3rd-Party support link
            SyncServicesAgent:    Version: 14.3.9 - SDK 10.5 3rd-Party support link
            Open XML for Excel:    Version: 14.3.9 - SDK 10.5 3rd-Party support link
            Microsoft Alerts Daemon:    Version: 14.3.9 - SDK 10.5 3rd-Party support link
            Microsoft Database Daemon:    Version: 14.3.9 - SDK 10.5 3rd-Party support link
            Microsoft Chart Converter:    Version: 14.3.9 - SDK 10.5 3rd-Party support link
            Microsoft Clip Gallery:    Version: 14.3.9 - SDK 10.5 3rd-Party support link
        /Applications/Microsoft Office 2011
            Microsoft PowerPoint:    Version: 14.3.9 - SDK 10.5 3rd-Party support link
            Microsoft Excel:    Version: 14.3.9 - SDK 10.5 3rd-Party support link
            Microsoft Outlook:    Version: 14.3.9 - SDK 10.5 3rd-Party support link
            Microsoft Word:    Version: 14.3.9 - SDK 10.5 3rd-Party support link
            Microsoft Document Connection:    Version: 14.3.9 - SDK 10.5 3rd-Party support link
        Microsoft Language Register:    Version: 14.3.9 - SDK 10.5 3rd-Party support link
            /Applications/Microsoft Office 2011/Additional Tools/Microsoft Language Register/Microsoft Language Register.app
        Microsoft AutoUpdate:    Version: 2.3.6 - SDK 10.4 3rd-Party support link
            /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app
        XLD:    Version: 20131102 - SDK 10.4 3rd-Party support link
        Livescribe Desktop:    Version: 2.8.3 - SDK 10.5 3rd-Party support link
    Time Machine:
        Time Machine not configured!
    Top Processes by CPU:
            19%    firefox
             6%    WindowServer
             2%    EtreCheck
             0%    mdworker
             0%    coreservicesd
    Top Processes by Memory:
        492 MB    firefox
        328 MB    mds_stores
        164 MB    WindowServer
        164 MB    com.apple.IconServicesAgent
        131 MB    softwareupdated
    Virtual Memory Information:
        26.01 GB    Free RAM
        2.57 GB    Active RAM
        1.69 GB    Inactive RAM
        1.73 GB    Wired RAM
        1.38 GB    Page-ins
        0 B    Page-outs

  • Google Chrome delayed cursor and not able to select text well (solved)

    I noticed within the last week, google-chrome 24.0.1312.56-1 (https://aur.archlinux.org/packages/google-chrome/) from AUR, isn't able to select text at all or very well (unless I use alt-a) and the cursor isn't updating very quickly when I mouse over links or text. Sometimes it gets stuck with the finger point when not over a link. Another example, when I hit Submit for this post the text editing I beam was the cursor was shown over the button. The problem doesn't seem to happen at all with proprietary NVIDIA drivers but does occur when using nouveau or VirtualBox video drivers. Also, the problem appears to be Chrome specific from what I can tell.
    I tried restoring all settings to default and disabling all accelerations and uninstalling extensions but it still persists. Any other suggestions or flags I can change?
    Running 64-bit, other package info:
    * linux-ck 3.7.4-1
    * libgl 9.0.2-1
    * nouveau-dri 9.0.2-1
    * xf86-video-nouveau 1.0.6-1
    * virtualbox-ck-guest-modules 4.2.6-5
    Thanks in advance for any help,
    Last edited by jskier (2013-01-29 19:38:21)

    EDIT: GL errors posted earlier not related, nouveau doesn't have them.
    Problem also exists with Chromium and dev Google-Chrome version.
    SOLVED:
    Had turned off tooltips in gtkrc file, commenting it out and it is fixed.
    Last edited by jskier (2013-01-29 19:40:07)

Maybe you are looking for

  • ISE 1.1.1 (Fallback to local Vlan if radius server is found to be dead) not working

    We have configured following commands on switch to fallback to local Vlan if both radius server (policy persona's) is found dead. For test purpose we shutdown both servers (policy persona's) but fallback didn't work. We have 3750 switch running image

  • Plasma TV Cracked!

    I have a 42" Dynex plasma TV that I LOVE,  or at least I did.  One of my kids hit it with a toy, there was a flash and loud pop, then black.  There is now a crack in one corner (seems to be behind the glass?)  Can this be repaired?  If so how does th

  • Possible to retrieve all contents of Time Machine external HD?

    I am thinking of using a new external HD to back up my present files/folders.  2 questions - 1] To do this on my early 2008 i Mac with it's limited usb ports [limited as I have almost all in use at present], I think I would have to disconnect my exte

  • Cue Point Names

    How do I listen/respond to a specifice cue point by name in AS3? I have this listener which runs a function as soon as a cue point is reached, but I can't figure out how to run different functions for different cue points. center_flv.addEventListener

  • How to do random selection?

    Hi I have a flash player which reads from an xml playlist. It works fine but it plays the songs according to the order in the playlist. I want it to continously shuffle to select randomly. This is the script: I added the ones with stars to create the