CF 10 Clean Install - Sessions Broken

Hi all,
My firm recently upgraded to all new CF 10 servers (clean install no upgrade), and we are going through testing before we launch them in production.
I have come across an issue where the sessions are not being maintained across requests.
The application login functionality no longer works at all... testing the same code on CF9 yields expected and desired results.
To test, I created a folder with an Application.cfc and an index.cfm.
I placed a copy of the folder on the root of both the CF9 and CF10 servers.
Loaded the index.cfm page on each and then just hit the refresh button on the browser.
All the index.cfm page does is dump the session & cookie scopes.
RESULTS
CF9:
- SESSIONID stays the same upon each requestion
- CFID stays the same
- CFTOKEN stays the same
...as expected results
Initial Page Load:
struct
sessionid
8430fefbf6988bab4bbc3724627d6a323351
urltoken
CFID=64848&CFTOKEN=25813868&jsessionid=8430fefbf6988bab4bbc3724627d6a323351
username
Bill
struct
CFID
64848
CFTOKEN
25813868
JSESSIONID
8430fefbf6988bab4bbc3724627d6a323351
Refresh 2:
struct
sessionid
8430fefbf6988bab4bbc3724627d6a323351
urltoken
CFID=64848&CFTOKEN=25813868&jsessionid=8430fefbf6988bab4bbc3724627d6a323351
username
Bill
struct
CFID
64848
CFTOKEN
25813868
JSESSIONID
8430fefbf6988bab4bbc3724627d6a323351
Refresh 3:
struct
sessionid
8430fefbf6988bab4bbc3724627d6a323351
urltoken
CFID=64848&CFTOKEN=25813868&jsessionid=8430fefbf6988bab4bbc3724627d6a323351
username
Bill
struct
CFID
64848
CFTOKEN
25813868
JSESSIONID
8430fefbf6988bab4bbc3724627d6a323351
CF10:
- SESSIONID changes on everye SECOND request
- CFID changes every request
- CFTOKEN changes every request
...not as expected whatsoever
Initial Page Load:
struct
sessionid
BBEB2834CFE5CABC214714BC9984C35B.cfusion
urltoken
CFID=2199631&CFTOKEN=87302470&jsessionid=BBEB2834CFE5CABC214714BC9984C35B.cfusion
struct
CFID
2199631
CFTOKEN
87302470
JSESSIONID
A8374BAF078DCD9216870113F0A7E32B.cfusion
Refresh 1:
struct
sessionid
BBEB2834CFE5CABC214714BC9984C35B.cfusion
urltoken
CFID=2199791&CFTOKEN=22231763&jsessionid=BBEB2834CFE5CABC214714BC9984C35B.cfusion
struct
CFID
2199791
CFTOKEN
22231763
JSESSIONID
BBEB2834CFE5CABC214714BC9984C35B.cfusion
Refresh 2:
struct
sessionid
1C3645A75E85F7AEDAEBA9F90474DF83.cfusion
urltoken
CFID=2199867&CFTOKEN=96194295&jsessionid=1C3645A75E85F7AEDAEBA9F90474DF83.cfusion
struct
CFID
2199867
CFTOKEN
96194295
JSESSIONID
BBEB2834CFE5CABC214714BC9984C35B.cfusion
WTH???
Here is a copy of my Application.cfc:
          @title "Application.cfc reference in CFScript for Coldfusion 9"
    @description "This component includes all Application.cfc methods and variables, set to their default values (if applicable). Please note that default values are not always desirable, and some methods or variables should be modified or removed depending on the situation."
          @author "Russ Spivey (http://cfruss.blogspot.com)"
    @dateCreated "November 29, 2009"
    @licence "This work is licensed under the Creative Commons Attribution 3.0 United States License. To view a copy of this license, visit http://creativecommons.org/licenses/by/3.0/us/ or send a letter to Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA."
          @hint "You implement methods in Application.cfc to handle ColdFusion application events and set variables in the CFC to configure application characteristics."
