Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
Status
The first post of this thread is a WikiPost and can be edited by anyone with the appropiate permissions. Your edits will be public.

Should continued work on 10.6.8 PowerPC and Xcode 3.2.X have its own dedicated thread?

  • Yes - I would like to be able to follow and/or contribute to a Developer Preview thread specifically

    Votes: 0 0.0%
  • Indifferent - I don't care either way i just appreciate the work that's being done

    Votes: 0 0.0%

  • Total voters
    15
  • Poll closed .
WDYM Java is not working? I can assure you OpenJDK 8 is working fine, I have used it for Java packages in R, which pass tests, I have also compiled ABCL Lisp compiler (it is in Java) and i2p implementation in Java (confirmed to work).

What is lacking is GUI support in Java.
I got Xcode, MacPorts, and everything installed, but I'm having trouble getting Java itself installed. I found this command:
sudo port install openjdk8-powerpc

but it returns:
Error: Port openjdk8-powerpc not found

Is there another command, or am I just doing it wrong? Thanks in advance.
 
I got Xcode, MacPorts, and everything installed, but I'm having trouble getting Java itself installed. I found this command:
sudo port install openjdk8-powerpc

but it returns:
Error: Port openjdk8-powerpc not found

Is there another command, or am I just doing it wrong? Thanks in advance.

Did you run `sudo port -v sync`? That should download ports and index them. If something fails to index, it will be noted in the output.

I am pretty sure if should work, since I get no error for openjdk8-powerpc both from my PPCPorts source and MacPorts official one.
 
Did you run `sudo port -v sync`? That should download ports and index them. If something fails to index, it will be noted in the output.

I am pretty sure if should work, since I get no error for openjdk8-powerpc both from my PPCPorts source and MacPorts official one.
Thanks, I missed that step. Running it now. Looks like it's going to take a really long time lol.
 
  • Like
Reactions: barracuda156
Did you run `sudo port -v sync`? That should download ports and index them. If something fails to index, it will be noted in the output.

I am pretty sure if should work, since I get no error for openjdk8-powerpc both from my PPCPorts source and MacPorts official one.
Ok, I was able to run "sudo port -v sync" (took about 6 hours lol), but running "sudo port install openjdk8-powerpc" failed
"Error: Processing of port openjdk8-powerpc"
See screenshot of full error, and if you want, I've attached the config logs that it referenced. I forgot to gran the main log, and it's no longer there. I re-ran the command today to get a copy of main.log, but got a different error today:
"Error: process_emd failed: couldn't change working directory to "~": no such file or directory". Screenshot also attached.

After doing this, I realized I was trying the "older" method you had recommend. You had also linked to https://github.com/macos-powerpc/po...040d53df500a79/java/openjdk8-powerpc/Portfile for the newer method you're using. I'm not sure how to use that. Is that a script? I tired turning it to an executable .sh to see what would happen, but it errored out. I'm sorry I'm taking up so much of your time on this. I'm just trying to get manual fan controls on this so I can run 10.6.8 without the PowerBook running at 160F+
 

Attachments

  • Screenshot 7-9-25 9.59.10p.png
    Screenshot 7-9-25 9.59.10p.png
    28.2 KB · Views: 11
  • config.log.zip
    4.6 KB · Views: 9
  • Screenshot 7-10-25 1.02.09p.png
    Screenshot 7-10-25 1.02.09p.png
    24.7 KB · Views: 9
Ok, I was able to run "sudo port -v sync" (took about 6 hours lol), but running "sudo port install openjdk8-powerpc" failed
"Error: Processing of port openjdk8-powerpc"
See screenshot of full error, and if you want, I've attached the config logs that it referenced. I forgot to gran the main log, and it's no longer there. I re-ran the command today to get a copy of main.log, but got a different error today:
"Error: process_emd failed: couldn't change working directory to "~": no such file or directory". Screenshot also attached.

After doing this, I realized I was trying the "older" method you had recommend. You had also linked to https://github.com/macos-powerpc/po...040d53df500a79/java/openjdk8-powerpc/Portfile for the newer method you're using. I'm not sure how to use that. Is that a script? I tired turning it to an executable .sh to see what would happen, but it errored out. I'm sorry I'm taking up so much of your time on this. I'm just trying to get manual fan controls on this so I can run 10.6.8 without the PowerBook running at 160F+

The first screenshot has an unrelated error. libpng from official MacPorts fails to configure. I don’t know why without more info, but it was updated today, and possibly something got broken. It did build normally for me on 10.6 though.
Something of jdk dependencies depend on libpng, which is why it will try to install (if missing) or upgrade (if outdated).
You can bypass upgrading dependencies by `-n` flag. Like `sudo port -v -n install` will skip upgrading anything on the way. Generally this is not recommended to do and may result in broken ports.

> "Error: process_emd failed: couldn't change working directory to "~": no such file or directory"

The error says literally what’s the issue. You changed to some directory which was then deleted (whether by you or by a process). Just move anywhere else. `cd ~` will do.

Upd. I looked into the log, it is a generic error which usually means that either something is wrong with toolchain or wrong flags are used. I suspect you just didn’t install required components, and gcc tries to use ld64, which is x86-only, and that fails, as expected.

To have anything building on 10.6.x on a physical powerpc you need to update or replace several Unix tools, which Apple in its wisdom decided not to compile for ppc (just so that users suffer; there is absolutely no technical reason otherwise). This is orthogonal to whether you use my PPCPorts, MacPorts or build manually.
Correct solution is to do either one of the following after installing Xcode:
1. Install darwin-xtools and sl-make from installers which I linked (they are also publicly accessible on the website).
2. Or use tools built from Apple Opensource (a few required ones were posted here, for example).
You may also need to replace bsdtar in /usr/bin with bsdtar from standard 10.6.8, if you see archives fail to extract.

