Lost Management IP

Hi,
i am playing around with the backup and restore feature in UCS.
After restoring a system from sratch with the full-state backup, the Management IP for the Fabric B Interconnect is missing. 
It seems to be, that the ip is not restored. Is that a known issue?
Are there any other point to keep in mind for a restore from scratch? Are there other points missing? Or do i have to restore the other backup files as well?
Thanks for sharing
Frank

Hallo Frank
Did you erase the FI, and then
Enter the configuration method. (console/gui) ? console
Enter the setup mode; setup newly or restore from backup. (setup/restore) ? restore
What I usually do, and this is also a cool procedure to clone other UCS domains
- Do a "All configuration" backup; this is a xml, not like the "Full State"; it can be modified or only partially used for restore; important "Preserve Identities" must be set
- Erase config and/or go to a brand new UCS domain;
- do initial basic setup, IP, mask Gateway, admin pw
- login to UCSM and do a restore,

Similar Messages

  • Downloaded file ext. lost & managed server

    Hi,
    I am running WLS 6.1 SP2, and I have the following problem only when I run my
    server as a managed server in my production environment.
    I have a static HTML page that has a link to an .EXE file in the same unprotected
    web application (which is deployed as an exploded directory). When I click on
    the link, I am prompted to save this file on my local disk, but the .EXE extension
    is missing in the dialog box.
    This problem does not occur unless the server is a managed server. Does anyone
    know what's going on?
    Thanks,
    Dan

    Hi,
    In my last email, I mentioned that this only occurs when the server is a managed
    server. I just validated that this is not true. I always happens, my apologies
    for the confusion.
    Any hint would be greatly appreciated.
    Dan
    "Dan" <[email protected]> wrote:
    >
    Hi,
    I am running WLS 6.1 SP2, and I have the following problem only when
    I run my
    server as a managed server in my production environment.
    I have a static HTML page that has a link to an .EXE file in the same
    unprotected
    web application (which is deployed as an exploded directory). When I
    click on
    the link, I am prompted to save this file on my local disk, but the .EXE
    extension
    is missing in the dialog box.
    This problem does not occur unless the server is a managed server. Does
    anyone
    know what's going on?
    Thanks,
    Dan

  • Admin server looses managed servers

    we hava 2 clusters of 2 wls 6.1 sp2 instances each on 2 hpux 11 boxes. The wls console
    shows all the instances when booted up. But suddenly, after a period( and this random
    without a pattern), the admin seems to loose some of the managed servers. The console
    does not show them running but if I ping the server it is there and applications
    on those 'lost' instances are responding. We are not able to predict this beheaviour.
    We are still trying to device a way to identify when it happens. When this happens
    applications work properly but new deployments are not possible and we have to recycle
    the 'lost' managed instances. Obvoiusly we are not able to look at any stats for
    monitoring from the console.
    Has anybody experienced something like this.
    thanks
    Devaraju, Sushant

    I was just getting ready to post for an exact same symptom (scary).
    Only difference is that I am running WLS 6.1 on Compaq Tru64 (unix).
    Appreciate any help on where to start.
    Sushant: Pls post (or email) any responses or resolution.
    Thanks-
    Rama
    "sushant" <[email protected]> wrote:
    >
    we hava 2 clusters of 2 wls 6.1 sp2 instances each on 2 hpux 11 boxes. The
    wls console
    shows all the instances when booted up. But suddenly, after a period( and
    this random
    without a pattern), the admin seems to loose some of the managed servers.
    The console
    does not show them running but if I ping the server it is there and applications
    on those 'lost' instances are responding. We are not able to predict this
    beheaviour.
    We are still trying to device a way to identify when it happens. When this
    happens
    applications work properly but new deployments are not possible and we have
    to recycle
    the 'lost' managed instances. Obvoiusly we are not able to look at any stats
    for
    monitoring from the console.
    Has anybody experienced something like this.
    thanks
    Devaraju, Sushant

  • Lost Admin Access to Server, possibly UAC gpo problem

    I have a Windows network that has evolved over the last 12 -years with 2000-2003-2008R2-2012 servers.  Life has been grand until this last week.  We lost manageability to a handful of servers and we cannot come up with a common denominator why
    the select 5-servers are refusing our domain credentials.
    The only thing that sticks out in my mind that has changed is one of our DC's, a Windows Server 2012 box forced us to install updates and restart the machine.  It was the following day that things started to break apart for us.
    When I login into a number of servers all 2008/R2 machines, I can login OK.  But I can't manage them.  I get UAC dialogue box to authenticate which I attempt with the same or another domain admin account and it fails.
    If I run GPRESULT /V >GP.TXT to get the resulting set of GPO I can see the user account is detected as a member of 'DOMAIN ADMIN' but I can't actually make changes.
    I created a GPO based on this, http://www.techrepublic.com/blog/the-enterprise-cloud/disable-uac-for-windows-servers-through-group-policy/ recommendation but it didn't help.  
    HELP!  Anybody have any ideas I can try.    Needless to say my hair is graying by the moment, LOL.

    > If I run GPRESULT /V >GP.TXT to get the resulting set of GPO I can see
    > the user account is detected as a member of 'DOMAIN ADMIN' but I can't
    > actually make changes.
     From a commmand prompt, run "whoami /groups" and check if you are a
    member of the local administrators.
    if not, examine a gpresult/gpmc modeling report for restricted groups
    settings.
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • Problems with multiple connections in the same transaction

    Hi all !
              I'm have two questions regarding the way weblogic handles multiple
              connections.
              1) first, I don't understand why weblogic always create a new Managed
              Connection when I'm asking for 2 connection handles on the same connection
              factory and with the same connectionRequestInfo. Isn't it supposed to share
              connections ?
              For instance, the following snippet of code results in the creation of 2
              managed connections:
              ConnHandle conn1 = myCF.getConnection(myRequInfo);
              ConnHandle conn2 = myCF.getConnection(myRequInfo);
              The class corresponding to myRequInfo does implement the equals and hash
              method, so that weblogic's connection manager could use them to check that
              the queried connections are the same, and thus could share a single
              ManagedConnection between multiple connection handles. Apparantly it does
              not do that...
              2) OK, I just let weblogic create the 2 managed connections, but... My use
              of the connections is as part of a transaction. Here is what happens:
              ConnHandle conn1 = myCF.getConnection(myRequInfo);
              // a new managedConn1 is instanciated. the following happens (just a
              description)
              // xar1 = managedConn1.getXAResource()
              // xar1.start(NOFLAGS)
              // I use the conn1 handle
              conn1.close();
              //xar1.end(SUSPEND)
              ConnHandle conn2 = myCF.getConnection(myRequiInfo);
              // a new managed connection managedConn2 is instanciated.
              // xar2 = managedConn2.getXAResource();
              // xar2.start(RESUME)
              // I use conn2 handle
              conn2.close();
              // xar2.end(SUSPEND);
              // my bean returns from the remote invocation
              // the client of the bean asks to commit (using UerTransaction.commit on the
              client side)
              // xar2.end(SUCCESS)
              // xar2.commit(onePhase=true);
              // managedConn2.cleanup();
              And that's all. So, as one can see, managedConn1.cleanup was never called.
              When looking in the weblogic console, I can see that I have one connection
              with 0 handle and one with 1 handle, deemed as still being in a transaction.
              So, the conenction manager apparantly loses a managed connection during the
              transaction. And it's very very bad because after a couple of transactions,
              I'm running out of managed connections (I had set a limit of 10).
              Any one has seen such a weird behavior ? Is this a problem on my side, or
              weblogic's ? Thanks for your help.
              Sylvain
              

              I ran another test. This time I have a bean that makes use of a connector
              once per method invocation. The bean method invoked is "sayHello" and it
              gets a connection to the EIS, perform an operation on it and release it. The
              connector I developed uses XA transactions.
              My test client just calls 3 times myBean.sayHello().
              I can distinguish two cases:
              1) first, the client doesn't do transaction demarcation. In this case, since
              the sayHello method is marked as requiring transaction, the folowing happens
              in the bean:
              // **** first invocation of the bean
              connHandle = myCF.getConnection();
              // managedConn1 is instanciated
              // xar1 = managedConn1.getXAResource()
              // xar1.start(NOFLAGS);
              // managedConn1.getConnection gives a connection handle
              connHandle.doSomeWork();
              connHandle.close()
              // xar1.end(SUCCESS);
              // the bean returns from its invocation
              // xar1.commit(onePhase=true)
              // managedConn1.cleanup()
              // **** second invocation of the bean
              connHandle = myCF.getConnection();
              // managedConnectionFactory.matchManagedConnection is called. It returns the
              managed connection (managedConn1) that is in the passed set
              // xar1 = managedConn1.getXAResource()
              // xar1.start(NOFLAGS);
              // managedConn1.getConnection gives a connection handle
              connHandle.doSomeWork();
              connHandle.close
              // xar1.end(SUCCESS);
              // the bean returns from its invocation
              // xar1.commit(onePhase=true)
              // managedConn1.cleanup()
              // **** third invocation of the bean
              connHandle = myCF.getConnection();
              // managedConnectionFactory.matchManagedConnection is called. It returns the
              managed connection (managedConn1) that is in the passed set
              // xar1 = managedConn1.getXAResource()
              // xar1.start(NOFLAGS);
              // managedConn1.getConnection gives a connection handle
              connHandle.doSomeWork();
              connHandle.close
              // xar1.end(SUCCESS);
              // the bean returns from its invocation
              // xar1.commit(onePhase=true)
              // managedConn1.cleanup()
              2) second case : the client performs transaction demarcation. In that case,
              the connection manager instanciates 3 managed connections, calls start/end
              on each XAResource corresponding to each managed connection, calls commit
              once, but also calls cleanup only once, leaving 2 lost managed connections
              The client looks like this:
              UserTransaction utx = context.lookup("javax/transaction/UserTransaction");
              utx.begin();
              MyBean myBean = ctx.lookup(".......");
              myBean.sayHello();
              myBean.sayHello();
              myBean.sayHello();
              utx.commit();
              on the server the following happens:
              // **** first invocation of the bean
              connHandle = myCF.getConnection();
              // managedConn1 is instanciated
              // xar1 = managedConn1.getXAResource()
              // xar1.start(NOFLAGS);
              // managedConn1.getConnection gives a connection handle
              connHandle.doSomeWork();
              connHandle.close()
              // xar1.end(SUSPEND);
              // the bean returns from its invocation
              // **** second invocation of the bean
              connHandle = myCF.getConnection();
              // managedConn2 is instanciated
              // xar2 = managedConn2.getXAResource()
              // xar1.isSameRM(xar2) is called. returns true
              // xar2.start(RESUME);
              // managedConn2.getConnection gives a connection handle
              connHandle.doSomeWork();
              connHandle.close()
              // xar2.end(SUSPEND);
              // the bean returns from its invocation
              // **** third invocation of the bean
              connHandle = myCF.getConnection();
              // managedConn3 is instanciated
              // xar3 = managedConn3.getXAResource()
              // xar2.isSameRM(xar3) is called. returns true
              // xar3.start(RESUME);
              // managedConn3.getConnection gives a connection handle
              connHandle.doSomeWork();
              connHandle.close()
              // xar3.end(SUSPEND);
              // the bean returns from its invocation
              // the client invokes commit on the UserTransaction
              // xar3.end(SUCCESS);
              // xar3.commit(onephase = true);
              // managedConn3.cleanup();
              And so, managedConn1 and managedConn2 got lost in the way...
              What's more puzzling, it's that when monitoring my connector with the
              console, I can see that there are 3 connections. 2 declared as still having
              one handle used and being in transaction, and one not in transaction and
              with 0 active handle. BUT when monitoring the JTA part of the server, I can
              see that there has been 1 transaction that committed, and no connection is
              "in flight" as the console says. So, on one side the console says 2 managed
              connections are still part of a transaction while on the other it says that
              no transactions are currently in flight.
              Thanks for any kind of help on this very bizarre behavior.
              Sylvain
              

  • Disk Utitlity has "Lost Connection" with Disk Management tool"

    [ Edited by Apple Discussions Moderator; please start a new topic about your technical issue. ]
    Running OSX10.3.8
    I installed:
    "iTunes" (6.0.2)
    "iPod Updater 2005-11-17" ((null))
    "iChat Update" (2.1)
    Went to repair disk permissions
    I get this error:
    Disk Utitlity has "Lost Connection" with Disk Management tool" Please quit Disk Utility.
    then it says quitting Disk Utility may render the disk useless. Stopping the scan just gives a "stopped by User" red text message in the DU screen.
    Had to Quit. No other way out.
    Now it will not repair "or" verify Disk permissions at all.
    What to do?
    Powermac G4 1.25ghz, OS9/OSX   Mac OS X (10.3.8)  

    Getting the same results booting off of the install CD. I even ran fsck -y after a soft boot(command S). Note I also installed the iPod updater and iChat update.
    I'm getting a crash log that has to do with DiskManagement
    Path: /System/Library/PrivateFrameworks/DiskManagement.framework/Resources/DiskManage mentTool
    I tossed the pref file for Disk utility and tried to locate a pref for the Disk Management but nada...
    Is there a prefs file that needs to be tossed?
    Anyone do a recent Onyx Maintainence cleaning?
    Is there a way to do an iTunes Uninstal and reinstall a previous version?
    Powermac G4 1.25ghz, OS9/OSX   Mac OS X (10.3.8)  
    Powermac G4 1.25ghz, OS9/OSX   Mac OS X (10.3.8)  

  • 'Disk Utility has lost connection with Disk Management Tool' w/ RAID 10 set

    Using 4 internal drives, I have specified the following setup for each:
    2 partitions, 1 'speed' of 5 GB and 1 'data' of whatever remains.
    The 4 speed partitions stripe to a single RAID volume correctly.
    The 4 data partitions are used to make a RAID 10 volume as follows:
    The first 2 data partitions are mirrored to make a 'data-A'
    The next 2 data partitions are mirrored to make a 'data-B'
    These complete correctly.
    Upon attempting to strip data-A and data-B in order to finish the RAID 10 setup, Disk Utility quits with the following message:
    "Disk Utility has lost connection with the Disk Management Tool and cannot continue. Please quit and relaunch Disk Utility'.
    A search here and on the nets reveals only that this message appeared in 10.3.x when attempting to repair disk permissions and had to do with a rogue iTunes support file. This is occurring on a blank system (no iTunes installed) so I don't think its the same cause.
    Note that I was able to complete this setup under Tiger several times without issue, so it seems to be unique to Leopard. Does anyone know what is going on and hopefully suggest a workaround?

    To answer my own issue and leave a marker here for others, I was able to successfully set up a RAID 10 partition using diskutil, indicating that the problem is Disk Utility itself and not the RAID implementation.
    Disk Utility has proven itself to be bugridden (must restart frequently to get updated view of volumes; drops device names at various times; etc.) and this latest bug would seem to suggest that it should be avoided in favor of diskutil for any serious RAID construction.

  • Disk Utility has Lost Connection with the Disk Managment Tool

    Hi,
    For starters, this problem is not associated with the thread that Brian Z. has posted at the top of this forum. Having said that, here's my problem:
    I had installed Security Update 2006-003, and Quicktime 7.1. Permissions were repaired before and after each installation, and all went well.
    Some hours later, I was experimenting with Apple Remote Desktop. I had activated ARD in the System Preferences>Sharing pane, and it provided me an IP address associated with ARD. I then turned on Airport, and ARD provided me with an IP address associated with that connection. However when I turned off my modem connection, System Preferences>Sharing hung, and had to be Force Quit.
    Console Log follows:
    ===== Mon May 15 2006 ===== 21:09:09 America/Anchorage =====
    2006-05-15 21:09:17.488 System Preferences[2732] Can't open input server /Library/InputManagers/Menu Extra Enabler.bundle
    2006-05-15 21:09:28.224 System Preferences[2732] ### Error:268435460 File:FileSharing.m Line:308
    2006-05-15 21:09:38.230 System Preferences[2732] ### Error:268435460 File:FileSharing.m Line:343
    2006-05-15 21:09:48.415 System Preferences[2732] ### Error:268435460 File:FileSharing.m Line:343
    Thinking a plist had become corrupted, I trashed the following:
    com.apple.systempreferences.plist
    com.apple.RemoteDesktop.plist
    com.apple.Remotemanagement.plist
    com.apple.sharing.firewall.plist.
    System Preferences started out very slowly, but then all the panes except Sharing would work ok.
    I booted from the install disk and performed a Disk Repair. There were no problems reported.
    When I tried to run a Repair Permissions, after about 20 seconds I got the, "Disk Utility has lost connection with the disk management tool and can not continue. Please quit and relaunch Disk Utility."
    I quit D.U. and the Installer, and was able to successfully run a Repair Permissions from the D.U. in my Utilities folder. It had no problems to report.
    Continuting to troubleshoot the System Preferences problem, I then trashed the com.apple.preferencepanes.cache. This solved my System Preferences>Sharing problem.
    However, I am still unable to perform a Repair Permissions after booting from my install disk (I get the subject message). Repairing permissions from the Disk Utility in my Utilies folder works fine.
    Any thoughts out there on a logical way to troubleshoot where my problem is? Is there a way to get a console log when I'm running DU from the install disk, or a comparable source??
    Thanks,
    Bob

    I found this crash log that was generated about the time I had problems with System Preferences hanging.
    Thoughts?
    Bob
    Entitled "writeconfig.crash.log"
    Host Name: Bobs-Big-Mac.local
    Date/Time: 2006-05-15 21:08:17 -0800
    OS Version: 10.3.9 (Build 7W98)
    Report Version: 2
    Command: writeconfig
    Path: /System/Library/PrivateFrameworks/Admin.framework/Resources/writeconfig
    Version: ??? (???)
    PID: 2707
    Thread: 0
    Exception: EXC_BREAKPOINT (0x0006)
    Code[0]: 0x00000001
    Code[1]: 0x90a8d2c0
    Thread 0 Crashed:
    0 com.apple.Foundation 0x90a8d2c0 _NSRaiseError + 0xf8
    1 com.apple.Foundation 0x90a349d8 -[NSConnection sendInvocation:] + 0x6a4
    2 com.apple.Foundation 0x90a2d8e0 -[NSObject(NSForwardInvocation) forward::] + 0x198
    3 libobjc.A.dylib 0x90866810 objcmsgForward + 0xb0
    4 writeconfig 0x0000baac 0x1000 + 0xaaac
    5 writeconfig 0x0000ec84 0x1000 + 0xdc84
    6 writeconfig 0x0000ad88 0x1000 + 0x9d88
    7 writeconfig 0x0000abfc 0x1000 + 0x9bfc
    PPC Thread State:
    srr0: 0x90a8d2c0 srr1: 0x0202f030 vrsave: 0x00000000
    cr: 0x24000442 xer: 0x00000000 lr: 0x90a8d298 ctr: 0x90a23528
    r0: 0x00000000 r1: 0xbffff430 r2: 0xa0a204bc r3: 0xa0a34e20
    r4: 0x9086eb88 r5: 0x20000000 r6: 0xbffff110 r7: 0x00000000
    r8: 0x00000001 r9: 0x0030d370 r10: 0x00000239 r11: 0x28000442
    r12: 0x90a23528 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x00000000 r23: 0x00000000
    r24: 0x00310680 r25: 0xbffffcd8 r26: 0x00311c50 r27: 0xa0a2af6c
    r28: 0xa0a30e7c r29: 0xa0a24ae0 r30: 0x003109a0 r31: 0x90a8d1d0
    Binary Images Description:
    0x1000 - 0x28fff writeconfig /System/Library/PrivateFrameworks/Admin.framework/Resources/writeconfig
    0x80830000 - 0x8090efff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x8c2bc000 - 0x8c2c5fff libBSDPClient.A.dylib /usr/lib/libBSDPClient.A.dylib
    0x8fe00000 - 0x8fe4ffff dyld /usr/lib/dyld
    0x90000000 - 0x9014ffff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c0000 - 0x9026efff com.apple.CoreFoundation 6.3.9 (299.37) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x902b0000 - 0x90529fff com.apple.CoreServices.CarbonCore 10.3.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x905a0000 - 0x90610fff com.apple.framework.IOKit 1.3.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90640000 - 0x906c8fff com.apple.CoreServices.OSServices 3.0.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90733000 - 0x90740fff com.apple.CommonPanels 1.2.1 (1.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x90810000 - 0x90810fff com.apple.ApplicationServices 1.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90860000 - 0x908cffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x908f5000 - 0x90912fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x90940000 - 0x909b3fff com.apple.DesktopServices 1.2.5 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90a20000 - 0x90b7bfff com.apple.Foundation 6.3.8 (500.61) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90d40000 - 0x90d40fff com.apple.Carbon 10.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90d50000 - 0x90d6bfff com.apple.SystemConfiguration 1.7.1 (???) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90d7c000 - 0x90d8cfff com.apple.speech.recognition.framework 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x90dd0000 - 0x90df0fff com.apple.DirectoryService.Framework 1.7.2 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90e10000 - 0x90e11fff com.apple.ServerControl 10.2.3 /System/Library/PrivateFrameworks/ServerControl.framework/Versions/A/ServerCont rol
    0x90e13000 - 0x90e4bfff com.apple.LaunchServices 10.3.5 (98.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x90e60000 - 0x90e66fff com.apple.ServerPrefs 10.2.3 /System/Library/PrivateFrameworks/ServerPrefs.framework/Versions/A/ServerPrefs
    0x90e80000 - 0x90e9ffff com.apple.MediaKit 2.6 (232.3) /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x90ec0000 - 0x90ec0fff com.apple.Cocoa 6.3 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9102d000 - 0x91047fff com.apple.openscripting 1.2.1 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x910c0000 - 0x910c1fff com.apple.AFPDefines 2.0.1 /System/Library/PrivateFrameworks/AFPDefines.framework/Versions/A/AFPDefines
    0x910e0000 - 0x91134fff com.apple.bom 1.2.7 (64.1) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x91141000 - 0x91141fff com.apple.CoreServices 10.3 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x91230000 - 0x9123afff com.apple.framework.machinesettings 1.3.3 /System/Library/PrivateFrameworks/MachineSettings.framework/Versions/A/MachineS ettings
    0x91242000 - 0x9124cfff com.apple.framework.AppleTalk 1.2.0 (???) /System/Library/Frameworks/AppleTalk.framework/Versions/A/AppleTalk
    0x91251000 - 0x9125afff com.apple.DiskArbitration 2.0.5 /System/Library/PrivateFrameworks/DiskArbitration.framework/Versions/A/DiskArbi tration
    0x912e0000 - 0x912f7fff com.apple.LangAnalysis 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91303000 - 0x91370fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x913a0000 - 0x9145ffff ColorSync /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x915e0000 - 0x91699fff com.apple.QD 3.4.71 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x916f0000 - 0x91728fff com.apple.AE 1.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91760000 - 0x917f3fff com.apple.print.framework.PrintCore 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9194f000 - 0x9194ffff com.apple.audio.units.AudioUnit 1.3.3 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91970000 - 0x919befff com.apple.print.framework.Print 3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x91a40000 - 0x91ab3fff com.apple.NavigationServices 3.3.3 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91afb000 - 0x91b0bfff com.apple.ImageCapture 2.1.5 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91b30000 - 0x91b44fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x91b60000 - 0x91b6bfff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91ba3000 - 0x91bbdfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x91bd0000 - 0x91bdffff libPSRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPSRIP.A.dylib
    0x91c00000 - 0x91c13fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x92037000 - 0x92052fff libcurl.2.dylib /usr/lib/libcurl.2.dylib
    0x92070000 - 0x92096fff com.apple.FindByContent 1.4 (1.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x92170000 - 0x92357fff com.apple.security 2.4 (179) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x927f0000 - 0x92827fff com.apple.CFNetwork 1.2.2 (7) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9283f000 - 0x92857fff com.apple.WebServices 1.1.1 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x92880000 - 0x92c05fff com.apple.HIToolbox 1.3.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92de0000 - 0x92e30fff com.apple.HIServices 1.4.1 (0.0.1d1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92e70000 - 0x9336ffff com.apple.AppKit 6.3.10 (743.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93680000 - 0x93958fff com.apple.CoreGraphics 1.203.30 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x939d0000 - 0x939d4fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x93a50000 - 0x93a64fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x93a6a000 - 0x93a84fff libPDFRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x93bec000 - 0x93ca4fff com.apple.audio.toolbox.AudioToolbox 1.3.4 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94270000 - 0x94333fff com.apple.DiskImagesFramework 10.3.8 (77) /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x94580000 - 0x9458bfff com.apple.securityhi 1.2 (90) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x94593000 - 0x9459ffff com.apple.help 1.0.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x945b0000 - 0x945b9fff libz.1.dylib /usr/lib/libz.1.dylib
    0x94650000 - 0x946affff com.apple.SearchKit 1.0.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x94720000 - 0x94721fff com.apple.securityfoundation 1.0 (6) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94800000 - 0x9488cfff com.apple.ink.framework 101.1.4 (55.12) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94e0b000 - 0x94e1efff com.apple.speech.synthesis.framework 3.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x95140000 - 0x951b5fff com.apple.DiscRecordingEngine 2.1.17 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x954c0000 - 0x95ac6fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x95b20000 - 0x95df0fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95f00000 - 0x95f20fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x96028000 - 0x960f0fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x968d0000 - 0x969b2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x96a04000 - 0x96a6dfff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x96aa0000 - 0x96acefff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x96b50000 - 0x96bdffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96c00000 - 0x96c67fff com.apple.audio.CoreAudio 2.1.3 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96cb0000 - 0x96d9efff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x96de0000 - 0x96df0fff com.apple.vecLib 3.0.3 (vecLib 3.0.3) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96ee0000 - 0x96ee8fff libbsm.dylib /usr/lib/libbsm.dylib

  • Downloads folder lost in trash. I managed to drag it from Home but now...

    Downloads folder lost in trash. I managed to drag it from Home but now every download shows up twice, one in the download stack and another in the trash can. What can I do to stop downloads from showing up in the trash can?

    I did it already. The thing is that, since I put the "downloads stack folder" into the trash, and the emptied it, the downloads (from safari) keep showing up in both: the downloads folder (the one I dragged from "Home" to fix my accident) and the trash. The trash looks empty but it is like the computer detects a "download folder" in the trash, that I can't see.

  • I lost a lot of tracks while syncing my ipod touch with iTunes. I have managed to get some of them back with a free download, but iTunes will not let me dowload whole albums which I have paid for. It does recognise that they have been purchased. What do n

    As I've already said to get this far: I have lost a lot of tracks while syncing my iPod Touch with iTunes. I have managed to get free downloads of some of the single tracks, but when I try to download entire albums the system informs me that I have already purchased them and a pop-up window informs me I can get them back from my "Purchased" file. I would not be trying to dowload them again if they were anywhere on the iPod, would I? The other problem seems to be that with single tracks I don't know before I hit the purchase button if I have picked it from the right album and I have had to pay for it again.
    I feel that I have been totally ripped off by iTunes and, apart from ranting on this forum, I don't seem to be able to let my feelings known. It's like a guy from my local record store coming round and nicking my albums and telling me that it's tough!
    The point here is folks, that it was syncing two Apple sites which caused the loss of these tracks and from what I've read elsewhere this is a regular fault. And please don't tell me that it's my fault for having a pc. Apple shouldn't sell a product for pc, when it doesn't work on pc!

    - Are you saying that they are not listed in your Purchased section?
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    - Are they listed in your Puchases history when you log into your account on your computer?
    - Are they still available now for purchase? If not then you are out of luck
    If they are still available and listed in your Puchase History then contact iTunes
    http://www.apple.com/support/itunes/

  • How can i view and apply new custom patterns without going to preset manager? i had this facility but have now lost it

    how can i view and apply new custom patterns without going to preset manager? i had this facility but have now lost it.  i design patterns but am fairly new to photoshop. i used to be able to click on the drop down menu in patterns in the 'fill' box but cannot now do this.  have i inadvertently clicked on something to turn this facility off?  i now have to go to 'preset manager' and manually move my new design to the first box and click 'done' so that i can use it.

    Which version of photoshop are you using?
    After you define a custom pattern it should be added to the bottom of whatever patterns are already loaded.
    For example, if you define a custom pattern and then go to Edit>Fill>Pattern, the newly defined pattern should have been added to the existing loaded patterns.

  • I had a drive failure and lost the iWeb file along with other things.   I did manage to save a lot of user file documents but I don't see or   recognize the my iWeb site file. It was on a 15" G4 Titanium pb. I'm trying to find a way, using version 2.0.4

    I had a drive failure and lost the iWeb file along with other things. 
    I did manage to save a lot of user file documents but I don't see or 
    recognize the iWeb site file. It was on a 15" G4 Titanium pb.
    I'm trying to find a way, using version 2.0.4 of iWeb on a different 
    pb to recover the file into the iWeb app or a way to download the site into iWeb.
    There are 6 pages of images and text, and it 
    would be a task for me to recreate the whole thing again. I did 
    download the site but I don't know how or if I can get iWeb to see it and open it.
    Does anyone have any knowledge about this? The link to my site:
    <http://web.mac.com/danauerbach>
    Any suggestions will be most appreciated.
    dan auerbach
    [email protected]

    Unfortunately iWeb cannot read or import previously published files, only generate them.  You'll have to recreate your site from scratch.
    However, Chapter 2.3 on the iWeb FAQ.org site has tips on using some of the existing files, image, audio, video, etc., from the published site in the recreation of the site.
    OT

  • Grey songs appear after managing music, and seemed to be unplayable/lost. Videos lost as well. How do i retrieve them?

    After doing some actions with my iPod Touch 4G, ALL my music AND video library turned grey, or rather, after pressing the Music app, I received the message, along the lines of "There is no music." This is on my Mac laptop with an older version of itunes, my main music is however backed up on my desktop Mac.
    Actions and settings that i took which may have caused the grey-out or loss of my music and videos.
    1. Manually manage music and videos.
    2. Unchecked and rechecked a song, out of sheer interest (this may be the problem) whilst on my laptop
    3. Managing files inside the iPod, using another desktop application whilst the iPod was in my laptop.
    The situation
    All music appeared grey in my iPod
    Majority of VIDEOS LOST.
    Retrieved most of MY music from my Home Mac via iTunes auto-sync
    Friend's music is LOST (greyed out and unplayable in iTunes)
    My attempts to retrieve lost music and videos:
    1. Removed my iPod from laptop and attached my iPod to my desktop Mac, and it automatically synced, retrieving the music i had. The music my friend had recently lent me, that is, put in my iPod via his iTunes on PC APPEARS TO HAVE BEEN LOST. My music is in black font on the iPod, but the music my friend had gave me is in light grey/gray font.
    Where did this video and music go? Did i delete the music and videos?

    Photos/videos in the Camera Roll are not synced. Photos/videos in the Camera Roll are not touched with the iTunes sync process. Photos/videos in the Camera Roll can be imported by your computer which is not handled by iTunes. Most importing software includes an option to delete the photos/videos from the Camera Roll after the import process is complete. If is my understanding that some Windows import software supports importing photos from the Camera Roll, but not videos. Regardless, the import software should not delete the photos/videos from the Camera Roll unless you set the app to do so.
    Photos/videos in the Camera Roll are included with your iPhone's backup. If you synced your iPhone with iTunes before the videos on the Camera Roll went missing and you haven't synced your iPhone with iTunes since they went missing, you can try restoring the iPhone with iTunes from the iPhone's backup. Don't sync the iPhone with iTunes again and decline the prompt to update the iPhone's backup after selecting Restore.

  • How can I re-download the previous version of Firefox. I have lost most of my add-ons with 4.0 including my password manager. This is a calamity and I've changed my default browser from Firefox. Help!!!

    The problem is very simple. As soon as I downloaded Firefox 4.0 I lost my add-ons. The add-ons were the reason I have been using Firefox for several years. This seems to be ludicrous. The new version should be able to manage integration of existing add-ons or the Firefox team should have provided the add-on authors with advance technical information before releasing 4.0 to the world.

    To downgrade to Firefox 3.6 first uninstall Firefox 4, but do not select the option to "Remove my Firefox personal data". If you select that option it will delete your bookmarks, passwords and other user data.
    You can then install the latest version of Firefox 3.6 available from http://www.mozilla.com/en-US/firefox/all-older.html - it will automatically use your current bookmarks, passwords etc.
    To avoid possible problems with downgrading, I recommend going to your profile folder and deleting the following files if they exist - extensions.cache, extensions.rdf, extensions.ini, extensions.sqlite and localstore.rdf. Deleting these files will force Firefox to rebuild the list of installed extensions, checking their compatibility, and reset toolbar customizations.
    For details of how to find your profile folder see https://support.mozilla.com/kb/Profiles

  • I changed from manually manage music to create more space, and lost a LOT of my music from my current Itunes library.  I HAVE to have that music back!  How do I go about getting the missing/lost files back on my library and IPod?

    I changed from manually managing music to create more space on my IPod and lost a lot of the my music since it synched with another library. ( I think off another long gone computer!)  I HAVE to get this music back!  There are songs I can no longer find!  How do I get this "Cannot locate file for this song" music back on my ITunes library and IPod?
    Thanks for any and all help!!

    See this article for more help and information.
    iTunes: Finding lost media and downloads
    B-rock

Maybe you are looking for

  • Purchased music appears in iTunes on Mac but not on iPhone

    Hi all, Have recently signed up to iTunes Match but I have a silly question. All of my songs now appear in the Music App on my iPhone except for all my purchased music which appears only in iTunes on my Mac. Am I doing something wrong? cheers Jools B

  • Performance problem when using in operator

    Hi, I have two tables (master - detail): NETZ - NETZPART (detail table). The following query is very slow: select NP.* from NETZPART NP join NETZ N on N.NETZID = NP.NETZID and N.ISVIRTUELL <> 'T' where NP.NETZID in (40446621,40446622) order by ACHSSE

  • Question about Ipod/Printer Rebate

    for anyone who used the student/teacher rebates on the ipod and printer, or anyone who purchased a macbook for that matter, do you guys remember a sales receipt that came with your macbook? how about the printer? i am preparing to mail in my rebates

  • Process Administrator as a service

    Hi, Can you kindly let me know if there is a way to configure process administrator as a windows service. Thanks, Charan

  • Help with iphone 4s imessaging?

    i just got the iphone 4s 16 gb today. i am wondering what is the difference between imessage, sms, and mms. i have a plan of 700 mins, 500 texts, and 2gb of data per month. (on verizon) i know that i message is blue and sms is green but if i message