component output="false" {
          /* **************************** APPLICATION VARIABLES **************************** */
          // The application name. If you do not set this variable, or set it to the empty string, your CFC applies to the unnamed application scope, which is the ColdFusion J2EE servlet context.
          THIS.name = "Test";
          // Life span, as a real number of days, of the application, including all Application scope variables.
          THIS.applicationTimeout = createTimeSpan(0, 1, 0, 0);
          // Whether the application supports Client scope variables.
          THIS.clientManagement = false;
          // Where Client variables are stored; can be cookie, registry, or the name of a data source.
          //THIS.clientStorage = "registry"; //cookie||registry||datasource
          // Contains ColdFusion custom tag paths.
          THIS.customTagPaths = "";
          // The Google Maps API key required to embed Google Maps in your web pages.
          THIS.googleMapKey = "";
    // Name of the data source from which the query retrieves data.
    THIS.datasource = "";
          // Whether to store login information in the Cookie scope or the Session scope.
          THIS.loginStorage = "cookie"; //cookie||session
          // A structure that contains ColdFusion mappings. Each element in the structure consists of a key and a value. The logical path is the key and the absolute path is the value.
          THIS.mappings = {};
    // Whether to enable validation on cfform fields when the form is submitted.
    THIS.serverSideFormValidation = true;
          // Whether the application supports Session scope variables.
          THIS.sessionManagement = true;
          // Life span, as a real number of days, of the user session, including all Session variables.
          THIS.sessionTimeout = createTimeSpan(0, 0, 20, 0);
          // Whether to send CFID and CFTOKEN cookies to the client browser.
          THIS.setClientCookies = true;
          // Whether to set CFID and CFTOKEN cookies for a domain (not just a host).
          THIS.setDomainCookies = false;
          // Whether to protect variables from cross-site scripting attacks.
          THIS.scriptProtect = false;
          // A Boolean value that specifies whether to add a security prefix in front of the value that a ColdFusion function returns in JSON-format in response to a remote call.
          THIS.secureJSON = false;
          // The security prefix to put in front of the value that a ColdFusion function returns in JSON-format in response to a remote call if the secureJSON setting is true.
          THIS.secureJSONPrefix = "";
          // A comma-delimited list of names of files. Tells ColdFusion not to call the onMissingTemplate method if the files are not found.
          THIS.welcomeFileList = "";
          // A struct that contains the following values: server, username, and password.If no value is specified, takes the value in the administrator.
          THIS.smtpServersettings = {};
    // Request timeout. Overrides the default administrator settings.
    THIS.timeout = 30; // seconds
    // A list of ip addresses that need debugging.
    THIS.debugipaddress = "";
    // Overrides the default administrator settings. It does not report compile-time exceptions.
    THIS.enablerobustexception = false;
    /* ORM variables */
    // Specifies whether ORM should be used for the ColdFusion application.Set the value to true to use ORM. The default is false.
    THIS.ormenabled = false;
    // The struct that defines all the ORM settings. Documentation: http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSED380324-6CBE-47cb-9E5E-26B66ACA9E 81.html
    THIS.ormsettings = {};
    // note: THIS.datasource applies to cfquery as well as ORM. It is defined on line 31.
          /* **************************** APPLICATION METHODS **************************** */
        @hint "Runs when an application times out or the server is shutting down."
        @ApplicationScope "The application scope."
          public void function onApplicationEnd(struct ApplicationScope=structNew()) {
                    return;
              @hint "Runs when ColdFusion receives the first request for a page in the application."
          public boolean function onApplicationStart() {
                    return true;
        @hint "Intercepts any HTTP or AMF calls to an application based on CFC request."
        @cfcname "Fully qualified dotted path to the CFC."
        @method "The name of the method invoked."
        @args "The arguments (struct) with which the method is invoked."
    public void function onCFCRequest(required string cfcname, required string method, required string args) {
                    return;
        @hint "Runs when an uncaught exception occurs in the application."
        @Exception "The ColdFusion Exception object. For information on the structure of this object, see the description of the cfcatch variable in the cfcatch description."
        @EventName "The name of the event handler that generated the exception. If the error occurs during request processing and you do not implement an onRequest method, EventName is the empty string."
        note: This method is commented out because it should only be used in special cases
          public void function onError(required any Exception, required string EventName) {
        return;
        @hint "Runs when a request specifies a non-existent CFML page."
        @TargetPage "The path from the web root to the requested CFML page."
        note: This method is commented out because it should only be used in special cases
          public boolean function onMissingTemplate(required string TargetPage) {
                    return true;
        @hint "Runs when a request starts, after the onRequestStart event handler. If you implement this method, it must explicitly call the requested page to process it."
        @TargetPage "Path from the web root to the requested page."
        note: This method is commented out because it should only be used in special cases
          public void function onRequest(required string TargetPage) {
                    return;
        @hint "Runs at the end of a request, after all other CFML code."
          public void function onRequestEnd() {
                    return;
        @hint "Runs when a request starts."
        @TargetPage "Path from the web root to the requested page."
          public boolean function onRequestStart(required string TargetPage) {
                    return true;
        @hint "Runs when a session ends."
        @SessionScope "The Session scope"
        @ApplicationScope "The Application scope"
          public void function onSessionEnd(required struct SessionScope, struct ApplicationScope=structNew()) {
                    return;
        @hint "Runs when a session starts."
          public void function onSessionStart() {
                    return;
So did Adobe really ship a broken product??
Here are a list of other people with the same issues:
http://forums.adobe.com/message/5692829
http://forums.adobe.com/thread/1017340
http://forums.adobe.com/thread/1022637
http://forums.adobe.com/thread/1272465
http://forums.adobe.com/message/5696193
https://bugbase.adobe.com/index.cfm?event=bug&id=3572565
http://www.petefreitag.com/item/817.cfm
http://forums.adobe.com/thread/1199835
I have spent several days at this... if I missed some obvious conifiguration I would be upset with myself, but releived it was fixable. As of right now, I can't move my code to this new production environment as logging into the application is not even possible.
Thanks

     ISSUE RESOLVED:    
     BKBK,
     You were correct...
     I failed to mention that the application that is dropping the session is also using the Portcullis XSS/SQL Injection prevention script from RIAForge.
     It is not listed as being compatible with CF10... removing it has resolved my issue entirely and the sessions are now being maintained.
     Thank you all for your responses.
     Regards,
     John
BKBK wrote:
John.Elkins wrote:
 We are not using cflogin...
However, some other login process is apparently involved in the page request. That can start up a new session, if not coded properly.
In fact my guess is that that is what is happening. In any case, this is about whether or not session is maintained. To test this cleanly, you have to exclude all code involved with the login process.

Similar Messages

  • ICal broken, clean install still broken.

    hello, spent the last 17 hours in pain trying to get my iCal to work again. I completely nuked and repaved my drive and did a clean leopard install with all the upgrades to bring me back to 10.5.2. When I try and load my previously backed up calendars into this fresh iCal they appear as normal and I can edit them and move things around. As soon as I quit iCal and restart it everything disappears and I'm back to square 1. I have years of data in my calendars that I meticulously strive to save. I back up all the time. This is a major bummer.
    I turned off all syncing when I blitzed the OS.
    I'm tired and lost.
    ideas?

    Ferd,
    Thanks again. Sadly same problem.
    I went through your steps. I logged out instead of restarting, but other than that I followed it through.
    The calendars restore nicely. They look good and everything is there. However, try and change something, move something or add something and it works. That is, until you quit iCal and then it all resets back to exactly how it was.
    Yes I did a complete clean install.
    At then end of it after reloading all my major software I fired up iCal and basically did the same procedure you wrote. When I had no joy with that. I created another new admin user account. Then fired up Migration Asst. and pointed it at my external firewire drive where the clone of my previous mongrel install of Leopard was living. After doing the migration I had my "old" admin user in addition to my clean install admin user. I deleted the temporary admin user. So now, on this machine, I have a new admin and the old one. iCal works in neither.
    I'm clueless too. Plaxo was working fine. I gave up on Spanning Sync after a week of trial. Had hope for BusySync since it seemed to work well with Google. After I started having a serious iCal event duplication problems I stopped using and tried to delete all that "extra" software. To no avail. Still stuck.
    Thanks again for all your time and effort.
    I got real used to iCal, and am really feeling the pain of not having it. Kind of annoyed.
    peace,
    -j.

  • Wiki "remember password" feature broken after clean install

    I did a clean install, then restored the collaboration folder from an asr backup.
    Only problem is, if clients check the "remember password" box (in the wiki login - not a browser feature), then get the following error:
    The page at <my url here> says:
    Error from server: xmlrpc_digestLogin() takes at most 4 arguments (5 given) (8002)
    Curiously, the text "remember password" is also missing from next to the checkbox.

    Your symptoms imply a mismatch between the web client and the server. It seems the web client is newer (10.5.2) and the wiki server is earlier (pre-10.5.2)
    Could your restore have mismatched items?
    One way to fix this is to do a clean install on another disk, then copy the server bits back over, using ditto or cp. The server bits you'll need live in /usr/share/wikid

  • I've tried to eliminate system errors by performing a clean install of ML. What's the best way to set up my iMac for a singlet user?

    One of my main goals is to be able to run a Windows application on my iMac, purchased in July, 2012, with the Intel 2.5Ghz i5, 4GB RAM, 500GB hard drive. At first I installed Boot Camp and then Win 7, then the application I need to run, and I don't recall having problems. But I tired of the required reboot each time and got greedy and needy - so I installed VMWare Fusion, only to be told that the W7 software I use won't work with Fusion, but it will with Parallels! So, I was able to get Parallels at a discount (because I had Fusion), and decided I would import Boot Camp into Parallels.
    Then the problems began. I suspect I did something I shouldn't have during this process, but to shorten the story I did a clean install of ML, set up iCloud, and monitored Console for problems. And problems there were - lots of them, and they all seemed to reference iCloud in some way. Since I have the ML installer on a thumb drive I thought I'd see what happened if I did another clean install, but this time I'd ignore iCould altogether (yes, I have everything backed up to mypcback.com) and proceeded. As before, the errors streamed down Console's face as if it were my own. I've run OnyX, which seemed to help, but many of the issues persist. I'm at a loss as how to proceed other than invoke Apple Support, which, BTW, is not covered under Warranty.
    I need to have a stable ML platform before I start using W7 and refuse to believe that the OSX is "just buggy." Can someone help. I have no other iDevices that need to be synced, and really don't see the need to set up iCloud. Noone else than I use the iMac. It should be pretty simple to create a stable OSX so I can go where I need to go. I realize 4GB is not a lot of memory and will look into that. For the moment, I can stip down Win 7, and OSX for that matter, to free up memory. I didn't want to included a bunch of log files, but I will if someone thinks that it would be helpful.
    The follow are the latest entries into my system log file, after I lost connection to the internet, and then regained connection after rebooting my cable modem:
    Dec 18 16:03:37 173-22-144-11.client.mchsi.com com.apple.SecurityServer[15]: Succeeded authorizing right 'system.volume.removable.unmount' by client '/usr/sbin/diskarbitrationd' [18] for authorization created by '/System/Library/CoreServices/Finder.app' [142] (100002,0)
    Dec 18 16:04:49 173-22-144-11 kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link down on en0
    Dec 18 16:04:50 Marks-iMac.local configd[17]: setting hostname to "Marks-iMac.local"
    Dec 18 16:04:50 Marks-iMac.local configd[17]: network changed: v4(en0-:173.22.144.11) DNS- Proxy- SMB
    Dec 18 16:04:55 Marks-iMac.local digest-service[2296]: label: default
    Dec 18 16:04:55 Marks-iMac.local digest-service[2296]:           dbname: od:/Local/Default
    Dec 18 16:04:55 Marks-iMac.local digest-service[2296]:           mkey_file: /var/db/krb5kdc/m-key
    Dec 18 16:04:55 Marks-iMac.local digest-service[2296]:           acl_file: /var/db/krb5kdc/kadmind.acl
    Dec 18 16:04:55 Marks-iMac.local digest-service[2296]: digest-request: uid=0
    Dec 18 16:04:55 Marks-iMac.local rpcsvchost[2297]: sandbox_init: com.apple.msrpc.netlogon.sb succeeded
    Dec 18 16:04:55 Marks-iMac.local digest-service[2296]: digest-request: init request
    Dec 18 16:04:55 Marks-iMac.local digest-service[2296]: digest-request: init return domain: 173-22-144-11 server: MARKS-IMAC
    Dec 18 16:08:21 Marks-iMac com.apple.launchd.peruser.89[1579] (com.apple.cfprefsd.xpc.agent[1584]): Exited: Killed: 9
    Dec 18 16:08:21 Marks-iMac kernel[0]: memorystatus_thread: idle exiting pid 1584 [cfprefsd]
    Dec 18 16:08:21 Marks-iMac com.apple.launchd.peruser.89[1579] (com.apple.distnoted.xpc.agent[1582]): Exited: Killed: 9
    Dec 18 16:08:21 Marks-iMac kernel[0]: memorystatus_thread: idle exiting pid 1582 [distnoted]
    Dec 18 16:08:25 Marks-iMac kernel[0]: (default pager): [KERNEL]: ps_select_segment - send HI_WAT_ALERT
    Dec 18 16:08:25 Marks-iMac kernel[0]: macx_swapon SUCCESS
    Dec 18 16:08:26 Marks-iMac.local distnoted[2307]: # distnote server agent  absolute time: 25574.335618917   civil time: Tue Dec 18 16:08:26 2012   pid: 2307 uid: 89  root: no
    Dec 18 16:08:42 Marks-iMac com.apple.launchd.peruser.89[1579] (com.apple.cfprefsd.xpc.agent[2308]): Exited: Killed: 9
    Dec 18 16:08:42 Marks-iMac kernel[0]: memorystatus_thread: idle exiting pid 2308 [cfprefsd]
    Dec 18 16:09:56 Marks-iMac com.apple.launchd.peruser.89[1579] (com.apple.distnoted.xpc.agent[2307]): Exited: Killed: 9
    Dec 18 16:09:56 Marks-iMac kernel[0]: memorystatus_thread: idle exiting pid 2307 [distnoted]
    Dec 18 16:09:58 Marks-iMac com.apple.launchd.peruser.501[127] (com.apple.pbs[194]): Exited: Killed: 9
    Dec 18 16:09:58 Marks-iMac kernel[0]: memorystatus_thread: idle exiting pid 194 [pbs]
    Dec 18 16:10:52 Marks-iMac.local HelpViewer[2304]: : event.layerX and event.layerY are broken and deprecated in WebKit. They will be removed from the engine in the near future. (line: 0)
    Dec 18 16:11:18 --- last message repeated 9 times ---
    Dec 18 16:11:18 Marks-iMac com.apple.launchd.peruser.501[127] (com.apple.NetworkDiagnostics): The following job tried to hijack the service "com.apple.NetworkDiagnostic.agent" from this job: [0x0-0x12b12b].com.apple.NetworkDiagnostics
    Dec 18 16:11:20 Marks-iMac.local distnoted[2315]: # distnote server agent  absolute time: 25748.275081657   civil time: Tue Dec 18 16:11:20 2012   pid: 2315 uid: 89  root: no
    Dec 18 16:13:08 Marks-iMac kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=2318[GoogleSoftwareUp] clearing CS_VALID
    Dec 18 16:15:30 Marks-iMac kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en0, 100-Megabit, Full-duplex, No flow-control, Debug [796d,0301,0de1,0300,41e1,0000]
    Dec 18 16:15:34 Marks-iMac.local configd[17]: network changed: v4(en0+:192.168.100.2) DNS* Proxy+ SMB
    Dec 18 16:16:31 Marks-iMac.local WindowServer[72]: CoreAnimation: context hosting changed while locked!
    Dec 18 16:16:43 Marks-iMac.local configd[17]: network changed: v4(en0-:192.168.100.2) DNS* Proxy- SMB
    Dec 18 16:16:48 Marks-iMac.local configd[17]: network changed: v4(en0+:173.22.144.11) DNS+ Proxy+ SMB
    Dec 18 16:16:48 173-22-144-11.client.mchsi.com configd[17]: setting hostname to "173-22-144-11.client.mchsi.com"
    Dec 18 16:16:53 173-22-144-11.client.mchsi.com digest-service[2346]: label: default
    Dec 18 16:16:53 173-22-144-11.client.mchsi.com digest-service[2346]:           dbname: od:/Local/Default
    Dec 18 16:16:53 173-22-144-11.client.mchsi.com digest-service[2346]:           mkey_file: /var/db/krb5kdc/m-key
    Dec 18 16:16:53 173-22-144-11.client.mchsi.com digest-service[2346]:           acl_file: /var/db/krb5kdc/kadmind.acl
    Dec 18 16:16:53 173-22-144-11.client.mchsi.com digest-service[2346]: digest-request: uid=0
    Dec 18 16:16:53 173-22-144-11.client.mchsi.com digest-service[2346]: digest-request: init request
    Dec 18 16:16:53 173-22-144-11.client.mchsi.com digest-service[2346]: digest-request: init return domain: MARKS-IMAC server: 173-22-144-11
    Dec 18 16:20:31 173-22-144-11.client.mchsi.com mdwrite[2355]: [ERROR] [0.000s] com.apple. UBItemStatusNotification.c:805 _do_UBItemStatusNotificationRegisterURLs() can't find realpath for "/Users/mine/Library/Mobile Documents/com~apple~system~spotlight/mdlabels", was blocked at "/Users/morkgallagher/Library/Mobile Documents": 2 (No such file or directory)
    Dec 18 16:20:31 173-22-144-11.client.mchsi.com mdwrite[2355]: [ERROR] [0.001s] com.apple. UBItemStatusNotification.c:805 _do_UBItemStatusNotificationRegisterURLs() can't find realpath for "/Users/mine/Library/Mobile Documents/com~apple~system~spotlight/mdlabels", was blocked at "/Users/morkgallagher/Library/Mobile Documents": 2 (No such file or directory)
    Dec 18 16:44:38 173-22-144-11.client.mchsi.com Locum[2366]: Connection with distnoted server was invalidated
    Dec 18 17:02:34 173-22-144-11.client.mchsi.com mtmd[49]: Set snapshot time: 2012-12-18 17:02:36 -0600 (current time: 2012-12-18 17:02:34 -0600)
    Dec 18 17:02:34 173-22-144-11 kernel[0]: nspace-handler-set-snapshot-time: 1355871756
    This DNS change is only the lastest manifestation of what seems like an endless list. Can anybody give me some direction before I have to pay Apple to fix what I think they broke themselvesa?!?  BTW, I am not a tech. Thanking everyone who read this and especially to anyone who can help.

    Linc, thanks for the tips. I knew you'd have a good method. I asked for it because I have learned of some of the myths about OSX and it's need (or lack thereof) to be scrubbed, rinsed, and blown dry; suckering folks into buying all manner of utilities to keep your Mac spiffy at all times, when in fact it rarely needs any intervention at all because of its Unix background. In fact, I rarely shut mine down and I've learned that the system is actually designed to be left running under most circumstances.
    To keep your data secure the three most important things to know is backup, backup, backup. I use a third-party, cloud-based back-up system. It can automatically make backups every hour if that's what I want and I can supplement that anytime by simply dropping a file into the application's desktop interface.
    Since I last posted my Mac has been running smoothly and I've been able to install Parallels and Windows 7, as well as the VantagePoint software I mentioned. Though it crashed once this morning and I submit one line from the log file:
    12/20/12 10:31:00.639 AM appleeventsd[54]: BUG in libdispatch: 12C60 - 1510 - 0x4
    After a reboot, log entries spewed all manner of troubling messages, from those that are osascript-related to broken forks, etc. but as far as I know there were no actual crash logs generated until this afternoon, one being just a few minutes ago. Linc, would you be so kind to take a look and tell me if there's something I need to do?
    Process:    
    mds [434]
    Path:       
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata .framework/Versions/A/Support/mds
    Identifier: 
    mds
    Version:    
    707.3
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [1]
    User ID:    
    0
    Date/Time:  
    2012-12-20 16:01:07.242 -0600
    OS Version: 
    Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Crashed Thread:  4  Dispatch queue: com.apple.metadata.spotlightindex
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000bad
    VM Regions Near 0xbad:
    -->
    __TEXT            
    0000000109f9e000-000000010a0be000 [ 1152K] r-x/rwx SM=COW  /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Support/mds
    Application Specific Information:
    [0x112562000]/SourceCache/Spotlight_frameworks/Spotlight-707.3/index/ContentInde x/FlatStore.c:169: failed assertion 'pageSize >= pageEnd && pageSize && (__builtin_popcount(pageSize+int_sizeof(*page)) == 1)' /.Spotlight-V100/Store-V2/FA53EC3A-E90C-4259-B76B-4B236308D7CD/live.0.indexArra ys (hfs, t: 0x11, st: 0x1, f: 0x480d000) ps:56, pe:18624, pk:0, po:aac0, ss:20000 se:146c0
    [0x112669000]/SourceCache/Spotlight_frameworks/Spotlight-707.3/index/ContentInde x/PayloadIterator.c:681: failed assertion '!nxtLink |
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib   
    0x000000010bb7b686 mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x000000010bb7ac42 mach_msg + 70
    2   com.apple.CoreFoundation 
    0x000000010b1e2803 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation 
    0x000000010b1e7ee6 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation 
    0x000000010b1e76b2 CFRunLoopRunSpecific + 290
    5   mds                      
    0x0000000109faca54 0x109f9e000 + 59988
    6   libdyld.dylib            
    0x000000010b9a87e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x000000010bb7dd16 kevent + 10
    1   libdispatch.dylib        
    0x000000010b973dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib        
    0x000000010b9739ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib   
    0x000000010bb7dffa read + 10
    1   mds                      
    0x0000000109fa7ced 0x109f9e000 + 40173
    2   libsystem_c.dylib        
    0x000000010ba0c742 _pthread_start + 327
    3   libsystem_c.dylib        
    0x000000010b9f9181 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib   
    0x000000010bb7d6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x000000010ba0eeec _pthread_workq_return + 25
    2   libsystem_c.dylib        
    0x000000010ba0ecb3 _pthread_wqthread + 412
    3   libsystem_c.dylib        
    0x000000010b9f9171 start_wqthread + 13
    Thread 4 Crashed:: Dispatch queue: com.apple.metadata.spotlightindex
    0   com.apple.spotlight.index
    0x000000010a2262b1 mergeEntryFlat + 465
    1   com.apple.spotlight.index
    0x000000010a21cad2 mergeEntryFat + 642
    2   com.apple.spotlight.index
    0x000000010a212410 bt_mergeEntry + 208
    3   com.apple.spotlight.index
    0x000000010a2122d9 bt_mergeCallback + 345
    4   com.apple.spotlight.index
    0x000000010a2131e2 bt_mergeSet + 3346
    5   com.apple.spotlight.index
    0x000000010a22aa80 index_FlushCache + 1088
    6   com.apple.spotlight.index
    0x000000010a232e8c indexPrepareForSync + 220
    7   com.apple.spotlight.index
    0x000000010a220823 indexPrepareForSyncBulk + 493
    8   com.apple.spotlight.index
    0x000000010a22037d _CISyncContextSync + 149
    9   com.apple.spotlight.index
    0x000000010a21fc0c _ContentIndexSyncIndexBulk + 86
    10  com.apple.spotlight.index
    0x000000010a1e18fa syncIndex + 1364
    11  com.apple.spotlight.index
    0x000000010a1e1063 runLoop + 51
    12  com.apple.spotlight.index
    0x000000010a209691 work_fun + 662
    13  libdispatch.dylib        
    0x000000010b9710b6 _dispatch_client_callout + 8
    14  libdispatch.dylib        
    0x000000010b97247f _dispatch_queue_drain + 235
    15  libdispatch.dylib        
    0x000000010b9722f1 _dispatch_queue_invoke + 52
    16  libdispatch.dylib        
    0x000000010b972448 _dispatch_queue_drain + 180
    17  libdispatch.dylib        
    0x000000010b9722f1 _dispatch_queue_invoke + 52
    18  libdispatch.dylib        
    0x000000010b972448 _dispatch_queue_drain + 180
    19  libdispatch.dylib        
    0x000000010b9722f1 _dispatch_queue_invoke + 52
    20  libdispatch.dylib        
    0x000000010b9721c3 _dispatch_worker_thread2 + 249
    21  libsystem_c.dylib        
    0x000000010ba0ecab _pthread_wqthread + 404
    22  libsystem_c.dylib        
    0x000000010b9f9171 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib   
    0x000000010bb7d6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x000000010ba0eeec _pthread_workq_return + 25
    2   libsystem_c.dylib        
    0x000000010ba0ecb3 _pthread_wqthread + 412
    3   libsystem_c.dylib        
    0x000000010b9f9171 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib   
    0x000000010bb7d6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x000000010ba0eeec _pthread_workq_return + 25
    2   libsystem_c.dylib        
    0x000000010ba0ecb3 _pthread_wqthread + 412
    3   libsystem_c.dylib        
    0x000000010b9f9171 start_wqthread + 13
    Thread 4 crashed with X86 Thread State (64-bit):
      rax: 0xd62a2de7cde283a2  rbx: 0x000000000000aac0  rcx: 0x00000000002f4180  rdx: 0x00000000001430d0
      rdi: 0x0000000112258800  rsi: 0x0000000000000003  rbp: 0x00000001125605a0  rsp: 0x000000011255f450
       r8: 0x0000000000000007   r9: 0x00000000ccd96941  r10: 0x00007f92fb4219d0  r11: 0x00000000381b522a
      r12: 0x000000000000aac0  r13: 0x00007f92f9096650  r14: 0x0000000112560898  r15: 0x0000000000000000
      rip: 0x000000010a2262b1  rfl: 0x0000000000010206  cr2: 0x0000000000000bad
    Logical CPU: 3
    Binary Images:
    0x109f9e000 -   
    0x10a0bdff7  mds (707.3) <1448C11E-D2EC-305E-88C9-C6DAF1FEB535> /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Support/mds
    0x10a110000 -   
    0x10a114ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x10a120000 -   
    0x10a121fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
    0x10a12a000 -   
    0x10a197ff7  com.apple.framework.IOKit (2.0 - 755.18.10) <142E19DD-1C8D-3D61-ABC8-83994A73279F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x10a1c9000 -   
    0x10a398fff  com.apple.spotlight.index (10.7.0 - 707.3) <DB706194-BC57-3853-9993-95DC58D3A07C> /System/Library/PrivateFrameworks/SpotlightIndex.framework/Versions/A/Spotlight Index
    0x10a3fb000 -   
    0x10a3fbfff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x10a406000 -   
    0x10a40cfff  com.apple.DiskArbitration (2.5.1 - 2.5.1) <F7DAF7CC-5893-3F06-9168-3B0192B66D15> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x10a419000 -   
    0x10a775fff  com.apple.Foundation (6.8 - 945.11) <A5D41956-A354-3ACC-9355-BE200072223B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x10a99d000 -   
    0x10a9b0ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
    0x10a9ba000 -   
    0x10a9ccff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
    0x10a9d4000 -   
    0x10a9daff7  com.apple.MDSChannel (1.2 - 1.2) <05A6F55A-8197-316A-A127-DE6528F9B291> /System/Library/PrivateFrameworks/MDSChannel.framework/Versions/A/MDSChannel
    0x10a9e7000 -   
    0x10aa2aff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x10aa42000 -   
    0x10aa47fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x10aa55000 -   
    0x10ab75fff  com.apple.desktopservices (1.7.2 - 1.7.2) <CDE8C2C2-C505-31B0-8C61-E40E4EA364A5> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x10abeb000 -   
    0x10abeeff7  com.apple.ServerInformation (1.1 - 1) <0F1E39E4-5195-39ED-B91C-CA72BAD74820> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
    0x10abfb000 -   
    0x10abfefff  com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x10ac0a000 -   
    0x10aedafff  com.apple.security (7.0 - 55179.1) <639641EF-8156-3190-890C-1053658E044A> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x10b012000 -   
    0x10b020fff  com.apple.Librarian (1.1 - 1) <1635162F-239A-341E-83C7-710C55E254AF> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x10b02f000 -   
    0x10b050fff  com.apple.Ubiquity (1.2 - 243.10) <F97D3A33-2C8B-3CFF-AF75-A74866D42853> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x10b067000 -   
    0x10b068ff7  libSystem.B.dylib (169.3) <9089D72D-E714-31E1-80C8-698A8E8B05AD> /usr/lib/libSystem.B.dylib
    0x10b075000 -   
    0x10b18d92f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
    0x10b1b3000 -   
    0x10b39cfff  com.apple.CoreFoundation (6.8 - 744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x10b4fb000 -   
    0x10b547ff7  libauto.dylib (185.1) <73CDC482-16E3-3FC7-9BB4-FBA2DA44DBC2> /usr/lib/libauto.dylib
    0x10b55e000 -   
    0x10b75efff  libicucore.A.dylib (491.11.1) <CC318A27-878A-38CE-9292-1B98353FA9C7> /usr/lib/libicucore.A.dylib
    0x10b800000 -   
    0x10b868ff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
    0x10b8c6000 -   
    0x10b8ebff7  libc++abi.dylib (24.4) <E7BD9363-1D25-3551-A68A-2E2FF6ABECD7> /usr/lib/libc++abi.dylib
    0x10b920000 -   
    0x10b925fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
    0x10b92d000 -   
    0x10b93bfff  libcommonCrypto.dylib (60026) <2D6537F5-1B5E-305C-A1CF-D1FA80CA3939> /usr/lib/system/libcommonCrypto.dylib
    0x10b94a000 -   
    0x10b94ffff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
    0x10b95b000 -   
    0x10b962fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
    0x10b96f000 -   
    0x10b984ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
    0x10b9a0000 -   
    0x10b9a1ff7  libdnsinfo.dylib (453.18) <E7595861-ECF9-336E-9901-BED2620FAA80> /usr/lib/system/libdnsinfo.dylib
    0x10b9a6000 -   
    0x10b9a9ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
    0x10b9b1000 -   
    0x10b9b1fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
    0x10b9b7000 -   
    0x10b9bffff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
    0x10b9cc000 -   
    0x10b9d2fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
    0x10b9d9000 -   
    0x10b9dbfff  libquarantine.dylib (52) <4BE2E642-A14F-340A-B482-5BD2AEFD9C24> /usr/lib/system/libquarantine.dylib
    0x10b9e6000 -   
    0x10b9e7ff7  libremovefile.dylib (23.1) <DBBFAF35-AC78-3856-92F6-6E4FD9DF14A2> /usr/lib/system/libremovefile.dylib
    0x10b9f1000 -   
    0x10b9f2fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
    0x10b9f8000 -   
    0x10bac4fe7  libsystem_c.dylib (825.25) <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
    0x10bb0d000 -   
    0x10bb15ff7  libsystem_dnssd.dylib (379.32.1) <62AA0B84-188A-348B-8F9E-3E2DB08DB93C> /usr/lib/system/libsystem_dnssd.dylib
    0x10bb1c000 -   
    0x10bb52fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
    0x10bb6b000 -   
    0x10bb86ff7  libsystem_kernel.dylib (2050.18.24) <C0535565-35D1-31A7-A744-63D9F10F12A4> /usr/lib/system/libsystem_kernel.dylib
    0x10bb9a000 -   
    0x10bbc8ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
    0x10bbd3000 -   
    0x10bbe1ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
    0x10bbf0000 -   
    0x10bbfbfff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
    0x10bc0a000 -   
    0x10bc0bff7  libsystem_sandbox.dylib (220) <3C3B03CF-C525-3CB3-8557-62E91B93AC95> /usr/lib/system/libsystem_sandbox.dylib
    0x10bc11000 -   
    0x10bc13ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
    0x10bc1b000 -   
    0x10bc21ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
    0x10bc2a000 -   
    0x10bc4cff7  libxpc.dylib (140.41) <FAC04D8B-680E-325F-8F0C-DD69859D0E01> /usr/lib/system/libxpc.dylib
    0x10bc68000 -   
    0x10bcb7ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
    0x10bcc9000 -   
    0x10bd32fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
    0x10bd97000 -   
    0x10bda5ff7  libkxld.dylib (2050.18.24) <7027CE49-007D-3553-8FFA-3E3B428B2316> /usr/lib/system/libkxld.dylib
    0x10bdaa000 -   
    0x10bdb7fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x10bdc5000 -   
    0x10bf39fff  com.apple.CFNetwork (596.2.3 - 596.2.3) <6A16C2BD-1035-30F9-AE96-D9E3BB54A976> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x10bffd000 -   
    0x10c314ff7  com.apple.CoreServices.CarbonCore (1037.3 - 1037.3) <DF7CABCA-F2CB-345B-8EFF-F0F4E937B7FF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x10c395000 -   
    0x10c416fff  com.apple.Metadata (10.7.0 - 707.3) <A45D75C1-B311-39F0-AF4A-63FCCC098C1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x10c472000 -   
    0x10c518ff7  com.apple.CoreServices.OSServices (557.4 - 557.4) <841878A8-6F3E-300D-8F01-444B3CC1F41D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x10c57b000 -   
    0x10c608ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x10c651000 -   
    0x10c6aeff7  com.apple.AE (645.3 - 645.3) <FF867ACA-8628-3E5A-8FA0-AF429B42C5D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x10c6de000 -   
    0x10c78ffff  com.apple.LaunchServices (539.7 - 539.7) <DA7C602E-5E01-31B8-925D-B45360CA089F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x10c7e6000 -   
    0x10c817ff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x10c83c000 -   
    0x10c88dff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <E095637C-457F-3D8F-AE32-A032F9D5A46C> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x10c8c1000 -   
    0x10c9befff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
    0x10c9d7000 -   
    0x10cad4ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
    0x10cb0a000 -   
    0x10cb19ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
    0x10cb28000 -   
    0x10cb2cfff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
    0x10cb37000 -   
    0x10cb37fff  libOpenScriptingUtil.dylib (148.2) <B8061D13-C1B2-38D5-A723-9A98D64E67AC> /usr/lib/libOpenScriptingUtil.dylib
    0x10cb41000 -   
    0x10cb4efff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
    0x10cb55000 -   
    0x10cb5cfff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x10cb68000 -   
    0x10cb75ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x10cb82000 -   
    0x10cbeffff  com.apple.datadetectorscore (4.0 - 269.1) <B69645EB-C4BF-3D52-A49B-CB1A1A88512F> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x10cc2c000 -   
    0x10cc2dfff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
    0x10cc35000 -   
    0x10cc56ff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
    0x10cc66000 -   
    0x10cc7dfff  com.apple.GenerationalStorage (1.1 - 132.2) <3F5C87BD-D866-3732-8CB9-D23ED9784D6E> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x10cc87000 -   
    0x10cc9efff  com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x10ccb9000 -   
    0x10cce4fff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
    0x10ccf8000 -   
    0x10cd03ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x10cd10000 -   
    0x10cd2fff7  com.apple.ChunkingLibrary (2.0 - 133.2) <D2A746DE-002A-3C6C-961E-BE94E71DB835> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x10cd3d000 -   
    0x10cdb5fff  com.apple.DCERPC (1.5 - 53.1.1) <25F4A15A-5252-3C70-A1D0-8145357F78B8> /System/Library/PrivateFrameworks/DCERPC.framework/Versions/A/DCERPC
    0x10cde0000 -   
    0x10ce1afff  com.apple.GSS (3.0 - 2.0) <0BDF8090-5EF4-3759-94DE-8521D74188AA> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x10ce3f000 -   
    0x10ce58ff7  com.apple.SMBClient (1.8 - 1.8) <B30889AB-8E45-3E57-9DC8-1212E2B87A95> /System/Library/PrivateFrameworks/SMBClient.framework/Versions/A/SMBClient
    0x10ce6a000 -   
    0x10ceecfff  com.apple.Heimdal (3.0 - 2.0) <660A6C64-4912-32C8-A332-B64164032A2D> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x10cf1b000 -   
    0x10cf3aff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
    0x10cf45000 -   
    0x10cf50fff  com.apple.CommonAuth (3.0 - 2.0) <74A86DDD-57D0-3178-AB74-E1F31DBFFC39> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x10cf57000 -   
    0x10cf59fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x10cf63000 -   
    0x10cf70fff  com.apple.KerberosHelper (4.0 - 1.0) <6815439D-1A03-3251-99FE-CC24CF4C93C5> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x10cf81000 -   
    0x10cf81fff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x10cf88000 -   
    0x10d05aff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x10d0c1000 -   
    0x10d1daff7  com.apple.ImageIO.framework (3.2.0 - 845) <553B9828-A7D9-3AE4-A214-1C33417545FD> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x10d238000 -   
    0x10dbc8c67  com.apple.CoreGraphics (1.600.0 - 324.6) <DCC70C6E-AB6D-3457-A823-7569CB29B107> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x10dcd7000 -   
    0x10dd57ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x10dd84000 -   
    0x10de41ff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x10de8a000 -   
    0x10dee0fff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x10df18000 -   
    0x10df2bff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x10df3d000 -   
    0x10df97fff  com.apple.print.framework.PrintCore (8.1 - 387.1) <1FA17B75-33E6-35BD-9198-35F92E37B248> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x10dfc7000 -   
    0x10e006ff7  com.apple.QD (3.42 - 285) <8DF36FCA-C06B-30F4-A631-7BE2FF7E56D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x10e026000 -   
    0x10e03afff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x10e053000 -   
    0x10e057fff  com.apple.IOSurface (86.0.3 - 86.0.3) <C121DE83-ED12-3DC1-BDB3-4FCB29AB0571> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x10e066000 -   
    0x10e066fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x10e06f000 -   
    0x10e17afff  libFontParser.dylib (84.5) <617A7D30-C7BC-39FC-A1FE-59367B4A5719> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x10e1de000 -   
    0x10e22dff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x10e256000 -   
    0x10e3f1fef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x10e418000 -   
    0x10e418fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x10e421000 -   
    0x10e489fff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x10e494000 -   
    0x10e52efff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x10e53d000 -   
    0x10e934fff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x10e99c000 -   
    0x10eb22fff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x10eb50000 -   
    0x10eb78fff  libJPEG.dylib (845) <A32618D7-FB91-3EE2-A105-5407B2F3F8D8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x10eb82000 -   
    0x10ebd7ff7  libTIFF.dylib (845) <ADCB4683-69EB-318B-8BE7-5FDF38BCADAF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x10ebea000 -   
    0x10ec0afff  libPng.dylib (845) <C3CDD2B4-3CB0-3F6D-8411-DAAF267E952B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x10ec1a000 -   
    0x10ec1efff  libGIF.dylib (845) <2690CE83-E934-3EF8-A30A-996EDADCE3E4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x10ec25000 -   
    0x10ed27fff  libJP2.dylib (845) <405CAF25-0AA5-3C6B-A4A6-94471A1EDD2F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x10ed52000 -   
    0x10ed55fff  libRadiance.dylib (845) <E8956A35-494E-3014-8B86-362D32576116> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x10ed5a000 -   
    0x10ed9efff  libcups.2.dylib (327) <9B3F3321-D2BC-3195-BF20-4008FC52A390> /usr/lib/libcups.2.dylib
    0x10edb7000 -   
    0x10edd9ff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x10edf3000 -   
    0x10eee8fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
    0x10eefe000 -   
    0x10fb2bff7  com.apple.AppKit (6.8 - 1187.34) <1FF64844-EB62-3F96-AED7-6525B7CCEC23> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x110227000 -   
    0x11026afff  com.apple.RemoteViewServices (2.0 - 80.5) <F3A897C9-A277-3B56-8FB3-2BC2C10C33BF> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x1102a4000 -   
    0x1103f5fff  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <833DA682-A3C1-39E7-AEC3-9EDC734DE2A9> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x11047f000 -   
    0x11047fffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <29E2C990-3617-3FA2-BDD7-DB7DF493E443> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x110486000 -   
    0x1106bbff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x1107c3000 -   
    0x110af3ff7  com.apple.HIToolbox (2.0 - 625) <317F75F7-4B0F-35F5-89A7-F20BA60AC944> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x110c4a000 -   
    0x110df8fff  com.apple.QuartzCore (1.8 - 304.0) <897FAA5D-FF13-33FE-878B-B164D684F019> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x110eb1000 -   
    0x110ebbfff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x110ec5000 -   
    0x110f8aff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x111002000 -   
    0x11105ffff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <B3198BD6-EA1D-3E5E-ADD4-37D8E6B72678> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x111084000 -   
    0x11109afff  com.apple.MultitouchSupport.framework (235.28 - 235.28) <BD78B16E-9B5A-3E07-93B4-13AD1A538CAC> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x1110b0000 -   
    0x1110d7ff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x1110fd000 -   
    0x11110cff7  com.apple.opengl (1.8.6 - 1.8.6) <720CC06C-0D01-37AE-BB3D-D7F0242B262A> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x111118000 -   
    0x1111f2ff7  com.apple.backup.framework (1.4.1 - 1.4.1) <A3CFCA9E-717C-302D-821B-16FD35E6673F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x111279000 -   
    0x1112a0fff  com.apple.framework.familycontrols (4.1 - 410) <AE49B2AB-7D2B-3D52-8E21-60EBEA1A38E6> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x1112c1000 -   
    0x11135fff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x111397000 -   
    0x1113c1ff7  com.apple.CoreVideo (1.8 - 99.3) <C424838A-889C-39E5-8108-FD05C93D26A0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x1113dd000 -   
    0x111681fff  com.apple.CoreImage (8.2.2 - 1.0.1) <930B0B23-DD84-3B0C-B5A9-C09B7068A6F0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x111767000 -   
    0x1117beff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x1117ea000 -   
    0x111834ff7  libGLU.dylib (8.6.1) <DF45C1E3-3884-3991-B84F-F39B482E8BF8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x111844000 -   
    0x11184afff  libGFXShared.dylib (8.6.1) <CF55E720-1B9E-3E24-A1DA-7FA8B261CD8E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x111852000 -   
    0x111866fff  libGL.dylib (8.6.1) <2E00615F-97F5-34EB-BE07-75A24F3C18D7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x11187a000 -   
    0x1118b7fe7  libGLImage.dylib (8.6.1) <7F31DD61-3110-3541-A9BB-035CD1262E50> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x1118c3000 -   
    0x1118c5fff  libCVMSPluginSupport.dylib (8.6.1) <7EFDA31E-E463-3897-A8DC-7FD266EB713E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x1118ca000 -   
    0x1118cefff  libCoreVMClient.dylib (24.4) <55F71158-ADEE-3863-92E9-4772DCEA8E31> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x1118d9000 -   
    0x1118e5fff  com.apple.CrashReporterSupport (10.8.2 - 415) <55783BF9-125E-3F9C-A412-6A095ECD9353> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x1118fb000 -   
    0x111951ff7  com.apple.opencl (2.1.20 - 2.1.20) <AF142CA4-EA1D-31B0-A48F-AA2B75D4309E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x111967000 -   
    0x111d84fff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x111f99000 -   
    0x111f99fff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x111fa1000 -   
    0x112020ff7  com.apple.securityfoundation (6.0 - 55115.4) <8676E0DF-295F-3690-BDAA-6C9C1D210B88> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x112066000 -   
    0x11206ffff  com.apple.CommerceCore (1.0 - 26) <997CD214-BC78-3C61-A1B8-813EA1CB9997> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x11207c000 -   
    0x112116fff  com.apple.CoreSymbolication (3.0 - 87) <3D9CBE8D-F047-3DFA-B067-F9589E2AF8BA> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x112162000 -   
    0x1121beff7  com.apple.Symbolication (1.3 - 93) <97F3B1D2-D81D-3F37-87B3-B9A686124CF5> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x112201000 -   
    0x112237fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x112698000 -   
    0x1126c6fff  com.apple.CoreServicesInternal (154.2 - 154.2) <3E6196E6-F3B4-316F-9E1F-13B6B9694C7E> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesIn ternal
    0x119cd7000 -   
    0x119df0ff7  libmecab.1.0.0.dylib (359.50) <BDE1F58F-ED72-34BB-9027-2A7AA384F82E> /usr/lib/libmecab.1.0.0.dylib
    0x7fff69b9e000 -
    0x7fff69bd293f  dyld (210.2.3) <36CAA36E-72BC-3E48-96D9-B96A2DF77730> /usr/lib/dyld
    External Modification Summary:
      Calls made by other processes targeting this process:
    task_for_pid: 6
    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: 2082
    thread_create: 0
    thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=119.0M resident=105.4M(89%) swapped_out_or_unallocated=13.6M(11%)
    Writable regions: Total=200.0M written=37.3M(19%) resident=43.1M(22%) swapped_out=0K(0%) unallocated=156.9M(78%)
    REGION TYPE                 
    VIRTUAL
    ===========                 
    =======
    CoreServices                  
    2568K
    MALLOC                       
    136.6M
    MALLOC guard page               
    96K
    Memory tag=241                 
    392K
    Memory tag=243                
    24.0M
    Memory tag=243 (reserved)     
    6144K   
    reserved VM address space (unallocated)
    Memory tag=244                
    5440K
    Memory tag=246                
    4096K
    Memory tag=246 (reserved)     
    4096K   
    reserved VM address space (unallocated)
    Memory tag=247                
    3072K
    Memory tag=255                 
    288K
    STACK GUARD                   
    56.0M
    Stack                         
    11.0M
    VM_ALLOCATE                    
    424K
    __DATA                        
    10.5M
    __IMAGE                        
    528K
    __LINKEDIT                    
    24.5M
    __TEXT                        
    94.8M
    __UNICODE                      
    544K
    mapped file                  
    249.7M
    shared memory                 
    1136K
    ===========                 
    =======
    TOTAL                        
    635.2M
    TOTAL, minus reserved VM space
    625.2M
    Trust me when I tell you how much I appreciate your help.

  • Booklet: clean install Windows 7 Starter on Kingst...

    I bought a Kingston SSDNow V+180 SVP180S2/64G 64GB to replace the original HDD.
    I had a lot of trouble cloning the drive (or actual the restore operation). Both restoring the Windows partition and the System partition failed.
    I decide to start from scratch and just execute a clean install of Windows 7 Starter.
    The advantage of this way is you only need a 4 Gb USB  Flash Drive and no other hardware (besides the new 1.8 SSD...) This guide is also very useful when the original HDD is broken (and no system restore is available).
    Ingredients (where to obtain is explained below):
    - 1.8" SSD
    - USB Flash Drive (minimum) 4Gb
    - Windows 7 key of Booklet
    - Windows 7 ISO file (x86 version)
    - Windows 7 USB DVD Download Tool
    - Nokia Booklet Drivers
    The Windows 7 key of the booklet can be found behind the battery. Just remove the battery pack and there is the original Microsoft Windows 7 product key.
    As the Nokia Booklet doesn't have a DVD-ROM and it's not supplied with the Windows 7 DVD, you can download the Windows 7 ISO file from here (make sure it’s the x86 version):
    http://msft-dnl.digitalrivercontent.net/msvista/pub/X15-65804/X15-65804.iso
    I got this information from here:  http://mrintech.com/download-iso-file-create-dvd-activate-windows-7-x86-and-x64-with-genuine-product...
    I also executed the "Remove Edition Configuration (EI.cfg) File from Windows 7 ISO", but wait until proceeding; I will come back to that...
    Also download the Windows 7 USB DVD Download Tool from here:
    http://images2.store.microsoft.com/prod/clustera/framework/w7udt/1.0/en-us/Windows7-USB-DVD-tool.exe (When the link is broken, just use Google).
    Please note: nothing illegal is going on downloading this software!
    Install and execute the Windows 7 USB DVD Download Tool.
    When asked, select the ISO as source and the USB Flash Drive as target.
    The tool formats the USB Flash Drive and the files are copied to it as well.
    (I executed this on a Windows 7 machine, but I don't expect differences when executed on a XP machine).
    When the tool is ready do the following.
    Search on the USB Flash Drive for the file "ei.cfg"
    I used the tool to remove this file from the ISO, but it was back on the Flash Drive .
    You will have to remove it otherwise Windows 7 Home is installed (result: you can't use the original Booklet key).
    How to replace the HDD for the SSD can be found over here:
    http://pc-level.com/2011/07/how-to-disassemble-nokia-booklet-3g/
    Plug the USB Flash Drive into the Nokia Booklet and power the Booklet up.
    Hit the F12 button and select the USB Flash Drive to boot from.
    When asked, select Windows 7 Starter to install.
    The installation takes a while, but in the end you will see the Windows 7 desktop and are almost ready.
    It's very important to disable TRIM and you will see a an excellent performance increase when you execute the following:
    Open the command prompt (for example):
    Start -> All Programs -> Accessories -> Command Prompt
    type:
    fsutil behavior set disabledeletenotify 1
    To check whether TRIM is disabled execute:
    fsutil behavior query disabledeletenotify
    The result should be: 1
    Reboot the booklet, just to be sure.
    Install the drivers from Nokia: http://europe.nokia.com/support/product-support/booklet-3g/software 
    Execute a Windows Update.
    The Windows Experience Index shows me 5.9 with the SSD.

    Don't worry Reserter, your English is ok 
    Concerning your problem two things come to mind:
    - did you disable TRIM? It's very important to disable this option because the chipset can't handle TRIM. After I disabled TRIM a serious improvement was noticeable.
    - the reason of the clean install initially was because I wanted a SSD (solid state drive) instead of a HDD (hard disk drive). The factory installed HDD is slow and a SSD drive improves performance of the Nokia Booklet dramatically.
    I would consider to buy a 1.8" SSD... The booklet starts up in an acceptable time and is really useful as a netbook now. (buy an enclosure for the original HDD and you have external storage as well).

  • Yoga 2 Pro Ideapad windows clean install

    Dear Friends,
    I have just bought an Intel I7-4510U based Yoga 2 Pro winth pre-installed Windows 8.1. I would like to have a clean system without software add-ons. Can I clean-install Windows 8.1? In other words, can I boot from an USB pendrive in order to install a standard Windows 8.1 OS? Do I need Windows 8.1 Key and where can I find it?
    Many thanks in advance for your kind help
    Sergio

    Not all the drivers work with Windows 7.
    That said, you cannot legally flash a Windows 7 SLIC.
    If you want a bloatware free Window installation, you might as well buy/acquire a legal Windows 7/8.x key. Once done, just delete all partitions and reformat the computer.
    I personally used iOrbit Uninstaller in advance mode and had it remove all the BS leftover files + registry entries. Effectively, it did the same job with less effort.
    Also, as long as you don't change the partition types/size, you should be able to revert back to factory install using the OKR button. However, installing a fresh copy of Windows will force you to change from EFI GTP to MBR. Once you do that, you will break the OKR system. Hence why I suggest you delete all partitions and at least recover some lost/dead space.
    As I explained elsewhere:
    OKR only works if no changes to the partition type and size are made. Once the partitions have been altered, the system is broken and cannot be used. Only $69 (if I am not mistaken) recovery disks can fix this issue.
    It sucks and I think the price is absurd. However, shy from installing a retail version of Windows, this is your only option.
    I am not sure about the legality of torrent sites in this case. After all, your BIOS stores a legal key. However, Lenovo might be selling the images not the license. If that is the case, torrenting an image of these recovery CDs might be illegal. 
    Regardless of the fact, you will still need to buy an external CD drive if you go the CD recovery route (unless you use another computer to make the CDs into a bootable recovery disk).

  • Cisco unity express 8.6.3 can't clean install 8.6.1 or 8.6.4 in UC560

    I have new buy UC560 device for cisco.
    The CUE version is 8.6.3 in ISE module.
    I can't find CUE 8.6.3 japan language package.
    So i need to upgrade 8.6.4 or downgrade 8.6.1. But the hardware can't to upgrade or downgrade.
    se-30-1-1-2# software install clean url ftp://X.X.X.X/cue-vm-k9.ise.8.6.4.pkg user XXXX password XXXX
    WARNING:: This command will install the necessary software to
    WARNING:: complete a clean install. It is recommended that a backup be done
    WARNING:: before installing software.
    Would you like to continue?[confirm]
    Software install using RAM
    Downloading ftp cue-vm-k9.ise.8.6.4.pkg
    Bytes downloaded : 262258
    Validating package signature ... done
    - Parsing package manifest files... complete.
    Validating installed manifests ..............complete.
    - Checking Package dependencies... Service Engine Bootloader can not be installed on this platform/chassis combination.
    ===CUE Device Information===
    # of Processors:              2
    CPU:                          e500v2
    Revision:                     3.0 (pvr 8021 0030)
    BogoMIPS:                     133.12
    SKU:                          Unavailable
    UDI:                          Unavailable
    Chassis Type:                 UC500
    Chassis Serial:               FGL163610PT
    Module Type:                  Integrated-Service-Engine
    Module Serial:
    Compact Flash:                2097MB
    SDRAM (MByte):                1024
    se-30-1-1-2#
    ===Device Software Information===
    Installed Packages:
    - Installer (Installer application) (8.6.3.0)
    - ServiceManager (Multiple Service Manager) (8.6.3)
    - Thirdparty (Service Engine Thirdparty Code) (8.6.3)
    - Bootloader (Primary) (Service Engine Bootloader) (1.0)
    - Infrastructure (Service Engine Infrastructure) (8.6.3)
    - Global (Global manifest) (8.6.3)
    - Auto Attendant (Service Engine Telephony Infrastructure) (8.6.3)
    - Voice Mail (Voicemail application) (8.6.3)
    - Bootloader (Secondary) (Service Engine Bootloader) (1.0.0)
    - Core (Service Engine OS Core) (8.6.3)
    - GPL Infrastructure (Service Engine GPL Infrastructure) (8.6.3)
    Installed Plug-ins:
    - CUE Voicemail Language Support (Languages global pack) (8.6.3)
    - Madrox Multi-app Support (Multi-app support) (8.6.3)
    - CUE Voicemail US English (English language pack) (8.6.3)
    ==CUE License Information===
    se-30-1-1-2# show license status application
    voicemail enabled: 12 ports, 12 sessions, 125 mailboxes
    ivr disabled, no unexpired installed ivr session license available
    se-30-1-1-2#se-30-1-1-2# show license status application
    voicemail enabled: 12 ports, 12 sessions, 125 mailboxes
    ivr disabled, no unexpired installed ivr session license available
    se-30-1-1-2#
    ==UC560 Information==
    MPC8378 CPU Rev: Part Number 0x80C4, Revision ID 0x21
    30 User Licenses
    4 Gigabit Ethernet interfaces
    2 terminal lines
    1 Virtual Private Network (VPN) Module
    4 Voice FXO interfaces
    4 Voice FXS interfaces
    1 Voice MoH interface
    1 cisco service engine(s)
    256K bytes of non-volatile configuration memory.
    250880K bytes of ATA CompactFlash (Read/Write)

    You can not not install ISE CUE software on UC500, but only UC500 specific CUE software.
    And, (I don't know if that is the case), if the language you need is supported on CUE for ISR but not on UC500 CUE, there is no solution, and you can only complain to Cisco for not having delivered the languages they had publicily promised to the public.
    Furthemore to that, it apperas there is a bug in 8.6.3 that makes so mailbox caller guide is played with default system language instead of user setting langiage.

  • Clean install of windows 8 crashing with BSoD: "attempted execute of noexecute memory"

    I recently bought this computer (sorry for hyperlink, but it is much easier than trying to list all the components):
    http://www.newegg.com/Product/Product.aspx?Item=N82E16883227593
    I added a Samsung 840 EVO 250gb SSD to it, and then I attempted to do a clean install of windows 8.1 onto the SSD from
    the reinstall DVD that came with the system. Windows 8.1 appears to install correctly, but when the computer restarts to load windows for the first time, I get a BSoD with the error "attempted execute of noexecute memory". I tried reinstalling, but
    got the same error.
    Note that for testing purposes, I installed windows 7 on the SSD, and it works great. Unfortunately, I do not have a windows
    7 key, so this is only a temporary solution. I would like to figure out how to get windows 8.1 on the SSD and running on the my computer.
    Thank you in advance for any help or advice that you can give me.
    Here are the minidump files if helpful:
     https://drive.google.com/file/d/0B1fPQ--DwbjOV2ZuT0xoeWR6QXc/view?usp=sharing
     https://drive.google.com/file/d/0B1fPQ--DwbjOOUtrWUhfZmRMM1E/view?usp=sharing

    P
    These were Related to RTL8192cu.sys USB NDIS Driver from Realtek Semiconductor Corporation  I would remove the current driver and install the newest driver available
    Microsoft (R) Windows Debugger Version 6.3.9600.17237 AMD64
    Copyright (c) Microsoft Corporation. All rights reserved.
    Loading Dump File [C:\Users\Ken\Desktop\120414-8515-01.dmp]
    Mini Kernel Dump File: Only registers and stack trace are available
    ************* Symbol Path validation summary **************
    Response Time (ms) Location
    Deferred SRV*f:\symbols*http://msdl.microsoft.com/download/symbols
    Symbol search path is: SRV*f:\symbols*http://msdl.microsoft.com/download/symbols
    Executable search path is:
    Windows 8 Kernel Version 9600 MP (8 procs) Free x64
    Product: WinNt, suite: TerminalServer SingleUserTS Personal
    Built by: 9600.16384.amd64fre.winblue_rtm.130821-1623
    Machine Name:
    Kernel base = 0xfffff801`1981d000 PsLoadedModuleList = 0xfffff801`19ae49b0
    Debug session time: Thu Dec 4 05:16:31.298 2014 (UTC - 5:00)
    System Uptime: 0 days 0:00:12.923
    Loading Kernel Symbols
    Loading User Symbols
    Loading unloaded module list
    * Bugcheck Analysis *
    Use !analyze -v to get detailed debugging information.
    BugCheck FC, {ffffd000217aaa00, 8000000104112963, ffffd000217aa7a0, 2}
    *** WARNING: Unable to verify timestamp for rtwlanu.sys
    *** ERROR: Module load completed but symbols could not be loaded for rtwlanu.sys
    Probably caused by : rtwlanu.sys ( rtwlanu+10d69a )
    Followup: MachineOwner
    2: kd> !analyze -v
    * Bugcheck Analysis *
    ATTEMPTED_EXECUTE_OF_NOEXECUTE_MEMORY (fc)
    An attempt was made to execute non-executable memory. The guilty driver
    is on the stack trace (and is typically the current instruction pointer).
    When possible, the guilty driver's name (Unicode string) is printed on
    the bugcheck screen and saved in KiBugCheckDriver.
    Arguments:
    Arg1: ffffd000217aaa00, Virtual address for the attempted execute.
    Arg2: 8000000104112963, PTE contents.
    Arg3: ffffd000217aa7a0, (reserved)
    Arg4: 0000000000000002, (reserved)
    Debugging Details:
    CUSTOMER_CRASH_COUNT: 1
    DEFAULT_BUCKET_ID: WIN8_DRIVER_FAULT
    BUGCHECK_STR: 0xFC
    PROCESS_NAME: System
    CURRENT_IRQL: 0
    ANALYSIS_VERSION: 6.3.9600.17237 (debuggers(dbg).140716-0327) amd64fre
    TRAP_FRAME: ffffd000217aa7a0 -- (.trap 0xffffd000217aa7a0)
    NOTE: The trap frame does not contain all registers.
    Some register values may be zeroed or incorrect.
    rax=ffffd000217aaa08 rbx=0000000000000000 rcx=ffffe00003734a70
    rdx=ffffd000217aa9f0 rsi=0000000000000000 rdi=0000000000000000
    rip=ffffd000217aaa00 rsp=ffffd000217aa938 rbp=ffffd000217aa9a8
    r8=ffffd000217aaa00 r9=ffffd000217aa9f8 r10=ffffd00020640000
    r11=ffffd000217aa940 r12=0000000000000000 r13=0000000000000000
    r14=0000000000000000 r15=0000000000000000
    iopl=0 nv up ei ng nz na po nc
    ffffd000`217aaa00 0000 add byte ptr [rax],al ds:ffffd000`217aaa08=00
    Resetting default scope
    LAST_CONTROL_TRANSFER: from fffff801199c3e32 to fffff8011996d0a0
    STACK_TEXT:
    ffffd000`217aa578 fffff801`199c3e32 : 00000000`000000fc ffffd000`217aaa00 80000001`04112963 ffffd000`217aa7a0 : nt!KeBugCheckEx
    ffffd000`217aa580 fffff801`19853bc6 : 80000001`04112963 00000000`00000000 ffffd000`217aa720 00000000`00000008 : nt! ?? ::FNODOBFM::`string'+0x468a2
    ffffd000`217aa5c0 fffff801`19885ffd : 00000000`00000008 ffffe000`02759880 ffffd000`217aa7a0 ffffe000`052a0000 : nt!MiSystemFault+0xaf6
    ffffd000`217aa660 fffff801`1997732f : 00000000`00000008 ffffe000`03734a70 00000000`00000000 ffffd000`217aa7a0 : nt!MmAccessFault+0x7ed
    ffffd000`217aa7a0 ffffd000`217aaa00 : fffff800`01db969a ffffe000`03734a70 ffffe000`03000000 00000000`00000001 : nt!KiPageFault+0x12f
    ffffd000`217aa938 fffff800`01db969a : ffffe000`03734a70 ffffe000`03000000 00000000`00000001 00000000`00000000 : 0xffffd000`217aaa00
    ffffd000`217aa940 ffffe000`03734a70 : ffffe000`03000000 00000000`00000001 00000000`00000000 ffffd000`217aaa08 : rtwlanu+0x10d69a
    ffffd000`217aa948 ffffe000`03000000 : 00000000`00000001 00000000`00000000 ffffd000`217aaa08 fffff800`01ccf62e : 0xffffe000`03734a70
    ffffd000`217aa950 00000000`00000001 : 00000000`00000000 ffffd000`217aaa08 fffff800`01ccf62e 00000000`00000004 : 0xffffe000`03000000
    ffffd000`217aa958 00000000`00000000 : ffffd000`217aaa08 fffff800`01ccf62e 00000000`00000004 ffffe000`03000000 : 0x1
    STACK_COMMAND: kb
    FOLLOWUP_IP:
    rtwlanu+10d69a
    fffff800`01db969a ?? ???
    SYMBOL_STACK_INDEX: 6
    SYMBOL_NAME: rtwlanu+10d69a
    FOLLOWUP_NAME: MachineOwner
    MODULE_NAME: rtwlanu
    IMAGE_NAME: rtwlanu.sys
    DEBUG_FLR_IMAGE_TIMESTAMP: 51dd743f
    FAILURE_BUCKET_ID: 0xFC_rtwlanu+10d69a
    BUCKET_ID: 0xFC_rtwlanu+10d69a
    ANALYSIS_SOURCE: KM
    FAILURE_ID_HASH_STRING: km:0xfc_rtwlanu+10d69a
    FAILURE_ID_HASH: {095bf10a-821a-1045-f529-a4601d2cff4f}
    Followup: MachineOwner
    2: kd> lmvm rtwlanu
    start end module name
    fffff800`01cac000 fffff800`01ea4000 rtwlanu T (no symbols)
    Loaded symbol image file: rtwlanu.sys
    Image path: \SystemRoot\system32\DRIVERS\rtwlanu.sys
    Image name: rtwlanu.sys
    Timestamp: Wed Jul 10 10:48:31 2013 (51DD743F)
    CheckSum: 001EE009
    ImageSize: 001F8000
    Translations: 0000.04b0 0000.04e4 0409.04b0 0409.04e4
    Wanikiya and Dyami--Team Zigzag

  • Can't clean install Yosemite to 3rd party SSD in 2008 MBP

    Hi all.
    I'm a longtime lurker, first time poster. I seem to have really stymied myself with trying to upgrade my ol' reliable MBP.
    My machine:
    Late 2008 15" MacBook Pro
    2.4Ghz Core 2 Duo
    4GB RAM (3rd party Crucial, 2 matching 2GB sticks - it originally shipped with 2 1GB sticks, I upgraded it around 2 years ago)
    120GB SSD (3rd party OCZ Agility III, it originally shipped with a 500GB Hitachi HDD - I've just installed this and am trying to use it)
    No optical drive (it broke years ago)
    Here is what I've done so far:
    Removed the 500GB HDD and inserted the 120GB SSD
    Created a bootable USB stick with the Yosemite installer on it
    Booted from said USB stick and used Disk Utility to format the SSD with a GUID partition table, with 1 HFS+ (Journaled) formatted partition
    Begun the Yosemite installer
    The progress bar crawled for about 3 hours until it got about halfway, then it failed out with an error. Unfortunately I stupidly don't have a copy of the error logs
    Booted from the USB stick again
    Now the SSD does not show up at all in Disk Utility and I am not given the option of it when attempting to install Yosemite - so I can't reformat the drive or attempt another install
    I have tried to run the Apple Hardware Test (to see if there are any problems with the RAM that might have triggered the error installing Yosemite), but unfortunately this does not seem possible on my machine. Since it is a late 2008 model with no optical drive, from the research I've done there seems to be no way I can run it. It can't do an Internet Hardware Test, and the 'trick' of holding F2 during bootup won't work because apparently you need to have the original shipping OS installed. From memory this machine shipped with Leopard - the OS on my old 500GB HDD is Snow Leopard however.
    Does anyone have any ideas for what I can do next here? My goal is simply to do a clean install of Yosemite onto my SSD. I'm at a bit of a loss, especially since the SSD isn't even showing up in Disk Utility now.
    An additional detail: There isn't anything in the slot where the optical drive should be. 2 years ago I opened my machine and removed it, replacing it with a 2.5" 'optibay' drive caddy. Unfortunately it was a pretty cheap caddy and it never functioned properly, so I removed it before beginning the above process. There is just an empty space now inside the machine, since I threw away my old broken optical drive years ago. I don't know if this may also be causing problems.
    Many thanks for any and all assistance!

    Thanks for responding Leopardus.
    I tried holding Cmd+R at startup last night, but unfortunately all I got is a flashing folder with a question mark on it, presumably indicating that it can't find any files.
    Internet Recovery is unfortunately not possible on my computer, I believe this feature was only included with Macs that shipped with Lion or later versions of OS X (mine shipped with Leopard).
    The problem in the thread that you linked seems a bit different to mine - I think the core issue for me is that the SSD is now not recognised at all by Disk Utility, meaning I cannot even format it to try installing again.
    Does anyone have any suggestions as to how I can access this 'invisible' SSD? I am considering buying a USB to SATA cable and connecting it to a friend's Mac.

  • Persisting kernel panics with mountain lion (clean install)

    hi, I could really have some help on recent kernel panics I am experiecing on my 2009 MacBook Pro with Mountain lion installed. Here and there I have been doing some reading but I am not a techy, most of it I do not understand.
    Last kernel panic occured while I was copying a large file (998mb) from network storage. Before a fresh install kernel panics happend literally any time and I could not pin point any reasons.. At the moment I have no third-party software installed except Spotify...
    I also have recently replaced my HDD with an SSD. Currently 8gb of 1066mhz memory is installed
    This is log of the latest kernel panic:
    Sat Sep  1 23:42:29 2012
    panic(cpu 0 caller 0xffffff80038b7b95): Kernel trap at 0xffffff80038876bc, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0xffffff84098c6f70, CR3: 0x000000000649d000, CR4: 0x0000000000000660
    RAX: 0x0000000000000001, RBX: 0xffffff84098c6f48, RCX: 0xffffff8016494550, RDX: 0x0000000000000821
    RSP: 0xffffff80eab43710, RBP: 0xffffff80eab43730, RSI: 0x000000002789ac07, RDI: 0xffffff8007c2b2d0
    R8:  0x0000000000000001, R9:  0x0000000000000001, R10: 0xffffff8114227000, R11: 0xffffff801734fe60
    R12: 0xffffff8007c2b2d0, R13: 0xffffff80eab43820, R14: 0xffffff801b63c4c0, R15: 0x00000000000c1000
    RFL: 0x0000000000010286, RIP: 0xffffff80038876bc, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0xffffff84098c6f70, Error code: 0x0000000000000000, Fault CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80eab433b0 : 0xffffff800381d5f6
    0xffffff80eab43420 : 0xffffff80038b7b95
    0xffffff80eab435f0 : 0xffffff80038ce4ad
    0xffffff80eab43610 : 0xffffff80038876bc
    0xffffff80eab43730 : 0xffffff8003881a66
    0xffffff80eab43a80 : 0xffffff800385e164
    0xffffff80eab43ae0 : 0xffffff8003c51bb7
    0xffffff80eab43be0 : 0xffffff8003c51e5a
    0xffffff80eab43c10 : 0xffffff7f84fc6720
    0xffffff80eab43d20 : 0xffffff7f84f9dc47
    0xffffff80eab43d30 : 0xffffff7f84f74e82
    0xffffff80eab43d40 : 0xffffff7f84f9dc23
    0xffffff80eab43d50 : 0xffffff7f84f72f96
    0xffffff80eab43d60 : 0xffffff7f84f9dd40
    0xffffff80eab43d70 : 0xffffff7f84f7464c
    0xffffff80eab43db0 : 0xffffff7f84f72e8e
    0xffffff80eab43de0 : 0xffffff7f84f76f9f
    0xffffff80eab43e00 : 0xffffff7f849402a4
    0xffffff80eab43e20 : 0xffffff7f84940237
    0xffffff80eab43e50 : 0xffffff7f84f8e8cc
    0xffffff80eab43e80 : 0xffffff7f84f735d2
    0xffffff80eab43ed0 : 0xffffff7f84f7159f
    0xffffff80eab43ef0 : 0xffffff8003c47078
    0xffffff80eab43f30 : 0xffffff8003c45b8a
    0xffffff80eab43f80 : 0xffffff8003c45cb9
    0xffffff80eab43fb0 : 0xffffff80038b2677
          Kernel Extensions in backtrace:
             com.apple.GeForce(8.0)[4B9BE287-5251-398E-96B0-BB16C9BFB2D9]@0xffffff7f84f6d000 ->0xffffff7f8502ffff
                dependency: com.apple.NVDAResman(8.0.0)[6A699209-FB98-316B-A3C0-DCA82AA8C86B]@0xffffff7f83f 0a000
                dependency: com.apple.iokit.IONDRVSupport(2.3.4)[99CA4184-8D92-31B2-8726-46139E8E3DFF]@0xff ffff7f83ef6000
                dependency: com.apple.iokit.IOPCIFamily(2.7)[8C9E06A4-13D0-33F5-A377-9E36F0ECC229]@0xffffff 7f83e6f000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.4)[2600903C-EEDE-321B-A023-169DC9B26EA6]@0 xffffff7f83eb3000
             com.apple.iokit.IOSurface(86.0.2)[0EA70D04-C914-3BB1-9E0B-50282F71BA1C]@0xfffff f7f8493c000->0xffffff7f8494dfff
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    12B19
    Kernel version:
    Darwin Kernel Version 12.1.0: Tue Aug 14 13:29:55 PDT 2012; root:xnu-2050.9.2~1/RELEASE_X86_64
    Kernel UUID: 3005059E-270B-3B9F-940D-7A66C05DDC9D
    Kernel slide:     0x0000000003600000
    Kernel text base: 0xffffff8003800000
    System model name: MacBookPro5,3 (Mac-F22587C8)
    System uptime in nanoseconds: 4290007457923
    last loaded kext at 488188985519: com.apple.driver.AppleUSBCDC          4.1.22 (addr 0xffffff7f85a9c000, size 16384)
    last unloaded kext at 648108662282: com.apple.driver.AppleUSBCDC          4.1.22 (addr 0xffffff7f85a9c000, size 12288)
    loaded kexts:
    com.apple.filesystems.afpfs          10.0
    com.apple.nke.asp_tcp          7.0.0
    com.apple.driver.AudioAUUC          1.60
    com.apple.iokit.IOBluetoothSerialManager          4.0.9f8
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AGPM          100.12.69
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.0.9f8
    com.apple.driver.AppleMikeyDriver          2.3.0f2
    com.apple.driver.AppleHDA          2.3.0f2
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.2.6
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.driver.AppleMuxControl          3.2.6
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.driver.AppleSMCLMU          2.0.2d0
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleLPC          1.6.0
    com.apple.GeForce          8.0.0
    com.apple.driver.SMCMotionSensor          3.0.2d6
    com.apple.driver.AppleUSBTCButtons          235.4
    com.apple.driver.AppleUSBTCKeyboard          235.4
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.driver.AppleIRController          320.15
    com.apple.driver.AppleUSBCardReader          3.1.0
    com.apple.iokit.SCSITaskUserClient          3.5.1
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.2.1
    com.apple.driver.AppleFWOHCI          4.9.5
    com.apple.driver.AppleUSBHub          5.1.6
    com.apple.driver.AirPort.Brcm4331          601.15.21
    com.apple.driver.AppleAHCIPort          2.4.0
    com.apple.nvenet          2.0.19
    com.apple.driver.AppleUSBEHCI          5.1.5
    com.apple.driver.AppleUSBOHCI          5.1.5
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleACPIButtons          1.6
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.6
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.security.SecureRemotePassword          1.0
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.kext.triggers          1.0
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.0.9f8
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.DspFuncLib          2.3.0f2
    com.apple.iokit.IOAudioFamily          1.8.9fc9
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.driver.AppleHDAController          2.3.0f2
    com.apple.iokit.IOHDAFamily          2.3.0f2
    com.apple.iokit.IOSurface          86.0.2
    com.apple.iokit.IOBluetoothFamily          4.0.9f8
    com.apple.driver.AppleGraphicsControl          3.2.6
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.IOPlatformPluginFamily          5.2.0d16
    com.apple.nvidia.nv50hal          8.0.0
    com.apple.NVDAResman          8.0.0
    com.apple.iokit.IONDRVSupport          2.3.4
    com.apple.iokit.IOGraphicsFamily          2.3.4
    com.apple.driver.AppleSMC          3.1.3d11
    com.apple.driver.AppleUSBMultitouch          235.7
    com.apple.iokit.IOUSBHIDDriver          5.0.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.5.1
    com.apple.iokit.IOUSBMassStorageClass          3.5.0
    com.apple.driver.AppleUSBMergeNub          5.1.5
    com.apple.driver.AppleUSBComposite          5.0.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.1
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOAHCISerialATAPI          2.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.1
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOUSBUserClient          5.0.0
    com.apple.iokit.IO80211Family          500.15
    com.apple.iokit.IOAHCIFamily          2.2.0
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.driver.NVSMU          2.2.9
    com.apple.iokit.IOUSBFamily          5.1.6
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.8.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          344
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.6
    com.apple.iokit.IOPCIFamily          2.7
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    If there is someone out there that could help, I appreciate it very much...!!! This is getting very annoying
    thank you!!

    I noticed that the:
    last loaded kext at 488188985519: com.apple.driver.AppleUSBCDC          4.1.22 (addr 0xffffff7f85a9c000, size 16384)
    last unloaded kext at 648108662282: com.apple.driver.AppleUSBCDC          4.1.22 (addr 0xffffff7f85a9c000, size 12288)
    Now, before I go any further, I'd like to point out that diagnosing, and actually eliminating, kernel panics is very tricky. There are several causes that are very well documented on the internet. However, you can run all those tests, perform all that voodoo, even reinstall the OS... and continue to have kernel panics. That said, here are some notes:
    What brought me here in the first place is that, since upgrading from Lion to Mountain Lion, I've been having the same frequency of kernel panics as you.
    My frequency of kernel panics using Snow Leopard and Lion averaged once a week.
    On Snow Leopard I could actually reproduce the kernel panic by USB tethering my iPhone. This was a widespread and well-documented issue for people with early 2011 MacBook Pro's, and Apple supposedly fixed it in an update. Supposedly...
    Updating to 10.8.1 didn't fix the problem for me.
    Since upgrading to Mountain Lion, I've stopped using Spotify, as that seemed to be the worst culprit (on my machine). Keep in mind, there are thousands, maybe millions, of users who aren't having kernel panics while using Spotity on Mountain Lion, so that's really only one data point. Also, Spotify recently updated it's own software that may have fixed a kernel extension problem but I haven't used it enough yet to report anything.
    I took my computer to the Apple Store in 2011, and I recently spent an hour on the phone with Apple Care. No dice.
    My kernel panic logs don't seem to have a common denominator as to the cause (Spotify, USB...)
    Just when I think I see a common denominator like when I'm using a certain USB port, or a secondary display, there will be a kernel panic when neither of those things are happening
    You''ve got a lot going on with your machine: upgraded memory, SSD...
    Taking all that into consideration, be cautious not to jump to conclusions. No doubt, it's a combination of factors. For example, it could be certain MacBook Pro's that have certain video cards, USB, Spotify, Flash... I mean, really, it just starts heading down a dangerous path of speculation and conjecture, so I'm leaving it up the Apple engineers at this point. And, of course, always back up.
    Anyway, you and I and whole lot of other folks out there are having the exact same problem since updating to 10.8.0. Add to that the issues that many of us are having with Safari, Mission Control... and it spells out one thing: the price one pays for being an early adopter. By all means, follow the steps outlined here:
    http://support.apple.com/kb/PH11045
    and perhaps here:
    http://www.thexlab.com/faqs/kernelpanics.html
    and use @baltwo's excellent recommendation:
    http://kelleycomputing.net/rember/
    Hopefully, that will fix the problem that you're experiencing but I'm betting against it. Most likely, 10.8.x will fix or at least improve this issue.
    In the meantime, here's the good news: because of the autosave state features introduced in Lion, a kernel panic has gone from being a potentinally devestatingly destructive event to a minor (albeit inccessant) nuisance. It never hurts to compusively hit Command-S but even so, I'm happy to report that I can't think of a single kernel panic that has resulted in substantial data loss (read: work). In fact, there are worse things than restarting your computer, and reallocating memory that's been leaking from Safari...
    Anyway, unless you're one of the those affected that can't even boot, I'd recommmend stopping short of reinstalling the OS. Wait for a stable release, and then when you have a slow week, perform a clean install. Then begin the process of installing fresh versions of your apps one-by-one. Also, by then, third party developers will have had time to update their kernel extensions, etc.
    In other words, follow the hypocratic oath: thou shall not harm. We were all good before Mountain Lion, so let's not fix what isn't broken by tinkering with our systems too much.
    Best of luck to you!
    Mark

  • Is a clean install really this hard?

    Hi folks,
    I installed Flexbuilder 2 over my existing Eclipse
    installation, choosing the "plug-in" option rather than a complete
    install. But I couldn't debug: it claimed I had to install
    FlashPlayer 9 (yes, it was already installed and working) or
    Flexbuilder needed re-installing. (I'm running Firefox 2.0.0.6 on
    Windows XP, fully patched). I tried re-installing Flexbuilder but
    the install process quit when it saw the existing installation. Due
    to deadlines, I elected to make due with Alert.show() rather than
    the integrated debugger. Man, does that slow you down!
    But now the deadline has passed, and I have a few minutes to
    uninstall and reinstall things. So I uninstalled flashplayer, the
    flex plugin, elcipse (just by renaming the directory - it doesn't
    seem to have any windows hooks). Then I reinstalled Flexbuilder,
    using the Complete option rather than the plug-in option.
    After spending 20 minutes trying to figure out how open an
    existing project from a clean install (I couldn't find anything in
    the docs on that), I'm now in a different mess. When I run the
    project from within the IDE, it launches Firefox against the wrong
    directory path - it seems to have an extra "/bin/" in the path.
    Anyone know where I fix that?
    I can repair the broken path in the web browser to get the
    app running, but as soon as I do, I get this error message:
    Error: Unable to load style(Error #2035: URL Not Found. URL:
    blue.swf): blue.swf.
    at
    ()[C:\dev\flex_201_gmc\sdk\frameworks\mx\styles\StyleManagerImpl.as:842]
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    ModuleManager.as$117::ModuleInfoProxy/ModuleManager.as$117:ModuleInfoProxy::moduleEventHa ndler()[C:\dev\flex_201_gmc\sdk\frameworks\mx\modules\ModuleManager.as:1025]
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    ModuleManager.as$117::ModuleInfo/errorHandler()[C:\dev\flex_201_gmc\sdk\frameworks\mx\mod ules\ModuleManager.as:686]
    There are no references to blue.swf in my app so I really
    have no idea where this is coming from.
    It also can't find the debugger, and asks me if it's running
    on the local machine or a remote machine. wtf? (Windows Firewall is
    turned off). Doesn't matter what I say, it doesn't like it and I
    have to hit the cancel button. Then my app comes up with missing
    controls and assorted broken functionality.
    I must say that my experience with this product is poor and
    getting poorer. Can someone help me out of the corner I'm painted
    into?
    Many thanks,
    ws
    p.s. Typing long posts like this into such a small window is
    also very annoying.

    I removed the Flash player via Add/Remove programs, then
    installed the debug version I downloaded from adobe. You didn't
    indicate whether I had chosen the correct download (as per my last
    post), so I'll assume it's correct. The message window from the
    install said this:
    Output folder: C:\Windows\system32\Macromed\Flash
    Extract: NPSWF32.dll... 100%
    Extract: NPSWF32_FlashUtil.exe... 100%
    Extract: flashplayer.xpt... 100%
    Created uninstaller:
    C:\Windows\system32\Macromed\Flash\uninstall_plugin.exe
    Completed
    NPSWF32.dll landed in C:\Windows\system32\Macromed\Flash,
    rather than Program Files\Mozilla\PlugIns, which is obviously
    wrong. I copied it over, and that solved the bug about "can't find
    npswf32.dll". Any idea why this gets installed in the wrong
    directory? Is something else configured wrong?
    With that somewhat solved, we're back to the first problem -
    when the application launches, I get this message pop up:
    Error: Unable to load style(Error #2035: URL Not Found. URL:
    blue.swf): blue.swf.
    at MethodInfo-636()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at ::ModuleInfoProxy/::moduleEventHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at ::ModuleInfo/errorHandler()
    And finally, and new error: "Send Failed". This error pops up
    as soon as I try to do something with my app that calls the back
    end (weborb) server. I pointed to a different server and got the
    same error, so it's a problem on this client. This problem didn't
    start until I uninstalled and re-installed everything this morning
    (see my first post for details). Now this error is sooooo generic I
    have no idea how to debug it. Along those lines, are you an Adobe
    employee levancho? I'm wondering if you might be able to bring in
    someone with a bit of weborb experience (although I doubt it's
    related, since this worked fine on my previous install).
    In case this helps, here's my .project file:
    <?xml version="1.0" encoding="UTF-8"?>
    <projectDescription>
    <name>sp6</name>
    <comment></comment>
    <projects>
    </projects>
    <buildSpec>
    <buildCommand>
    <name>com.adobe.flexbuilder.project.flexbuilder</name>
    <arguments>
    </arguments>
    </buildCommand>
    </buildSpec>
    <natures>
    <nature>com.adobe.flexbuilder.project.flexnature</nature>
    <nature>com.adobe.flexbuilder.project.actionscriptnature</nature>
    </natures>
    </projectDescription>
    Thanks for all your help,
    ws

  • How to clean install/upgrade from9.1/9.2.2 to Panther and make HD space

    Dear group,
    After reading many posts looking for answers to my iMac problems, I've decided to make a post. I've an iMac from the 500 series (which came with 128Mb, 20GB HD and 500MHZ and a slot for cd's) which I bought in 2001. From the start I prefered using OS9.1 instead of the OSX 10.0.3 that also came with it. But during the years there were many conflicts between programs and a lot of websites are not viewable now. I added 512mb to the 128mb working memory, but since I added more programs too, the 20GB HD was getting rather full:-(. Also upgraded Os 9.1 to 9.2.2.
    My idea was to buy a external HD and to copy the intern HD to the external HD. This way I wouldn't lose any programs (of which 1 I broke the cd of) and then install programs I want to work with on the internal HD. After informing with several Mac-stores, they said this is not possible:-(. So I could only use an external HD for files and docs. When I finally saw an external HD of my choice (WD) it said that minimum OSX 10.3 was needed. This I don't have on my Mac, so didn't bought it. Also my HD was almost full. So I've been copying files to cd's to make some space. Here I read about "firmware" and found out mine does not need update anymore.
    Online I bought the Panther software. It's Mac Os X 10.3.2 cd version however it says "eMac" on the cd. The person who sold it said it would be no problem to run on an iMac though. Reading some posts here, I wonder..
    So to my questions:
    How to proceed from here?
    Did I understood right that Os 9.1 or higher is needed to upgrade to Os X (Panher) ?
    Should I do a clean install of 9.1 again to avoid future conflicts? Or should I chose another type of install (or maybe remove parts or all and if so, how)?
    And how to remove other programs from the HD without forgetting plugins or other files of that program that are spread in different folders on the HD?
    Or was the Mac store wrong and is it indeed possible to move all to an external HD? And which external HD's are compatible with Os 9.1/Os 9.2?
    I've many more questions, but since my post is already lenghtly I'll leave these for another time;-0.
    Kind regards,
    'Vonne

    Hi, Vonne -
    Now how do you 'boot' /make an ext. HD a boot drive?
    A boot drive is the drive containing the OS from which the the machine boots. If you install a valid OS (an OS of adequate version and one whose install is compatible with that machine) on a external drive, and the machine is capable of booting from that kind of drive, all you need do is one of the following -
    • select the OS on that drive in Startup Manager (control panel in OS 9, or control pane in System Preferences in OSX) and Restart.
    • use Startup Manager to select the OS/drive which you want to use for that startup at the start of the boot process. This article describes using Startup Manager -
    Article #HT1310 - Startup Manager: How to Select a Startup Volume
    I used the phrase "one whose install is compatible with that machine" carefully. It is certainly possible to replicate (via copying in the case of OS 9, or cloning in the case of OSX) an OS from another machine onto an external drive, and then connect that drive to your machine. However, if the machine that was used as the source for the replication is not the exact same model as yours, it is unlikely that the OS will be viable - although the OS may be of adequate version, OS installs are usually tailored by the installer to match the hardware of the machine upon which it is being installed. A different model will probably have different hardware, and so the replicated OS will not have files in it to support the different hardware.
    So I can also chose to remove the whole Os 9 and only put Os X on it? I thought I read somewhere you need to have Os 9 on it before you could
    Correct. An install of OSX is stand-alone. Using a full-install disk set for OSX, there is absolutely no requirement at all that any prior version of any OS already be there.
    Note, though, that most OS 9 programs are not compatible with OSX. This means that if you remove OS 9, you will not be able to run those programs which are not OSX-native. Some few are compatible with both OS's, such as later versions of AppleWorks 6.
    The reason for this is that OS 9 and OSX are not written in the same language, do not have the same roots. OS 9 shares its roots with previous OS's, all the way back to OS 1. OSX is a new critter, written from scratch (although it is, I understand, based somewhat on Unix). The way OSX handles stuff (processes, routines, toolbox calls, etc., as well as the concepts of extensions and control panels and more), are not at all like OS 9 and earlier.
    There is a solution for that - OS 9 can be used in the Classic mode under OSX. As Classic, OS 9 is used as a program (not as an OS) in order to provide an environment in which many OS 9-only programs can be run. To be used as Classic, OS 9 must be OS 9.1 or later, preferrably OS 9.2.x.
    An install of OS 9 can be used for Classic and still retain its ability to boot the machine as an OS. Many folk have found that when possible it is better to have two installs of OS 9 - one dedicated for use as an OS, the other dedicated for use as Classic. This necessitates having more than one volume available. since it is near impossible to have two installs of OS 9 on the same volume and have them usable without conflict. In this context, a "volume" = an unpartitioned drive, or a partition of a partitioned drive.
    Do you've brand names for me? The Mac stores only have the newest types that go from Os X 10.3 or greater
    The brand names I have are somewhat outdated. At present I have four bootable firewire drives, three connected full time (the fourth is set up as an emergency boot-and-repair drive for both my G4s). Of those, three are VST brand; VST was bought out several years ago by SmartDisk. The fourth is even older, a FireDrive from MacTell - I have no idea what became of that company.
    I have a hunch that most any drive that is connectable via FireWire 400 will be suitable for OS 9, provided that it is reinitialized after receipt. The requirement for OSX 10.3 may pertain to any formatting or backup software that is bundled with the drive. With regard to compatibility with OSX, I understand that using a drive with an Oxford chipset is preferred.
    Perhaps someone else more familiar with current drive offerings will post in with more specific info.
    How do I verify the drive works as a boot drive?
    Same way any piece of hardware is verified - by trying it out. Boot the machine to the drive to verify it is bootable.
    They said drag and drop can't be done.
    They're wrong, with regard to OS 9. They're right, with regard to OSX.
    OS 9 stuff - programs as well as OS's - is eminently copyable via drag and drop.
    OSX stuff needs to be cloned using a cloning utility.
    Have you experience with booting an internal drive to an ext. drive?
    Yes. As I mentioned, I have four bootable firewire drives. Three are connected full time to my G4/500 AGP model; the fourth is an emergency disk. All have bootable OS's on them, of various kinds - a recent duplicate (via drag and drop) of the OS 9.1 on my primary internal drive; OS 9.2.1; and OSX 10.1.5 (which I have rarely used); and (on the emergency disk) a universal install of OS 9.2.1. How do I know they are bootable? Because I tested them by booting the machine to them.
    Os X 10.0.3 is on my internal drive, so why should I use the OsX install CD to boot? Or do you mean the install cd of the new OsX (Panther) version?
    Because the later versions of OSX have a better version of Disk Utility. The one that came with OSX 10.0.3 may be adequate; however, OSX 10.0 was a public Beta version - the first real release (one classed as a complete OS, not a Beta, i.e. trial, version) of OSX was 10.1.
    I wasn't able to see the new cardreader I bought (which should be for Os 8.6 and higher). Could it be something is broken within Os 9.1/9.2.2 and it would be wise to do a reinstall anyway so to fix bugs like that?
    If the card reader was not connected when the OS was installed or updated, the set of drivers needed by the card reader were probably not installed. OS 9 installers are sometimes too clever - they read what hardware is available, and install any software available which is needed by that hardware. This means they often do not install software which is not needed at that time; later changes or additions to the hardware can result in an apparent incompatibility, but that oes not mean something is broken. A re-install of the last version installed will sometimes take care of it.
    Specifically, see this User Tip (although it addresses USB PCI cards, the same set of extensions is often needed for things like card readers) -
    http://discussions.apple.com/thread.jspa?messageID=607556&
    Ok, so it looks like I don't the right Panther software. So maybe good reinstall Os 9? In the 'Help' I find the option to re-install parts or remove parts of the systemprogram. Another option is the so called 'clean install'. And there's the possibility to use the recovery cd. I've no clue which option is best.
    As Allan mentioned, it is unlikely that the eMac OSX 10.3.2 disk you got will work - disks that are shipped with a machine are usually model-specific to that machine model. If a disk states a model name on it, it is intended for use with that model. The retail disk sets, those for both OS 9 and OSX, contain a universal installer, one which has assets available to it which allow the installer to place a full, complete OS on any machine model supported by Apple for that OS version.
    A Clean Install of OS 9 can be performed only using an original Software Install CD for a machine, or by using a retail OS 9 Install CD of adequate version. A Clean Install neither disturbs nor removes anything - it installs a brand new OS 9 System Folder, renames any previous one to Previous System Folder, installs a standard set of utilities if those are not already present, and does little else. A Clean Install is the only relatively convenient way to change the inherent language of an OS 9 install, or to downgrade the OS version. This Apple KBase article disusses it further -
    Article #TA43881 - Mac OS 8, Mac OS 9: Performing a Clean Installation
    A Software Restore CD can be a dangerous disk to use. The primary purpose of an OS 9 Software Restore CD is to return the drive to its original "as-shipped" configuration. Although its installer can be set to retain all info already on the drive, it is very easy to accidentally erase the entire drive. I do not think that a Software Restore CD will serve the purposes you have described.
    The main difference between a Software Restore CD and a Software Install CD is that a Software Restore CD uses a disk image of the drive as originally shipped as its source, while a Software Install CD uses a library, an archive, of individual software components from which the installer selects as needed to match the machine's hardware configuration. In this context, a retail OS 9 Install CD is much the same as a Software Install CD, except that its archive of software somponents is usually more extensive.
    A Software Install CD (and a retail OS 9 Install CD) can also be used to install or re-install individual OS software components. This is accomplished by selecting the Custom button on the Start page of the installer, then the group, then individual items as needed. The requirement here is that the version of the OS 9 on the hard drive must match the one the CD is intended to install.

  • Impossible to do a clean install in new mac mini server! Or is it?

    Hi all, well totally frustrated but smiling here... I just unboxed two mac mini servers mid 2011s, and got part way setting them both up, up to gettting Open Directory Master and Replica to work. But then one machine started acting flakey so I did a permissions check and there was a bunch of stuff fixed. However, that box then refused to boot. So I did the reasonable thing:
    1) booted to recovery partiion to start over - and while there tried to change the crazy outofbox configuration of two 500gb drives into something more managagble -  I wanted case-senseitive on a partition to run webservers. But DU would not let me do anything with the drive.
    2) Okay, I just booted up on a lion clone I had, and ran DU from another recovery partition. Adjusted the drives the way I wanted them... fine.
    3) Rebooted into recovery partition, this time to do a clean install and I was greeted with this:
    The install finally died, and after trying again, I get some error about identification information and to call applecare. ha! I live in village in Nepal, and that's not gunna happen easily.
    4. So, I take a clone of the other server and clone back to the broken one and try to rid the server of any remenants of the cloned one, but I am thinking this is not going to fly. For example, I can't get Open Directory to work anymore...and that's probally just the tip of the iceberg... I need a clean install - BUT HOW?
    This crazy new apple fulfillment system is getting me down....
    thx!

    I had a similar problem, and my solution probably isn't going to help you now. I imaged one of the machines straight out of the box with disc utility and a Firewire 800 cable. I then copied that image onto the second drive of the machine so I could always do I clean install and I needed it quite often.
    My only suggestion is either to wait the week for the thing to download, image that  or see if your supplier can image a server for you and you can then restore from that.
    Sorry can't be of more help

  • Constant crashing with Snow Leopard, even with "clean install"

    I've had a lot of trouble with crashes after installing SL. These crashes seem related to video issues. iMovie crashes immediately. iPhoto crashes if I double-click a photo. QuickTime crashes all the time. Usually these crash the entire system. The video of my entire screen sometimes get broken and jittery just before such a system crash. I've also had the crash where the screen becomes gray and I'm told to restart in many languages.
    Anyway, I finally erased my disk and "clean installed" SL, updated it to 10.6.5, then installed iLife 11 and updated that. iMovie immediately crashed. Does this confirm a hardware error, or are there some hidden settings (like in the PRAM) that can be wrong and are carried over even through a clean install? If so, how do I restore these to the factory defaults?
    Message was edited by: Stuart Field

    Stuart Field wrote:
    I've also had the crash where the screen becomes gray and I'm told to restart in many languages.
    Those are "kernel panics," which are usually hardware-related.
    Start with this: [Intel-based Macs: Using Apple Hardware Test|http://support.apple.com/kb/HT1509].
    and the (free) Rember, a heavy-duty memory tester, from: http://www.kelleycomputing.net/
    If nothing there helps, see this Apple article: [If “You need to restart your computer” appears|http://docs.info.apple.com/article.html?path=Mac/10.6/en/8965.html].
    More kernel panic info:
    Apple Support - About kernel panic messages
    Mac OS X Kernel Panic FAQ
    The X Lab - Resolving Kernel Panics
    Apple Developer - Technical Note TN2063: Understanding and Debugging Kernel Panics
    Tutorial: Avoiding and eliminating Kernel panics

  • 10.6 clean install / poor UI performance

    Firstly, my spec:
    MBP (early 08) 2.4ghz / 4gb RAM / GeForce 8600M GT 256mb / 250gb HD
    I did a clean install of 10.6 on this machine and everything went smoothly until I started to actually use the thing. The first thing I noticed was the jerkiness of Expose, Spaces and animated Finder preferences. Truly shocking. I noticed this immediately as there certainly was no issue with my previous 10.5.8 install. I also notice, although not all the time, that there are glitches in the UI when you double click a HD icon on the desktop. The only way I can describe this is that during the very first frame of the animation when the 'zooming' window is at it's smallest, it 'sticks' for a split second then zooms to it's full size. This doesn't happen all the time and I can't find a way of forcing it to happen.
    I'm really bothered by this as the OS certainly doesn't feel polished to me - rather - it feels jerky and unresponsive on what I consider to be quite a good spec machine. This is driven home even more so by the fact that the previous incarnation, 10.5.8 has given me no problem whatsoever. I could have, maybe, expected to experience some weirdness if I was upgrading an existing install, but on a fresh, clean install certainly not.
    I have played with the Quartz Debug tool to try and isolate whether or not this is a Quartz rendering issue and disabling beam-sync (a well known hack) actually makes performance even worse.
    I'm starting to feel very uneasy about this release and will be resorting to cloning back my 10.5.8 install from my backup drive until Apple sort this out.
    Very poor.

    No need to wait. Get a bootable, external HD (preferably FireWire, since it's 40-50% faster than USB 2 and designed for data transfers), make a bootable backup/clone before updating/upgrading, and ensure that it's bootable and works like the original. That allows you to revert to the previous good state without having to reinstall anything. See these for details:
    http://docs.info.apple.com/article.html?artnum=106941
    http://www.macmaps.com/upgradefaq.html
    http://www.macmaps.com/backup.html
    http://www.thexlab.com/faqs/installswupdates.html
    http://www.thexlab.com/faqs/backuprecovery.html
    Additionally, you can also examine what might be broken in SL and boot into either.

Maybe you are looking for

  • Problem with Java Stack- dev_w2 log mentioned.

    Hi everyone, I have a problem with Java Stack, I could not connect to XI home page, I am unable to login to j2ee engine using visual Administrator. Please go through the log below. And help me out to resolve this issue and let me know what could be t

  • Problem with ESM

    I have register database, but in ESM in the navigator window under Enterprice Domains>OracleDefaultDomain in Database tab is not possible choose User Authentication: Oracle Wallet(SSL) And Password in the popup list I use OID 10g, when I use OID 9.2

  • Ruby on Rails and Dreamweaver 8

    There were, at one time, Ruby on Rails extensions for DreamweaverMX, created by Rob Cameron and referred to as "RubyWeaver". Apparently, *those were the days*, because you can't find them any where now! Does anyone know how to use RonR with Dreamweav

  • Header data/Master Data

    Guys I need clarification with Master data and Header data. Is that Master Data is header data or is it different. Or its considered part of transaction data. And if i should be using header data info-source and when . Since i almost see the same fei

  • No conection with the mail server after update to 10.4.7

    I'm already loosing my head!! I've updated to 10.4.7 and after appeared a dialog box message. link of the message in portuguese (http://rapidshare.de/files/26407351/mail.tiff.html) In english it means: Mail have beed updated. Do you want allow that t