A lazy and quick solution is to pull over needed binaries from 10a190. They are somewhat older but compatible.

The minimum to get is as, ar, ld and make. This is not sufficient to build many ports from source, but usually will do.
Try this, and configure error should go.
 
Last edited:
I will try to allocate time tomorrow to write a step-wise instruction so that I can just refer to the link next time. (It can expectedly be confusing, because there is no easy and direct mechanism to update Xcode installation with restoring missing ppc slices.)
 
  • Like
Reactions: Edgecrusherr
I will try to allocate time tomorrow to write a step-wise instruction so that I can just refer to the link next time. (It can expectedly be confusing, because there is no easy and direct mechanism to update Xcode installation with restoring missing ppc slices.)
I REALLY appreciate you!
 
Hello,

I am trying to get 10.6.8 onto my G5 Quad.

I've followed the instructions provided here, in this case to ‘Scan image for restore’. When I select the .dmg, a progress bar appears. When it reaches completion, I get the message: "Unable to scan "10.6.8_PPC_A5.dmg".(internal error). Does anyone know how I can get this mounted and restored onto my partitioned SSD?

Also, when I originally installed 10.5 I had two partitions on my SSD. Now I find that I have the original boot partition with 10.5 and a second partition named "DISK0S5" of 14.55GB in size and formatted MS-DOS (???). Beneath that is labeled free disk space. Any idea how this came about?
 
Try mounting the image and then restore from the mount instead of from the image. This has helped me with working around weird Disk Utility quirks (and also subverts the "imagescanning" step altogether).

As for your disk structure, that could be any number of things, from corrupt APM to it being an originally Intel disk to 'you did this intentionally and forgot'. Should be able to remove it and consolidate the space regardless.
 
Try mounting the image and then restore from the mount instead of from the image. This has helped me with working around weird Disk Utility quirks (and also subverts the "imagescanning" step altogether).

As for your disk structure, that could be any number of things, from corrupt APM to it being an originally Intel disk to 'you did this intentionally and forgot'. Should be able to remove it and consolidate the space regardless.
I've mounted the image but I am unable to select it in Disk Utility - I can only select the original .dmg
 
Just got 10.6 working on my G5 PowerMac. It is mostly stable aside from a few issues. I noticed iChat will not open for me, probably not something any of you use but I use it with the NINA service. The introduction wizard never opens, some of the UI does but there are a lot of "<<Do Not Localize>>" strings everywhere, cannot add any accounts. Very weird. I also could not get Apple file sharing nor SMB to work. I think I will still have to use Leopard to get a lot of things done, but I would like to use Snow Leopard in order to test more and share more information with all of you.
 
I bricked my G5.

