Airport broken on last update

On the last "security update" to OSX 10.3.9 my airport stopped working. When I try to connect nothing happens, and a process "SystemUIServer" is hung in the monitor.
I have tried resetting the connection point and changing the WEP password. I have no problem accessing the router with the wired connection as normal.
If I use "Assist me..." I can select the network, but it tells me the password is wrong, even though I can copy it straight of the router's WEP settings.
Wireless card firmware version is 404.2
The router is a Netgear DG834G, firmware version V1.05.00
Anyone have the same problem or have any idea what might be the problem?

Update:
It now connects, but drops out after a while. I changed nothing, the only discernable difference is that there are no other networks detected now (I live in an apartment and can frequently pick up several).
Maybe the re-authrntication with lots of interference was what did it.

Similar Messages

  • DNS Server issues on Airport Extreme since last update

    Since the last update to my Airport Extreme, my windows 7PC's show connected to internet but do not connect due to DNS server. Windows 8 computer works fine as does Mac. Mac is the only wireless computer I have mentioned. The wireless router is segregated so it should have no effect on anything on my network but it somehow does..... can anyone explain?

    Thanks for your reply.
    I tried everything I found in the web, but nothing worked. I even cleared the HDD and reinstalled the OS (and resetted SMC and PRAM), but now there doesn't seem to be an AirPort - as if it never had exist.
    Until that I have been very happy with the decision to switch to Mac instead of using a Windows PC, but that casts a cloud on it (in the last 10 years none of my windows PC's ever had a hardware defect).
    Fortunately the MacBook is half an year old, so I will bring it back to the seller hoping the best.

  • T510 ThinkVanta​ge button and updates software broken after last update 12/1/2010

    After last updates I ran on Dec 1, 2010, the ThinkVantage button does nothing.  Running the updates and drivers from the control panel flashes the GUI splash screen then closes.
    Lenovo really screwed this one up!  Now you can't even get the updates to work to fix other issues.
    In the event logs I show PC-Doctor errors
    The description for Event ID 1 from source PC-Doctor cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event:
    (1972) Asapi: (13:00:09:5300)(1972) DEFECT.LOCALIZATION - Error -- Missing String: scriptlets : button1 locale: PCDLocale: language = en, customer = lenovo, variant = ltt
    Log Name:      Application
    Source:        ThinkVantage Registry Monitor Service
    Date:          12/1/2010 12:29:40 PM
    Event ID:      0
    Task Category: None
    Level:         Information
    Keywords:      Classic
    User:          N/A
    Computer:      jmw-77
    Description:
    The description for Event ID 0 from source ThinkVantage Registry Monitor Service cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event:
    Service started
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/ev​ent">
      <System>
        <Provider Name="ThinkVantage Registry Monitor Service" />
        <EventID Qualifiers="0">0</EventID>
        <Level>4</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2010-12-01T17:29:40.000000000Z" />
        <EventRecordID>42737</EventRecordID>
        <Channel>Application</Channel>
        <Computer>jmw-77</Computer>
        <Security />
      </System>
      <EventData>
        <Data>Service started</Data>
      </EventData>
    </Event>

    Hi and welcome to the forum!
    Try uninstalling the PC-Doctor / Lenovo ThinkVantage Toolbox and System Update from Add/Remove programs, do a mandatory restart, thereafter download and run CCleaner, scan for registry issues with it and fix them. Subsequently, manually install both Toolbox and System Update.
    Keep us posted with the results.
    Maliha (I don't work for lenovo)
    ThinkPads:- T400[Win 7], T60[Win 7], IBM 240[Win XP]
    IdeaPad: U350
    Apple:- Macbook Air [Snow Leopard]
    Did someone help you today? Compliment them with a Kudos!
    Was your question answered today? Mark it as an Accepted Solution! 
      Lenovo Deutsche Community     Lenovo Comunidad en Español 
    Visit my YouTube Channel

  • Firefox is broken since last update...any plans on fixing it, or do I go back to using Internet Explorer!!!

    Since the last update, firefox is failing to operate correctly. For example javascript embeded inside of tables fails completely, also more and more web sites are now, no longer accessable with Firefox!

    The details aside suggest you are using Firefox3.6.12 if so that is not secure, it should be Firefox 3.6.27.
    There is a possibility some sites will still expect Firerfox 3.6 but that will not be supported for much longer, the current Release is Firefox 10.0.2
    More Information
    ...All I can say is that it is a Government web site that involves money!!!
    If you are using a Government financial site why not consult their IT department for advice on what browsers are secure and supported. If problems persist please post back once you have upgraded to a secure version of Firefox, and say what problems you get on publicly available sites.

  • [workaround] xdotool broken with last update?

    Hi all,
    I'm using the following script bound to a key via openbox to have a tilda-like dropdown terminal with urxvt:
    #!/bin/bash
    wid=$(xdotool search --name urxvtq | grep -m 1 '' )
    if [ -z "$wid" ]; then
    /home/seiichiro/.bin/urxvtc -name urxvtq -geometry 110x40
    wid=$(xdotool search --name urxvtq)
    xdotool windowfocus $wid
    xdotool key Control_L+l
    else
    if [ -z "$(xdotool search --onlyvisible --name urxvtq 2>/dev/null)" ]; then
    xdotool windowmap $wid
    xdotool windowfocus $wid
    else
    xdotool windowunmap $wid
    fi
    fi
    unfortunalety after the upgrade to the newest xdotool-version (1.20100302.2713-1) it is not working anymore. Problem seems to be that the xdotool search with --onlyvisible now returns the windowids regardless of visibility, and so the script always "thinks" the terminal is already visible. Does anyone have this problem too and maybe a fix for it?
    TIA
    seiichiro
    Update: friend of mine did find the following workaround:
    #!/bin/bash
    wid=$(xdotool search --name urxvtq | grep -m 1 '')
    if [ -z "$wid" ]; then
    /home/seiichiro/.bin/urxvtc -name urxvtq -geometry 110x40
    wid=$(xdotool search --name urxvtq)
    xdotool windowfocus $wid
    xdotool key Control_L+l
    else
    # if [ -z "$(xdotool search --onlyvisible --maxdepth 1 --name urxvtq 2>/dev/null)" ]; then
    if [ -z "$(xprop -id $wid | grep 'window state: Normal')" ]; then
    xdotool windowmap $wid
    xdotool windowfocus $wid
    else
    xdotool windowunmap $wid
    fi
    fi
    still fact remains that xdotool seems to be broken
    Last edited by seiichiro0185 (2010-03-05 08:21:09)

    v43 wrote:
    i'm sorry to bring up this old thread, but i'm really curious on how this works.
    what's the purpose of the line:
    xdotool key Control_L+l
    and what about the other file?
    #!/bin/sh
    urxvtc "$@"
    if [ $? -eq 2 ]; then
    urxvtd -q -o -f
    urxvtc "$@"
    fi
    should i use this even if i'm already running the urxvtd daemon?
    First: don't hijack threads.
    Second: don't ask questions without doing your own research. Read the man page, and the urxvt homepage/wiki.

  • Airport broken by latest update

    Hi,
    A few hours ago I installed the recent airport update pushed out by Apple.
    Now my late 2008 Macbook Pro wont stay connected to my 1TB timecapsule and appears to "hang". Prior to the update everything was fine.
    At first I suspected the timecapsule but other devices remain connected to it fine and testing after a backup failed showed that my iPhone could connect to the timecapsule and browse without any problem.
    To further test the issue I connected the MBP to the timecapsule by an ethernet cable. Everything is fine again without restarting either the aiport utility or the timecapsule.
    Leaving the timecapsule connected via ethernet my backups work fine. If I try and use wireless again however it times out after a few minutes.
    As mentioned before there was no issue prior to the update. My Aiport utility shows version 5.4.1.
    Is there a way to roll back this update?
    Cj

    My Mac Mini G4 stopped connecting to my Time Capsule after the most recent update.
    How I wish I had not updated after all. I use my Mac Mini as a home theater system and buy movies and shows from iTunes. Guess I'll be using my cable's on demand for a while instead.
    Details:
    Mac Mini G4 1.5 ghz.
    Leopard - latest update.
    Two other Mac laptops haven no problems whatsoever:
    Macbook Pro 2.4ghz
    Macook (original white, slow)
    The Macbook is in the room almost next to the Time Capsule. No issues.
    The Macbook Pro is in the room above, no issues.
    Signal strength is very strong.
    The Mac Mini -- it has trouble connecting to the network.
    It is in the room next to the Time Capsule. It is under the TV in a media cabinet.
    Two external considerations may play a part: heat and bad grounding.
    In the cabinet is a Wii and the digital cable receiver. Both get hot, as well as the Mac Mini and it's external hard drive.
    Also, the downstairs has problems with electrical line noise, possibly due to poor grounding somewhere. I have been unable to fully isolate this issue, and the electricians who the landlord's management company have sent have seemed to not care (or just don't know what grounding is, but I'll give them that benefit of a doubt).
    I am a bit concerned the feedback is slowly destroying my electronics, but I've been running that risk.
    Both the Mac Mini and Time Capsule are on lines with this noise.
    Still, I am not sure it is either. Time Capsule performs well with the two laptops.
    The Mac Mini had no problems before the update.
    I will try removing it from the cabinet and trying it that way later.
    I have tried to change my Time Capsule settings, but to no avail. The only thing I have not done? Open it up, or change it to regular WPA. Going to do that after this post.
    If I turn off the Mac Mini's airport then try and reconnect, Airport time's out.
    Notice, it is reaching the time capsule, because if I enter the incorrect password I do get an incorrect password response.
    After restarting the Mac Mini after being away for the day (and it being off), it immediately connected to the Time Capsule and Google loaded.
    Immediately after Google loaded, the internet stopped working.
    Traceroute could not find Google, and there was high latency at the first hop: (my Time Capsule router).
    Pinging the Time Capsule resulted in a bizarre response: latency in the tune of 50000ms. This fluctuated from about 20000ms to 50000ms, then dropped to 6-12 ms, then back up to 20k to 50k again, then down to 1-10k, then to 6-12ms, then back up to 20k-50k, then 800-900k ms latency, then it stopped being able to resolve the host, then connection was lost.
    Something is wrong with my wireless connection, and I can not sort out if it is the Time Capsule or the Mac Mini, or both.
    Time Capsule appears to work for both laptops, but the Mac Mini ping results are interesting.
    The only change made was the recent Mac Mini update. (Which, btw, the Macbook Pro at least has made as well, yet is still working.)
    Will be logging off to try and change the wireless protection to open, and then WPA, to see if any changes result.
    One last thing: I live in an area with about 60 or so townhomes in my immediate area, and a long list of other wireless hotspots (mostly secure). I also have a US Time Capsule that is being used in Great Britain. I don't know if this is contributing to the problems (locale does not have a GB option, WTG Apple!)
    Here goes opening the hot spot . . .
    Sincerely,
    John

  • G5, broken from last update, will not boot Leopard Disc

    Hello, I'd appreciate any help.
    This is in regards to a Dual 2.0 Ghz G5 Powermac purchased in May of 2005.
    After updating to 10.5.5, the Powermac stopped loading Leopard. The standard gray screen with the apple would turn to a blue screen, then, unlike anything its ever done before, would then change into a lighter blue blank screen, and remain blank.
    I assume a reinstall of Leopard would solve the situation, but when I hold down 'c' and try to boot on the disc, it still goes into that light blue screen (still boots from the HDD).
    Instead of the standard apple USB keyboard, I use a third party RF wireless keyboard. Would this prevent me from booting into the Leopard repair disc?
    I don't have a USB keyboard on me, I'd have to borrow/buy one.
    Anyone else have an issue like this before? The machine has been in heavy use for over three years now and it has never given me any problems.

    Hi JohnnyO;
    I hope you have a backup because it sounds very much like you might have lost your disk.
    It is possible that your system has managed to get itself into a state where it is not capable of reading the wireless keyboard any longer. Beg, borrow or stealing one would be good idea to see if you can get any further.
    If you are able to boot it from the install media that came with it, I would suggest you start with AHT to check out your hardware first.
    Let us know what you find.
    Allan

  • ITunes no longer opening after last update.

    ITunes not opening after last update on my main user. Second user is fine however accesses different library.
    Computer freezes when attempting to open ITunes. Have also searched for the sync services file but is not located under reveal in folder or go to options.
    Apologies I am not the best tech savy person and have read other posts trying to solve the problem. Other posts asked for the following reports.
    Any assistance would be greatly appreciated - we are an apple household and this is effecting everything!
    Log List ITunes
    8/06/2014 2:39:28.757 pm com.apple.launchd.peruser.502[281]: (com.apple.iTunesHelper.27664[421]) Spawned and waiting for the debugger to attach before continuing...
    8/06/2014 8:51:05.999 pm com.apple.launchd.peruser.502[281]: (com.apple.iTunes.49488[3827]) Exited: Terminated: 15
    8/06/2014 9:04:40.000 pm kernel[0]: hfs: mounted iTunes on device disk3s2
    8/06/2014 9:04:40.513 pm mds[40]: (Normal) Volume: volume:0x7fd43483dc00 ********** Bootstrapped Creating a default store:1 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/iTunes
    8/06/2014 9:06:34.278 pm sudo[3918]:     root : TTY=unknown ; PWD=/private/tmp/PKInstallSandbox.yTVHam/Scripts/com.apple.pkg.iTunesX.tO4vG4 ; USER=mel ; COMMAND=./Tools/AlertAll.app/Contents/MacOS/AlertAll /
    8/06/2014 9:06:46.629 pm com.apple.launchd.peruser.502[281]: (com.apple.iTunesHelper.27664[421]) Exited with code: 1
    8/06/2014 9:06:49.536 pm iTunesHelper[240]: _SubscribeForMuxNotifications (thread 0x7fff7ef70310): USBMuxListenerCreate: Connection refused
    8/06/2014 9:06:49.536 pm iTunesHelper[240]: _SubscribeForMuxNotifications (thread 0x7fff7ef70310): USBMuxListenerCreate: Connection refused
    8/06/2014 9:08:05.643 pm iTunesHelper[4058]: _SubscribeForMuxNotifications (thread 0x7fff7ef70310): USBMuxListenerCreate: Connection refused
    8/06/2014 9:11:05.077 pm com.apple.launchd.peruser.502[281]: (com.apple.iTunes.49488[4118]) Exited: Terminated: 15
    I was unable to find anything starting with iTunes under User Diagnostic Reports however located several starting with CFPREFSD, this was the latest one
    Process:         cfprefsd [4137]
    Path:            /usr/sbin/cfprefsd
    Identifier:      cfprefsd
    Version:         855.16
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [281]
    Responsible:     cfprefsd [4137]
    User ID:         502
    Date/Time:       2014-06-08 21:11:04.973 +1000
    OS Version:      Mac OS X 10.9.3 (13D65)
    Report Version:  11
    Crashed Thread:  2  Dispatch queue: com.apple.root.default-priority
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: 0x000000000000000a, 0x000000010e0c3000
    VM Regions Near 0x10e0c3000:
        Dispatch continuations 000000010d800000-000000010e000000 [ 8192K] rw-/rwx SM=PRV 
    --> mapped file            000000010e083000-000000010e1be000 [ 1260K] r--/rwx SM=COW  /Users/USER/Library/Preferences/*/*.plist
        MALLOC_LARGE           000000010e1be000-000000010e2f9000 [ 1260K] rw-/rwx SM=PRV 
    Thread 0:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8f0bc662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff963fc421 _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff963fc136 _dispatch_mgr_thread + 52
    Thread 1:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x00007fff8f0bbcaa __sigsuspend_nocancel + 10
    1   libdispatch.dylib                       0x00007fff964047da _dispatch_sigsuspend + 21
    2   libdispatch.dylib                       0x00007fff964047c5 _dispatch_sig_thread + 45
    Thread 2 Crashed:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_platform.dylib                0x00007fff982c80de _platform_memmove$VARIANT$Nehalem + 254
    1   libxpc.dylib                            0x00007fff907cf81e xpc_data_create + 82
    2   com.apple.CoreFoundation                0x00007fff90641386 -[CFPDSource acceptMessage:] + 806
    3   com.apple.CoreFoundation                0x00007fff90648d67 __handle_synchronize_message_block_invoke + 215
    4   com.apple.CoreFoundation                0x00007fff9063fc1a __90+[CFPDSource withSourceForDomain:forRemoteClient:inContainer:user:byHost:managed:perform:]_b lock_invoke_2 + 42
    5   libdispatch.dylib                       0x00007fff963fd1bb _dispatch_call_block_and_release + 12
    6   libdispatch.dylib                       0x00007fff963fa28d _dispatch_client_callout + 8
    7   libdispatch.dylib                       0x00007fff963fc082 _dispatch_root_queue_drain + 326
    8   libdispatch.dylib                       0x00007fff963fd177 _dispatch_worker_thread2 + 40
    9   libsystem_pthread.dylib                 0x00007fff998cfef8 _pthread_wqthread + 314
    10  libsystem_pthread.dylib                 0x00007fff998d2fb9 start_wqthread + 13
    Thread 2 crashed with X86 Thread State (64-bit):
      rax: 0x000000010e1be040  rbx: 0x00007f9bb24043d0  rcx: 0x0000000000000010  rdx: 0x00000000000fa5fc
      rdi: 0x000000010e1fe010  rsi: 0x000000010e0c2fd0  rbp: 0x000000010d7294b0  rsp: 0x000000010d7294b0
       r8: 0x0000000000000003   r9: 0xfffffffef1e41fff  r10: 0x00007f9bb2404210  r11: 0x000000000013b040
      r12: 0x000000010e1be000  r13: 0x00007f9bb2504b40  r14: 0x000000010e083000  r15: 0x000000000013a60c
      rip: 0x00007fff982c80de  rfl: 0x0000000000010202  cr2: 0x000000010e0c3000
    Logical CPU:     1
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x10d5d9000 -        0x10d5d9fff  cfprefsd (855.16) <4342939E-DB15-3A1A-BCDE-6B3EF244CAAB> /usr/sbin/cfprefsd
        0x7fff6eedc000 -     0x7fff6ef0f817  dyld (239.4) <042C4CED-6FB2-3B1C-948B-CAF2EE3B9F7A> /usr/lib/dyld
        0x7fff8cc03000 -     0x7fff8cc2cff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
        0x7fff8ee44000 -     0x7fff8ee4bfff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8ef27000 -     0x7fff8ef2bff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff8f0a1000 -     0x7fff8f0a5ff7  libsystem_stats.dylib (93.90.3) <4E51D5B0-92A0-3D0D-B90E-495A1ED3E391> /usr/lib/system/libsystem_stats.dylib
        0x7fff8f0a6000 -     0x7fff8f0c2ff7  libsystem_kernel.dylib (2422.100.13) <498AEBD7-4194-3CF2-AA16-D5D03FFBD8C0> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8f626000 -     0x7fff8f637ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
        0x7fff8f638000 -     0x7fff8f686fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
        0x7fff8f879000 -     0x7fff8f894ff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
        0x7fff8fb06000 -     0x7fff8fb09ff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
        0x7fff8fb0a000 -     0x7fff8fb0bffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff8fb2e000 -     0x7fff8fb33ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
        0x7fff904b0000 -     0x7fff90695fff  com.apple.CoreFoundation (6.9 - 855.16) <A63E680E-E4B2-368B-8564-9DBE0D8DDB91> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff907cd000 -     0x7fff907f1fff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
        0x7fff90e2c000 -     0x7fff90e2dff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff912c0000 -     0x7fff912c1ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff928cb000 -     0x7fff928d5fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff9342b000 -     0x7fff9343cff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff935ac000 -     0x7fff935b3ff8  liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib
        0x7fff94021000 -     0x7fff94048ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff94904000 -     0x7fff9490bff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
        0x7fff94d40000 -     0x7fff94eedf27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
        0x7fff94eee000 -     0x7fff94ef3fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff94f28000 -     0x7fff94fb1ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
        0x7fff9510d000 -     0x7fff9510dff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
        0x7fff95121000 -     0x7fff95122fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff9551f000 -     0x7fff95546ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
        0x7fff957eb000 -     0x7fff959a3ffb  libicucore.A.dylib (511.32) <A7CE7DAD-D3AD-36A2-BE4F-25C5F21FADBB> /usr/lib/libicucore.A.dylib
        0x7fff95bf4000 -     0x7fff95bf6ff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff95c26000 -     0x7fff95c68ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
        0x7fff96057000 -     0x7fff9605ffff  libsystem_dnssd.dylib (522.90.2) <A0B7CF19-D9F2-33D4-8107-A62184C9066E> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff963f9000 -     0x7fff96413fff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
        0x7fff96414000 -     0x7fff9641dff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
        0x7fff96a20000 -     0x7fff96a21ff7  libSystem.B.dylib (1197.1.1) <E303F2F8-A8CF-3DF3-84B3-F2D0EE41CCF6> /usr/lib/libSystem.B.dylib
        0x7fff982c4000 -     0x7fff982caff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
        0x7fff99815000 -     0x7fff99867fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
        0x7fff998cd000 -     0x7fff998d4ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff9996e000 -     0x7fff9996fff7  libsystem_sandbox.dylib (278.11) <B46E4040-A8C6-3EBC-91F8-F1CB01106614> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff99c2c000 -     0x7fff99c5bfd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff9a11e000 -     0x7fff9a120ff3  libsystem_configuration.dylib (596.15) <4998CB6A-9D54-390A-9F57-5D1AC53C135C> /usr/lib/system/libsystem_configuration.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 6540
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=74.9M resident=13.6M(18%) swapped_out_or_unallocated=61.2M(82%)
    Writable regions: Total=45.8M written=480K(1%) resident=584K(1%) swapped_out=0K(0%) unallocated=45.2M(99%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    Dispatch continuations             8192K
    Kernel Alloc Once                     4K
    MALLOC                             28.4M
    MALLOC (admin)                       16K
    STACK GUARD                          12K
    Stack                              65.1M
    VM_ALLOCATE                          28K
    __DATA                             1080K
    __LINKEDIT                         66.2M
    __TEXT                             8872K
    __UNICODE                           544K
    mapped file                        1260K
    shared memory                         4K
    ===========                      =======
    TOTAL                             179.2M
    System Profile:
    Model: iMac12,2, BootROM IM121.0047.B1E, 4 processors, Intel Core i5, 3.1 GHz, 4 GB, SMC 1.72f2
    Graphics: AMD Radeon HD 6970M, AMD Radeon HD 6970M, PCIe, 1024 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x02FE, 0x45424A3230554638424353302D444A2D4620
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x02FE, 0x45424A3230554638424353302D444A2D4620
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x9A), Atheros 9380: 4.0.74.0-P2P
    Bluetooth: Version 4.2.4f1 13674, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: ST31000528AS, 1 TB
    Serial ATA Device: OPTIARC DVD RW AD-5690H, 277.5 MB
    USB Device: Hub
    USB Device: 1861
    USB Device: Internal Memory Card Reader
    USB Device: IR Receiver
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: iPhone
    USB Device: MFC-J6910DW
    USB Device: BRCM2046 Hub
    USB Device: Bluetooth USB Host Controller
    Thunderbolt Bus: iMac, Apple Inc., 25.1
    Also located,
    Diagnostic Messages
    Powerstats for:  iTunesHelper
      com.apple.iTunesHelper          11.2.2 (11.2.2)          <D9314C39-EAF4-37E6-B8D8-2731175CD7B2>          /Applications/iTunes.app/Contents/MacOS/iTunesHelper.app/Contents/MacOS/iT unesHelper
    Powerstats for:  iTunes

    ...now my computer updated it again. It opened, tried to collect information about the copyright, the an error message popped up saying that iTunes does not work correctly due to any mistake...
    Please help me!

  • Uninstall Airport extreme 2008-004 update and go back to previous version

    Hello
    This morning I installed the airport extreme 2008-004 update. Since then, I have not been able to access the internet when my VPN (Check Point) is active. I can access the internet if I "stop" the VPN. I use a Netgear WNR834M router and I have not had problems between this router and the AirBook before. Even when I am unable to access the internet, it appears that I am connected to the wireless network. I have stopped and started modem, router, and Mac several times, to no avail.
    I had a good deal of trouble with a VPN before, and rather than attempting to fix this, I would like to just uninstall the update and restore what I had before. Is there an easy way to do this?
    Thank you very much

    Warren,
    If you haven't yet, try these suggestions. They have worked for others.
    *_Slow & Dropped Internet Connection After Airport Update_*
    The suggestions below have recently helped others after a System or Airport update. Consider each topic separately, If one does not resolve your issue, move on to the next one.
    *Reset/Change DNS Settings*
    Launch Airport Utility.
    Select Airport device on left.
    Click "Manual Setup".
    Select "Internet" from the toolbar above.
    What's listed for "DNS Server(s):"? Try putting in these servers from OpenDNS
    208.67.222.222
    208.67.220.220
    Click "Update".
    Next, on all Macs affected, launch System Prefs --> Network Prefs.
    Select the service you usually connect with on the left (Airport or Ethernet).
    Then click, "Advanced...".
    Click the "DNS" tab.
    What's listed for "DNS Server(s):"? Usually "10.0.1.1" will be listed first in gray. This refers back to the settings in the Airport Utility.
    Nevertheless, it doesn't hurt to add the DNS servers noted above here as well.
    Click "OK" then click "Apply".
    Finally, reboot your Mac.
    Now see if you have internet access all around.
    *Reset Airport Service*
    Launch System Preferences --> Network Preferences.
    Highlight the Airport Service on the left.
    Click the Action menu (tiny gear button) in the lower left.
    Select "Make Service Inactive".
    Then select "Make Service Active".
    Click "Apply".
    *Delete & Add Airport Service*
    Launch System Preferences --> Network Preferences.
    Highlight the Airport Service on the left.
    Click the “-” button in the lower left to remove the Airport Service.
    Next, click the “+” button and add an Airport Service.
    Click “Apply”.
    Note: Removing the AirPort interface resets your preferred AirPort networks.  You will need to add preferred networks again.
    *Reset Network/Airport Settings*
    1. Go to Macintosh HD --> Library --> Preferences --> SystemConfiguration Folder
    Drag the following files to the desktop:
    com.apple.airport.preferences.plist
    com.apple.network.identification.plist
    NetworkInterfaces.plist
    preferences.plist
    Restart your Mac.
    Go System Preferences --> Network.
    From the “Location” menu select “Edit Locations”.
    Click the “+” button and name it “Home” or “My Network”.
    Click “Done”.
    Highlight “Airport” on the left, and verify that your network appears beside “Network Name”.
    Click “Apply”.
    Click “Advanced…”.
    Click the “Airport” tab, and add your network to the “Preferred Networks”list.
    Click “OK” and then click “Apply” once more.
    Now see if your connectivity issues are resolved. Later you can Trash the .plist files you dragged to the Desktop.
    *Archive & Install*
    As a last resort, an Archive & Install using your Mac OS X 10.5 (Leopard) installation DVD will usually resolve this issue. Then use Software Update to bring your system up to date. It appears that reapplying the recent updates in this condition, does not cause the problems to return.
    Let us know if any of the above suggestions helped to resolve your connectivity issues.
    Cheers!

  • How do I revert OS X back to a time before the last update on 28th June?

    Hi.
    Last Tuesday, 28th June, I authorised Mac Update to update two things. One was something to do with my Epson printer, and the other was some sort of security update for Mac OS X itself. The update, presumably the latter part, invoked a requirement to restart my Mac.
    Since then things have not been good.
    I have noticed that the fans in my MacBook Pro are on more or less continuously, even when it is asleep. Prior to last Tuesday they hardly ever ran, even when I was using it. (According to iStat my CPU is currently 76 degrees C, and both fans are running at about 6000 rpm.)
    When I try to quit Safari it doesn't quit straight away as it used to. Instead I get the spinning ball for a while and then, after it quits I get a 'Safari quit unexpectedly' report, even though it was I who initiated the quitting...
    Several apps have been acting oddly too, such as MS Word taking ages to launch.
    So I want to revert my MacBook Pro to how it was prior to this last update. I have Time Machine enabled, but I can't work out how to get the actual OS back to a state it was on a date prior to 28th June. The OS isn't in the Apps folder, and I can't work out where it might be.
    Can someone please point me in the right direction, or is this something that Time Machine cannot do?

    Your slow down issues sound like it's internet related.
    http://support.apple.com/kb/TS3802
    Under your System Prefs > Network > Advanced > Airport > TCP/IP  Configure IPv6: OFF  Reboot.
    Run ALL of the free OnyX cleaning and maintainence
    features and reboot.
    Also run the Verify>Preferences and write down any corrupted
    ones, move these files to your desktop (out of yourLibrary/
    Preferences folder) and reboot, they get rebuilt automatically.
    (more free good stuff you'll likely wind up needing)
    VLC (plays anything)
    Perian (installs additionalQuicktimecodecs)
    FlipForMac (Windows media in Quicktime)
    TheUnarchiver(unpacks just about everything)
    Carbon Copy Cloner (clonesbootdrive to another HFS+j drive, hold option bootable)
    2 free 3D games - NexiuZClassic and Cube 2 Sauerbraten
    LibreOffice (freeofficesuit, reads/writes Office files
    Gimp (free image editor)
    OnyX (free maintainenceandcleaning)
    Pacifist (opens DMG filesforextraction)
    Mactracker (inforonApple products)
    NTFS Mounter (for WindowsNTFSdrives)
    EasyFind(deep search)
    TimeMachineEditor
    TinkerTool
    ClamXav (free anti-virus)
    Caffine (keeps yourMacawake)
    Browswerplug-in check (especially for Flash!)

  • Since the last update to iTunes 11.0.3 (42) the airplay connection is not working properly , keeping breaking up

    since the last update to iTunes 11.0.3 (42) the airplay connection is not working properly , keeping breaking up, while the airplay works fine with my iPad and iPhone. Anyone has experienced the same? any fix available?

    Hi Erdelestre,
    Thanks for visiting Apple Support Communities!
    See this article for some tips about troubleshooting AirPlay:
    Troubleshooting AirPlay and AirPlay Mirroring
    http://support.apple.com/kb/ts4215
    Troubleshooting performance issues with AirPlay or AirPlay Mirroring
    If you are experiencing intermittent playback or significant network lag with AirPlay or AirPlay Mirroring, it could be due to a weak Wi-Fi connection, interference, or the distance between the Wi-Fi router and your iOS device, Apple TV or AirPort Express. Try the following suggestions:
    Ensure that other devices are not trying to stream to the same Apple TV at the same time.
    Turn off Bluetooth on your iOS device by tapping Settings > General > Bluetooth.
    Ensure that your Wi-Fi router is set up with the recommended settings for the best performance.
    Certain external devices, such as microwave ovens and baby monitors, may interfere with a Wi-Fi network. Try moving or disabling these devices.
    If possible, try to locate your Wi-Fi router in the same room as your Apple TV and iPhone/iPad.
    If your wireless and wired networks are the same, try connecting your Apple TV to the router via Ethernet instead of Wi-Fi.
    If the Wi-Fi router has an external antenna, check to see that is it connected properly and in good condition.
    Use the Wi-Fi network troubleshooting guide to resolve interference and other issues.
    Best,
    Jeremy

  • [SOLVED] Gnome 3.8.3 received hard reset after last update

    Hey,
    my gnome seems to be totally destroyed since the laste update! my keybindings and language settings are broken. I cannot change gnome settings (via tweak tool). I cannot do anything...
    does someone have an idea what could be the cause for this?
    best wishes...
    EDIT: I cannot even set a custom wallpaper... really nothing... ideas are welcome, else I have to install windows...
    EDIT1: This solved it for me even though all settings are gone! (https://bbs.archlinux.org/viewtopic.php?id=165485)
    Last edited by domac (2013-06-21 20:12:13)

    I seem to be getting the same today.. I only use Skype once in a blue moon, so not sure when this started.
    Got some gdb love for you.
    ─╼ gdb /usr/lib32/skype/skype
    GNU gdb (GDB) 7.5.1
    Copyright (C) 2012 Free Software Foundation, Inc.
    License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
    This is free software: you are free to change and redistribute it.
    There is NO WARRANTY, to the extent permitted by law. Type "show copying"
    and "show warranty" for details.
    This GDB was configured as "x86_64-unknown-linux-gnu".
    For bug reporting instructions, please see:
    <http://www.gnu.org/software/gdb/bugs/>...
    Reading symbols from /usr/lib32/skype/skype...(no debugging symbols found)...done.
    (gdb) run
    Starting program: /usr/lib32/skype/skype
    warning: Could not load shared library symbols for linux-gate.so.1.
    Do you need "set solib-search-path" or "set sysroot"?
    [Thread debugging using libthread_db enabled]
    Using host libthread_db library "/usr/lib/libthread_db.so.1".
    (gdb) backtrace
    #0 0x080796e8 in malloc@plt ()
    #1 0xf52032e3 in g_malloc () from /usr/lib32/libglib-2.0.so.0
    #2 0xf52035ab in g_malloc_n () from /usr/lib32/libglib-2.0.so.0
    #3 0xf520d2d7 in g_quark_from_static_string () from /usr/lib32/libglib-2.0.so.0
    #4 0xf508b902 in ?? () from /usr/lib32/libgobject-2.0.so.0
    #5 0xf7feae7e in call_init () from /lib/ld-linux.so.2
    #6 0xf7feaf4c in _dl_init_internal () from /lib/ld-linux.so.2
    #7 0xf7fdd0cf in _dl_start_user () from /lib/ld-linux.so.2
    Program received signal SIGSEGV, Segmentation fault.
    0x080796e8 in malloc@plt ()

  • Wiki icons broken after last upgrade?

    Has anyone noticed that the wiki icons after the last update 10.7.2 are broken?
    I just did a remote upgrade and noticed the links are now broken on the wiki pages..  I'll troubleshoot it from an apache perspective later tonight, but I was just curious as to if anyone else has run into this anomaly..

    So after getting home from a business trip yesterday, I decided to look into this..   I found that screen sharing was also not working.
    I rebooted the server and screen sharing started working again, as well as the icons are now also being displayed properly in the wiki's.  I wanted to get screen sharing working first as the server is in the basement, and I'd rather sit at my desk to troubleshoot   (Simply restarting screen sharing did not fix that problem)
    If it happens again, I'll troubleshoot before rebooting.

  • Odd, but minor, issue after last update

    Hi all,
    A couple days ago, I finally updated OSX from 10.4.7 to 10.4.8, and I think in the Software Update routine there was an Airport update, and several other updates for Logic Pro, iMovie, etc., etc. All were minor updates.
    However, now I have an odd issue. Every time I boot up my Intel iMac, I get a message saying that none of my trusted wireless networks are available, and it asks me if I want to connect to Apple network "xxxxxx" -- of course, the "xxxxxx" that the message refers to is my normal Airport network, so I click yes.
    And that's the end of the issue until the next day, when I boot up the iMac again, and again I get the message. It doesn't seem to effect the actual performance throughout the day.
    This minor issue began immediately after the last update, and only effects my Intel iMac. My G4 iMac, which was updated at the same time, to the same software specs, is unaffected.
    Is this a bug, or is there something I can do to resolve the issue?
    Thanks!
    Kevin

    I heve the same problem. Two laptops and a desktop that used to connect automatically to my WPA protected AEBS. Since 10.4.8 none of them auto connect anymore. They never drop the connection during regular use, nor waking from sleep. But on shut down or restart it will not auto connect.

  • Bluetooth (handsfree) not connecting since the last update

    Hi everyone, the last update has totally ruined my connection to the car. I have a Mazda CX9 , my phone and music connect and music is fine to play but to make and answer calls nothing comes through the car. This is so annoying because now I don't have handsfree!!    
    Is anyone experiencing the same problem. I have reset all network settings, turned phone on and off still nothing.
    HELP!

    Yes, contact Apple Support about that. Since your phone is out of warranty, you'll have to pay the Out-Of-Warranty-Service fee, if you want to get your phone replaced by a working device.
    Out-of-warranty repair service
    If your repair isn’t covered by Apple’s One Year Limited Warranty, AppleCare+, or AppleCare Protection Plan, your iPhone might be eligible for out-of-warranty service. For example, liquid damage isn’t covered by warranty but might be eligible for out-of-warranty service. Some damage isn’t eligible at all, for example if your device has been broken into multiple pieces. See Apple’s Repair Terms and Conditions for complete details.
    Read Apple’s Repair Terms and Conditions
    Model
    Out-of-warranty service fee
    Battery service*
    iPhone 6 Plus
    $329
    $79
    *available only if battery
    fails Apple’s diagnostic test
    iPhone 6
    $299
    iPhone 5s, iPhone 5c, iPhone 5
    $269
    iPhone 4s
    $199
    iPhone 4, iPhone 3GS, iPhone 3G,
    Original iPhone
    $149
    Plus a $6.95 shipping fee, if required. Fees are in USD and exclude local tax. Pricing is for service through Apple. The final service fee we charge will be determined during testing and may be less than the service fee listed above. Pricing and terms vary for service through an Apple Authorized Service Provider.
    copied from Service Answer Center - iPhone

Maybe you are looking for