I managed to get 10.6.8 onto my partition via CCC (which is exactly how I got 10.5.8 onto my SSD - I cloned it from the original HDD). I went to select the 10.6.8 partition for the boot drive and the startup disk selector did recognize the file on the partition. When start up, I get to an apple logo then it freezes. Two red LEDs appear inside the case (one between the top two DIMM slots and one in between the upper four and lower four DIMM slots. After a few moments, all the fans throttle up to full. If I hold option down, I'll get an option to choose boot disks but it always freezes. I tried disconnecting the SSD in favor of the HDD (which has a good copy of 10.5.8 on it) but the same thing occurs.
 
Those pertain to LED 2 and LED 7 in the service manual.

In other words, your G5 overheated and thermally shut down. It's time to service the cooling on it.
 
  • Like
Reactions: barracuda156
Not great news.

The LCS has never been services and has never leaked (it's one of the dreaded Delphi models). I spent a while learning how to service it but that was a long time ago. It seemed quite involved to say the very least.

I have a temperature monitor installed and CPU temps are around 140 or so. The exhaust air feels cool to the touch. The coolant is probably gummed up.

The computer has a habit of going to sleep without warning, though I don't see any LEDs light when that happens. Freezing only happened after I tried to boot into the 10.6 portion and not before.

Maybe I can stick it in front of a window AC unit for the time being? :D
 
The LCS has never been services and has never leaked (it's one of the dreaded Delphi models). I spent a while learning how to service it but that was a long time ago. It seemed quite involved to say the very least.

It is possible to convert it to air-cooling, if it is easier than dealing with LCS.

The computer has a habit of going to sleep without warning, though I don't see any LEDs light when that happens. Freezing only happened after I tried to boot into the 10.6 portion and not before.

I don’t think it could possibly have affected the hardware. In the worst case 10.6.8 may happen to be incompatible with some third-party PCIe cards or alike, in which case the machine goes into KP, unless that is resolved in one way or another (not necessarily a physical removal of a troublesome component).
 
I have taken some time to install some software from Apple again. I get the feeling when Snow Leopard PPC becomes more mature, many G5 and G4 users will switch from Leopard to SL, so getting all of this first-party software working would be of interest for the end user (especially given the system-level improvements Snow Leopard makes. It feels a bit faster now even compared to Sorbet).

Final Cut Pro 7 and its accompanied suite of apps are kinda killer apps for this era of Mac, accompanied by Logic and Aperture. Thus far FCP7 seems to easily have the most issues. Attached below is the crash log.

Using the AGL framework from Leopard 10.5.8 btw.

Code:
Process:         Final Cut Pro [180]
Path:            /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro
Identifier:      com.apple.FinalCutPro
Version:         7.0 (7.0)
Build Info:      FCPApp-906181654~22
Code Type:       PPC (Native)
Parent Process:  launchd [84]

Date/Time:       2025-03-16 02:22:53.391 -0500
OS Version:      Mac OS X 10.6.8 (10K549)
Report Version:  6

Anonymous UUID:                      CA967F15-0A3E-4EE6-B7C4-E3B76D9ADC85

Exception Type:  EXC_BREAKPOINT (SIGTRAP)
Exception Codes: 0x0000000000000001, 0x000000009210326c
Crashed Thread:  0  Dispatch queue: com.apple.main-thread

Application Specific Information:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '+[ProKit changeToLook:]: unrecognized selector sent to class 0x1256718'
*** Call stack at first throw:
(
    0   CoreFoundation                      0x921036d4 __raiseError + 168
    1   libobjc.A.dylib                     0x90eea980 objc_exception_throw + 80
    2   CoreFoundation                      0x9210c93c __CFFullMethodName + 0
    3   CoreFoundation                      0x92109b34 ___forwarding___ + 380
    4   CoreFoundation                      0x92109de8 _CF_forwarding_prep_0 + 216
    5   Final Cut Pro                       0x0043e100 -[Controller init] + 124
    6   Final Cut Pro                       0x0043ebc8 InitializeCocoa + 44
    7   Final Cut Pro                       0x002f89fc _Z9LoadCocoav + 16
    8   Final Cut Pro                       0x002f916c main + 36
    9   Final Cut Pro                       0x000038a0 _start + 748
    10  Final Cut Pro                       0x000035b0 start + 48
)


Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
0   com.apple.CoreFoundation          0x9210326c ___TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION___ + 16

Thread 1:  Dispatch queue: com.apple.libdispatch-manager
0   libSystem.B.dylib                 0x900482e4 kevent + 12

Thread 2:
0   libSystem.B.dylib                 0x900a64f0 __workq_kernreturn + 12

Thread 0 crashed with PPC Thread State 32:
  srr0: 0x9210326c  srr1: 0x0002f030   dar: 0xe0074000 dsisr: 0x42000000
    r0: 0x90eea980    r1: 0xbffff790    r2: 0xa001cd94    r3: 0x00000000
    r4: 0x00000000    r5: 0x06819e00    r6: 0x00000016    r7: 0x05afa000
    r8: 0x05b0aa54    r9: 0xa001e620   r10: 0x0681ca00   r11: 0x000001d8
   r12: 0x900eedf4   r13: 0x00000000   r14: 0x00000000   r15: 0x00000000
   r16: 0x00000000   r17: 0x00000000   r18: 0x00000000   r19: 0x00000000
   r20: 0x00000000   r21: 0x00000000   r22: 0x00000000   r23: 0x00000000
   r24: 0xbffff938   r25: 0x0071e204   r26: 0x01256718   r27: 0x01256718
   r28: 0x070195f0   r29: 0x07019ae0   r30: 0xa01519ac   r31: 0x90eea93c
    cr: 0x24002448   xer: 0x20000000    lr: 0x90eea980   ctr: 0x900eedf4
vrsave: 0x00000000

Binary Images:
    0x1000 -   0x865ffd  com.apple.FinalCutPro 7.0 (7.0) <6E3B6CCF-C37D-1F3A-6667-E9691D0EA1B5> /Applications/Final Cut Pro.app/Contents/MacOS/Final Cut Pro
  0xc11000 -   0xc16fff +KGCore ??? (???) <CDA58A9C-90CC-D27E-B7AF-E15273D5F2E0> /Applications/Final Cut Pro.app/Contents/Frameworks/KGCore.framework/Versions/A/KGCore
  0xc1d000 -   0xc1dfff  com.apple.opengl 1.5.10 (1.5.10) <BE175BEC-F6E2-EAC9-20BF-F9E5B0287662> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
  0xc22000 -   0xc32ffb  com.apple.agl 3.0.12 (AGL-3.0.12) <E751A9E4-91C3-A9EF-82C6-405466106726> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
  0xc4c000 -   0xc4cfff  com.apple.Carbon 150 (152) <71F9DED0-340E-6023-C4DF-5E1957AD60FE> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
  0xc50000 -   0xf87fff  com.apple.QuickTime 7.7 (1680.28) <65CEB1F7-D99B-C1A7-8732-57D36B092AA3> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
 0x1089000 -  0x1089fff  com.apple.iokit.dvcomponentglue 1.9.9 (1.9.9) <E6F4CF07-2370-D2DE-951B-06293BE6B186> /System/Library/Frameworks/DVComponentGlue.framework/Versions/A/DVComponentGlue
 0x108d000 -  0x109dfff  com.apple.AERegistration 1.2 (77) <A414E04A-DC8D-3707-B024-759D8836BEE1> /Applications/Final Cut Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
 0x10b1000 -  0x10b9fff  com.apple.AEProfiling 1.2 (22) <ABE7EB32-9C8A-C259-CF01-E1AAE9A7389A> /Applications/Final Cut Pro.app/Contents/Frameworks/AEProfiling.framework/Versions/A/AEProfiling
 0x10c2000 -  0x10c2fff  com.apple.Cocoa 6.6 (???) <310C9913-3AF8-490B-4C03-C8A38E090C24> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
 0x10c6000 -  0x10c7ffd  com.apple.QuartzCore 1.5.8 (1.5.8) <FF8C6277-879C-95E2-3FDB-0E7FEC8BB50A> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
 0x10cf000 -  0x123dff3  com.apple.prokit 4.6 (745) <C73D0929-D3AF-A3A0-7B09-05A8BF5B1E4E> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
 0x130f000 -  0x130fffe  com.apple.quartzframework 1.5 (1.5) <1477BA99-2C53-F430-87C7-527C4782FD54> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
 0x1313000 -  0x1385fff  com.apple.ProFX 1.2.3 (1.2.3) <3F561013-AE61-FB92-B568-3F27D070805B> /Library/Application Support/ProApps/SharedA/Frameworks/ProFX.framework/Versions/A/ProFX
 0x13a4000 -  0x14e9fff  com.apple.QTKit 7.7 (1680.28) <82F2E52D-651C-3AC3-ACB1-136EA42A36D1> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
 0x15d0000 -  0x16d2ffd  com.apple.DiskImagesFramework 10.5.10 (204) <368B11E5-45EF-4851-2822-EF90292AF7A7> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
 0x1735000 -  0x178effb  com.apple.proapps.MIO 1.0 (498) <D3FC3433-1AAC-9310-41EE-6D1188690015> /Applications/Final Cut Pro.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
 0x17c9000 -  0x17d4ffb  com.apple.finalcutstudio.prometadatasupport 0.6 (1.0) <848659E5-DE39-081A-F860-E6394174A4BD> /Library/Frameworks/ProMetadataSupport.framework/Versions/A/ProMetadataSupport
 0x17dd000 -  0x181aff3  com.apple.CoreMediaIOServicesPrivate 34.0 (1360) <EA62ADF1-8C2A-CF8F-A56A-B838CAA6C474> /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions/A/CoreMediaIOServicesPrivate
 0x1834000 -  0x185dff3  com.apple.CoreMediaPrivate 20.0 (20.0) <877C6366-48B0-89A5-3FED-A896B362221D> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMediaPrivate
 0x186d000 -  0x1889fff  com.apple.IMFramework 4.0.8 (584) <C700BA51-B41E-931A-186E-BFF34B250F15> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
 0x189f000 -  0x18d3ff7  com.apple.FWAVCPrivate 30.46 (46) <B9B50F19-328A-6177-6FBD-DC94171F6C5D> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/Versions/A/FWAVCPrivate
 0x18e7000 -  0x1905ffb  com.apple.XSKey 1.0.0 (52) <EB878CE4-313A-F544-EFBF-B43A1724339D> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
 0x1913000 -  0x1934ff1  libmx.A.dylib ??? (???) <1E5DC0FD-988E-E1CA-4F45-6B8497CB72FB> /usr/lib/libmx.A.dylib
 0x193b000 -  0x1949ff3  OpenGLOriginal ??? (???) <54BAE289-E544-387C-E799-7A4A05E70AA9> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGLOriginal
 0x1951000 -  0x1952ff8  com.apple.ApplicationServices 38 (38) <284412F3-76FF-00F2-A0B7-DDFE978731F8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
 0x1968000 -  0x19befff  libGLU.dylib ??? (???) <3418CE7C-A086-3162-847F-553C15D08674> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
 0x19d1000 -  0x19fefff  libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
 0x1a0d000 -  0x1a0fffe  com.apple.CoreGraphics 1.409.8 (???) <DD99AC4C-CE01-86B0-82C2-E7D59EC8F53B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
 0x1a18000 -  0x1a18fff  com.apple.ImageIO.framework 2.0.9 (2.0.9) <E352B5EF-A799-B800-29D2-2EA0D849299A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
 0x1a1d000 -  0x1a1effe  com.apple.CoreText 3.0.0 (???) <14DA04A6-B07E-D121-A2D1-FF37446E805B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
 0x1a24000 -  0x1abffff  com.apple.ApplicationServices.ATS 4.0 (???) <4210DABF-FCC1-CAFD-F05B-6A22996A4EB6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
 0x1ae6000 -  0x1b9cffb  com.apple.ColorSync 4.6.2 (4.6.2) <E58DAB89-BB84-63AC-D2B0-67EFCEDD3FF6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
 0x1bd8000 -  0x1c33fff  com.apple.HIServices 1.8.3 (???) <3BC85EEB-77F3-5CCE-192E-4AF1BE39EFE3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
 0x1c60000 -  0x1c73fff  com.apple.LangAnalysis 1.6.6 (1.6.6) <C10F3B06-C0E6-1EF0-5E50-6A0C218EF7EC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
 0x1c80000 -  0x1d31ff3  com.apple.QD 3.36 (???) <4B61843F-F611-475F-2050-E89BDF34F83A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
 0x1d60000 -  0x1d76ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <1E77F323-9231-33E9-0605-80009E8F659A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
 0x1d86000 -  0x2302ff3  CoreGraphicsOriginal ??? (???) <E0BF5FF8-FA51-B996-63FC-B860BF44A7ED> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphicsOriginal
 0x23ce000 -  0x251afff  ImageIOOriginal ??? (???) <D12782E1-7C25-BB96-79C5-D352AC202FCD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIOOriginal
 0x2571000 -  0x2591ff7  libJPEG.dylib ??? (???) <3508B464-17ED-11D8-8AE1-CEA92C7FE756> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
 0x2598000 -  0x25d9ffb  libTIFF.dylib ??? (???) <6910F0C7-5ED8-2F98-EA8E-BF601136CE47> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
 0x25e3000 -  0x25e7ffe  libGIF.dylib ??? (???) <E4F0002B-104C-2A2C-B5B4-327E906E544F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
 0x25ec000 -  0x2607ffb  libPng.dylib ??? (???) <7BA22147-E900-D2EE-6837-C2F439302F7F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
 0x260f000 -  0x2611ffd  libRadiance.dylib ??? (???) <50C07CA8-61B0-0FA0-63AE-C748B5F4D786> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
 0x2615000 -  0x2676fff  CoreTextOriginal ??? (???) <0A3D84CA-A94B-9D33-8921-E464780DD350> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreTextOriginal
 0x26b6000 -  0x26edfff  libFontParser.dylib ??? (???) <E83C633B-4E6A-C7DE-6ACF-A5EDBE925F7A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
 0x271b000 -  0x2722ffb  com.apple.CommonPanels 1.2.4 (91) <177F4FCD-6B5A-550A-0204-E9E24343E801> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
 0x272b000 -  0x272efff  com.apple.help 1.3.2 (41.1) <154EA4F7-780A-FE77-7E3E-2AA12AD68287> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
 0x2733000 -  0x2a7ffe7  com.apple.HIToolbox 1.6.0 (???) <DF8CB024-C724-EBEA-C893-0E9B0E52C1B8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
 0x2bec000 -  0x2c57fff  com.apple.htmlrendering 72 (1.1.4) <5842A9D6-AE56-B4F9-F25E-34196AF8E60D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
 0x2c7e000 -  0x2c96fff  com.apple.ImageCapture 6.1 (6.1) <01EEA857-F84B-F20B-3D69-A3409982C4B7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
 0x2cae000 -  0x2d54ffb  com.apple.ink.framework 1.3.3 (107) <DE0A1531-E2A0-DDEC-5DAC-BEE3547958C6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
 0x2d7e000 -  0x2dc3ffb  com.apple.NavigationServices 3.5.4 (182) <879BA713-4224-D332-994F-51E95AA173A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
 0x2ded000 -  0x2e0cfff  com.apple.openscripting 1.3.1 (???) <5585B31C-A3C4-813A-0F86-E2DFBFC209AA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
 0x2e1d000 -  0x2e20fff  com.apple.securityhi 4.0 (36638) <E251B2BF-75BE-74FD-8B04-947302A5DC13> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
 0x2e26000 -  0x2e32ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <FDC8155C-6502-378A-9701-E15CAA028A74> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
 0x2e3b000 -  0x2e73ffb  com.apple.coreui 2 (114) <60817905-9D16-B950-3DAF-E0219841FAD7> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
 0x2e94000 -  0x2f74fff  com.apple.DesktopServices 1.5.11 (1.5.11) <B839094E-2811-5A48-B008-9515DD3A0576> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
 0x2fbe000 -  0x3106fff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <F6DD704F-3F1E-F5D7-F409-942DBFF60DED> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
 0x315e000 -  0x31b0ff7  com.apple.framework.familycontrols 2.0 (2.0) <9DFE0F7C-E8F2-6DB0-B86D-B206A2C00BFE> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
 0x31ca000 -  0x352fffe  QuartzCoreOriginal ??? (???) <60E54CFB-861D-C5E6-6BB4-F263A192D558> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCoreOriginal
 0x361a000 -  0x3669fff  libGLImage.dylib ??? (???) <2E1F2A26-2506-4149-D209-EC19E52D0384> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
 0x3673000 -  0x3694ff3  com.apple.CoreVideo 1.6.0 (43.0) <73357572-AC10-3490-CF1F-CF47099ECCE1> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
 0x36aa000 -  0x3ad8ffe  libGLProgrammability.dylib ??? (???) <5D52750E-C9E4-38B2-5D3A-4DB51361FA2B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
 0x3be4000 -  0x3be9fff  com.apple.OpenDirectory 10.6 (10.6) <FB17CAD7-229A-FD6C-F316-5C9C624BE141> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
 0x3bf2000 -  0x3c0bfff  com.apple.CFOpenDirectory 10.6 (10.6) <F0BBFA8E-735F-D091-E483-63207FA64E59> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
 0x3c1c000 -  0x3e07ff7  com.apple.AddressBook.framework 5.0.4 (883) <4B16D437-C2CF-19A1-48A7-DC9CDA835D91> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
 0x3f1d000 -  0x4784ffb  com.apple.AppKit 6.6.8 (1038.36) <052F08DB-8CFF-C77F-A803-167C3A0FE890> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
 0x4d10000 -  0x4d88ff3  com.apple.backup.framework 1.2.2 (1.2.2) <658C7930-57AE-F212-9855-AED0EA7F9C9C> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
 0x4da3000 -  0x4dddffb  com.apple.securityinterface 4.0.1 (40418.0.1) <2A5024C6-4EEE-8407-4E65-EA127ABB4A91> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
 0x4e07000 -  0x4fa8ff7  com.apple.QuartzComposer 2.1 (106.13) <6DD1DF71-CB58-8B1B-9CEB-0C5BBF32E842> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
 0x50b0000 -  0x511afff  com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
 0x515e000 -  0x51a0fff  com.apple.quartzfilters 1.5.0 (1.5.0) <3F2DC01A-646C-D5B5-EA55-D510583BA4D5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
 0x51c6000 -  0x51c8ffe  com.apple.imageKit 1.0.2 (1.0) <AFD55731-0CF2-3CD7-69F7-ABF1CA76483F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
 0x51d1000 -  0x52f6ffb  ImageKitOriginal ??? (???) <50DFCBE4-1B38-4BD7-1761-C761C3FBFD5E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKitOriginal
 0x53ba000 -  0x543effb  com.apple.QuickLookFramework 2.0 (223.3) <34AA5CF8-1B3E-0F07-B714-B0CC3048194D> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
 0x548c000 -  0x548cfff  com.apple.QuickLookUIFramework.deprecated 2.0 (223.3) <36A41225-C8A5-8647-EC0A-E06D00FA7F08> /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
 0x5491000 -  0x549affb  com.apple.DisplayServicesFW 2.3.3 (289) <0E5BB5DE-D985-3E65-4528-BB56FC87BC28> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
 0x54a3000 -  0x54e0ff3  com.apple.CoreMedia 0.484.60 (484.60) <7D756509-A900-0035-3383-586B4A9AEAAE> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
 0x54f6000 -  0x5612ff7  com.apple.MediaToolbox 0.484.60 (484.60) <1CDC68A9-FE57-C5FC-58F2-2BAD37FC460A> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
 0x5671000 -  0x589efe7  com.apple.VideoToolbox 0.484.60 (484.60) <856D99BA-4E04-FD9B-7AAB-A8B062827A8D> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
 0x58eb000 -  0x593afff  com.apple.CoreMediaIOServices 140.0 (1492) <DE66669D-4830-3EE7-3DB4-AFC4AC1B630E> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/CoreMediaIOServices
 0x5967000 -  0x5993ffb  com.apple.AppleVAFramework 4.10.27 (4.10.27) <B4A2BDB8-C121-4333-682A-85882BEC3C4C> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
 0x599a000 -  0x599bffd  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <35309C78-38C2-3F1D-C938-8371B7CDBD5F> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel
 0x59a1000 -  0x5a7dff3  com.apple.DiscRecording 5.0.9 (5090.4.2) <4BF7EE49-FD43-5052-3E8B-4E48C4858133> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
 0x5ad5000 -  0x5aeafff  com.apple.IMUtils 4.0.8 (584) <798E21F9-9606-C71C-C599-8DC473C8652B> /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framework/Versions/A/IMUtils
0x10000000 - 0x1005cfff  com.apple.proapps.AudioMixEngine 2.0 (68) <2D46083F-7FEC-EF7D-FBCB-75D8F635CC86> /Applications/Final Cut Pro.app/Contents/Frameworks/AudioMixEngine.framework/Versions/A/AudioMixEngine
0x64b00000 - 0x64b08fff  com.apple.print.framework.Print 6.1 (237.1) <0E664695-9F36-2123-ECA5-A7884546497F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x8fe00000 - 0x8fe3d7c7  dyld 132.1 (???) <25642EAE-381E-F8E4-65D7-202623802C57> /usr/lib/dyld
0x90003000 - 0x901dbffb  libSystem.B.dylib ??? (???) <45298DD5-31D9-AE52-CCE7-D02224C22208> /usr/lib/libSystem.B.dylib
0x901dc000 - 0x902edfff  libxml2.2.dylib ??? (???) <F89A83D2-BF18-C82B-717B-6FCD96B8B7D0> /usr/lib/libxml2.2.dylib
0x902ee000 - 0x903a3ffb  com.apple.CFNetwork 454.12.4 (454.12.4) <F25C54B7-3D47-E79D-6443-F8595690907B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x903a4000 - 0x904e8ff3  com.apple.CoreData 102.1 (251) <15CBF408-7CBB-5F0E-4720-155292279898> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x904e9000 - 0x904feff3  com.apple.MultitouchSupport.framework 207.11 (207.11) <76B1DD1B-23F7-45DA-CEAB-34AF85795DE4> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x904ff000 - 0x905a3ff3  com.apple.LaunchServices 362.3 (362.3) <8EEC6B1A-5174-443D-942A-C253358D206C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x905a4000 - 0x905b1fff  libbz2.1.0.dylib ??? (???) <F99784F8-CE66-8441-C249-3A9C8A40E43D> /usr/lib/libbz2.1.0.dylib
0x905b2000 - 0x90612fff  com.apple.framework.IOKit 2.0 (???) <71C8FB5C-FE64-8001-2DA1-EF8BC7E3273A> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x90613000 - 0x9064afff  libcups.2.dylib ??? (???) <BA985407-02A9-8630-B8FB-FF481940AE47> /usr/lib/libcups.2.dylib
0x9064b000 - 0x90692ff7  com.apple.Metadata 10.6.3 (507.15) <6AB3D3B7-BFEA-6024-8BA6-F639E3920670> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x90693000 - 0x90717ff3  SecurityFoundation ??? (???) <1A42E6D9-EC2C-7DF7-E9E8-842CBD0E2902> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x90718000 - 0x90793fef  libvMisc.dylib ??? (???) <5769E98E-34D2-3D99-D576-FFC29163F0F0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x9080c000 - 0x9080cfff  com.apple.Accelerate 1.6 (Accelerate 1.6) <1BF82EB5-E470-3F0E-3FA3-24A75526F972> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x9080d000 - 0x90a84ff3  com.apple.JavaScriptCore 6534.58 (6534.58.1) <6D666E86-92DE-F849-A945-0AB0514FF523> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x90a85000 - 0x90a93fff  libz.1.dylib ??? (???) <3B22B5A3-9A90-EF48-84D9-07E6D0A1EDBF> /usr/lib/libz.1.dylib
0x90aa9000 - 0x90af4ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <A704CB31-F10F-14C0-C1B3-2617ED57456F> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
0x90af5000 - 0x90e3effb  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5F30A629-B51D-8D46-7323-E3F368CCBE61> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x90e3f000 - 0x90e75fff  com.apple.bom 10.0 (164) <74DBADA6-BDEF-FBAB-207D-95856337ADC8> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
0x90e76000 - 0x90e83fff  libkxld.dylib ??? (???) <7C1EE264-5B42-1FBA-AA8B-B0F011D476EB> /usr/lib/system/libkxld.dylib
0x90e84000 - 0x90ea2fff  com.apple.DirectoryService.Framework 3.6 (621.16) <54B0526F-20A9-2E1B-DD65-B7026B541F1D> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x90ede000 - 0x90f90ff3  libobjc.A.dylib ??? (???) <37861DF9-840C-8F1C-57E9-2E4D4CF4A5D3> /usr/lib/libobjc.A.dylib
0x90f91000 - 0x90fcefff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <40364E85-F915-7EA1-98A4-4AFC1FFB2D3D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x9114e000 - 0x91153ffe  libmathCommon.A.dylib ??? (???) <C74C35F1-C121-4418-6BFF-503AA9D0B889> /usr/lib/system/libmathCommon.A.dylib
0x91154000 - 0x91162ffe  com.apple.NetFS 3.2.2 (3.2.2) <1B167948-4975-38B7-492A-E1540FE665D7> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x91163000 - 0x91284ffa  com.apple.vImage 4.1 (4.1) <E5AA1361-75C1-CC75-B2EF-DB7742CFA876> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x91290000 - 0x9129fffe  com.apple.DSObjCWrappers.Framework 10.6 (134) <E9919459-1636-8270-1389-2E2AC470DC08> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWrappers
0x912a3000 - 0x912e1fff  com.apple.MediaKit 10.5.1 (490) <7E9A0755-E042-6904-9257-C5AC77CFFE94> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x912e2000 - 0x912e4ff8  com.apple.TrustEvaluationAgent 1.1 (1) <1C071676-7430-4CB5-3239-F28C6D0DE571> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x912e5000 - 0x912eefff  com.apple.DiskArbitration 2.3 (2.3) <F5681EE4-97D8-4145-CCAD-51F78D899D80> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x91313000 - 0x913aefff  edu.mit.Kerberos 6.5.11 (6.5.11) <A2D37CBF-40C2-6068-A8C7-8A21DF3B2986> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x913af000 - 0x913b0fff  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <ACF1E023-26DF-32D9-0A82-F67EE1BD77E3> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x913b1000 - 0x913b2ffe  liblangid.dylib ??? (???) <F27E4448-E515-F343-E915-5E8499E8A290> /usr/lib/liblangid.dylib
0x913b3000 - 0x913d2fff  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <F1C691D3-8B4F-9659-E87C-85BD6775DD78> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x913d3000 - 0x91561ff3  libicucore.A.dylib ??? (???) <3E465D6F-535F-E51D-93F1-7464C8AA934C> /usr/lib/libicucore.A.dylib
0x91562000 - 0x915d5ff7  libstdc++.6.dylib ??? (???) <3B1C6DCD-B165-49B8-060D-9FCC4C09FBDE> /usr/lib/libstdc++.6.dylib
0x915d6000 - 0x91619ff3  libauto.dylib ??? (???) <7F36ED55-D49F-3E2C-6330-6F0F7F645AFA> /usr/lib/libauto.dylib
0x9161a000 - 0x91639fff  libresolv.9.dylib ??? (???) <DEACEF36-B836-06EF-7F0A-DF1109FB9CE2> /usr/lib/libresolv.9.dylib
0x9163a000 - 0x9163fffd  IOSurface ??? (???) <5996588F-62F6-06F1-1ED6-B0ED97B93E69> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x9164f000 - 0x9166dfff  com.apple.vecLib 3.6 (vecLib 3.6) <151ABF02-8B27-6301-2DDA-FF4A7A8987B2> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x9166e000 - 0x91696ff3  com.apple.DictionaryServices 1.1.2 (1.1.2) <28D18429-6770-B127-886A-D632AEC97FB0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x916f1000 - 0x917a6ffb  libsqlite3.dylib ??? (???) <BC14CA88-E9DA-5E7E-B624-D36846C54574> /usr/lib/libsqlite3.dylib
0x917e9000 - 0x91822ff3  com.apple.AE 496.5 (496.5) <D9E8C3F3-37C1-6BFA-FB1F-5D8C884D84CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x91823000 - 0x91837fff  libbsm.0.dylib ??? (???) <AE1E2515-4ED9-9AFD-0DAF-ADFA421D39C5> /usr/lib/libbsm.0.dylib
0x91838000 - 0x91aa7ff3  com.apple.Foundation 6.6.8 (751.63) <2FB8A42C-7D18-2D83-E639-1C276426D5FD> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x91aa8000 - 0x91b67ffb  libcrypto.0.9.7.dylib ??? (???) <86BE1918-4D57-5116-43EE-7624B51EC11A> /usr/lib/libcrypto.0.9.7.dylib
0x91b68000 - 0x91f00fff  libLAPACK.dylib ??? (???) <5230AFE0-20E1-B855-A1DD-3D1102A75450> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x92005000 - 0x92011ff3  com.apple.audio.SoundManager 3.9.3 (3.9.3) <E1AE3BAA-BEEA-92F6-3418-DEF73615E77E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
0x92012000 - 0x9217fff7  com.apple.CoreFoundation 6.6.6 (550.44) <01239ACC-BF77-CD89-FB11-62612ADA6BBE> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x92180000 - 0x921b9ff7  libcurl.4.dylib ??? (???) <EE6E04F0-B072-AA64-6E50-039BB7C9396A> /usr/lib/libcurl.4.dylib
0x921ba000 - 0x92240fff  com.apple.SearchKit 1.3.0 (1.3.0) <FDCCACEC-1294-9871-DBDD-DCC0C53F8169> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x92241000 - 0x92331fff  libcrypto.0.9.8.dylib ??? (???) <1E18F757-0E64-13C0-C9A9-3F23CA3CF28A> /usr/lib/libcrypto.0.9.8.dylib
0x92332000 - 0x929a0fe7  libBLAS.dylib ??? (???) <56ABFBB6-B48B-1487-DFC1-B09FF721E6C9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x929e1000 - 0x929f2fff  libsasl2.2.dylib ??? (???) <E529A762-D2AA-F3B1-F603-F158C0511D98> /usr/lib/libsasl2.2.dylib
0x929f3000 - 0x92c69ff7  com.apple.security 6.0 (36910) <F73CE32C-B154-86BC-2B13-966B9DB0CD44> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x92ccd000 - 0x92ccdffa  com.apple.CoreServices 44 (44) <EEDF28CB-C144-9A7B-7467-32EB629CC620> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x92cce000 - 0x92d52fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <E3356E09-85EC-0084-E942-200DB9ACE58B> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x92d53000 - 0x92df1fc3  libvDSP.dylib ??? (???) <E20C4AD9-3FC2-0BAD-6C72-EDD75D23FD4D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x92df2000 - 0x92ed0ff7  com.apple.CoreServices.OSServices 359.2 (359.2) <6A759D29-CB94-342E-45A7-5F1684A0FEEC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x92ed1000 - 0x92edcfff  com.apple.CrashReporterSupport 10.6.7 (258) <30A93A48-B075-E823-DA6D-41D4E220D8C0> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x92edd000 - 0x92f09fff  libxslt.1.dylib ??? (???) <88189D5E-6F3D-BC47-0D34-8EA6465D0277> /usr/lib/libxslt.1.dylib
0x92f0a000 - 0x92f0bff3  libffi.dylib ??? (???) <D287790B-41B2-B59A-DF08-1D798AFF145A> /usr/lib/libffi.dylib
0x92f0c000 - 0x92f1aff3  com.apple.AppleFSCompression 24.4 (1.0) <499E1A91-8B8C-125E-3CEE-D31F1D3029F2> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x92f1b000 - 0x92f55ffb  com.apple.LDAPFramework 2.0 (120.1) <C25A64EE-5115-2886-9440-A80AE149D84C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x92f58000 - 0x92f8eff8  libssl.0.9.8.dylib ??? (???) <4DAB9248-475B-B076-4AAA-1643B8AD71E0> /usr/lib/libssl.0.9.8.dylib
0xfa100000 - 0xfa195ffb  com.apple.print.framework.PrintCore 6.3 (312.7) <FFD49B9E-C71E-DC0D-48C1-C70003260D72> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0xffff8000 - 0xffff9703  libSystem.B.dylib ??? (???) <45298DD5-31D9-AE52-CCE7-D02224C22208> /usr/lib/libSystem.B.dylib

Model: PowerMac11,2, BootROM 5.2.7f1, 4 processors, PowerPC G5 (1.1), 2.5 GHz, 10 GB, SMC
Graphics: NVIDIA GeForce 6600, GeForce 6600, PCIe, 256 MB
Just a quick question. How did you managed to install SL 10.6.8? I have also PowerMac11,2 Dual Core 2,0 GHz and no installation runs on my comp. They all hang after the Apple . Tnx
 
Just a quick question. How did you managed to install SL 10.6.8? I have also PowerMac11,2 Dual Core 2,0 GHz and no installation runs on my comp. They all hang after the Apple . Tnx
You probably successfully restored Snow Leopard but for the G5 systems they all require you to go into the boot picker (Xboot) in OpenFirmware. Try holding option on start up, select your Snow Leopard partition, and then see if the machine will boot.
 
You probably successfully restored Snow Leopard but for the G5 systems they all require you to go into the boot picker (Xboot) in OpenFirmware. Try holding option on start up, select your Snow Leopard partition, and then see if the machine will boot.

This has not been fixed? Completely forgot about this issue, will add a note to instructions on the site.
 
You probably successfully restored Snow Leopard but for the G5 systems they all require you to go into the boot picker (Xboot) in OpenFirmware. Try holding option on start up, select your Snow Leopard partition, and then see if the machine will boot.
I went straight to the boot picker, G5 starts to boot up from 10.6.8 partition, but upon Apple logo, i get a kernel panic error. I think that my Nvidia 6600 is the cause and i should use another 10.6.8 package.
 
I went straight to the boot picker, G5 starts to boot up from 10.6.8 partition, but upon Apple logo, i get a kernel panic error. I think that my Nvidia 6600 is the cause and i should use another 10.6.8 package.

Have you got any PCIe hardware installed? AHCI kexts are broken, so if you have a PCIe SSD card, for example, and do not remove those kexts or disable the card via OFW, you may get a KP on boot.
 
Have you got any PCIe hardware installed? AHCI kexts are broken, so if you have a PCIe SSD card, for example, and do not remove those kexts or disable the card via OFW, you may get a KP on boot.
My system is pure vanilla, just Geforce 6600LE, two HDD (not SSD), 3,5 GB of ram.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.