SuSE, kernel 2.4.12 RAM consumption

Hi,
Linux related but I thought would be interesting for others.
On the system with SuSE 7.2 kernel 2.4.12 'free' shows total RAM
900M which is 124M less then is in reality. With kernel 2.4.4-
4GB or the same 2.4.12 kernel without frame buffer support
memory displays right. I know you can do 'mem=1024M' with lilo
but I am looking for the reason rather than a solution. Also, if
anybody did any example of an application that does garbage
collection at user's request would appreciate if you could share.
Thanks
Anatoliy Smirnov

ok, I got it

Similar Messages

  • ITunes nearing 1GB of RAM consumption! Any ideas to lessen the load?

    Hello -
    My name is Erick and I'm an ACMT/Network Engineer. Apple-certified, but not Apple-employed.
    I have encountered an issue in iTunes which was not resolved with the latest 10.6.3 update and was hoping for any community suggestions or advice.
    First, context may be important: I use iTunes primarily as a Home Sharing home-base to stream my TV Shows and Movies to Apple TVs in my home. As a result, it (as well as the iMac) are on 24/7 with the exception of a daily scheduled task which quits and reopens iTunes to sync unwatched media to my iOS devices at 4:30AM. 
    I have noticed several things with iTunes 10.6 which I have documented in other questions here on the forums (long periods of unresponsiveness, the inability to scrub videos), but this issue may be just as significant and could be a root cause in my other problems. This particular question deals with RAM consumption. I have noticed for years that iTunes is a memory hog, so you won't find me shocked there, but what has shocked me is how the amount of RAM iTunes consumes has risen with the amount of RAM I've installed. I currently use an iMac (mid-2010) with a quad i7 and 16GB of RAM.
    I have noticed lately that upon opening iTunes 10.6.1 (and 10.6 before it) that iTunes immediately captures about 250MB of RAM. While I have plenty to spare in comparison, I've noticed that the amount of RAM it consumes swells considerably throughout the day. For example, my iTunes is completely idle right now - no devices are connected, no media is streaming or caching, no store purchases are downloading, and iTunes Match/Genius is not actively scanning anything - but my iTunes shows 605MB of RAM. When playing an m4v file converted from mp4 (so we're talking maybe a 200MB media file - not an MKV convert or anything in 1080p), I've noticed iTunes balloon to 900+MB of RAM. If I quit the application and open it again, it immediately snatches up that 250MB or so of RAM, then balloons within minutes.
    So while I expect iTunes to consume RAM, as it is a very resource-heavy and busy media center hub, I am surprised by the amount of RAM being consumed here and was wondering if anyone might be able to clarify whether I should consider this a "problem" or just iTunes being iTunes; and if it isn't a problem, are there still any suggestions toward how I could minimize RAM consumption? I realize that I have RAM to spare, but when I get into video conversions, music playback, and work on this computer (all the while my wife is streaming a video across the house on an Apple TV), I do want to make sure I'm not wasting memory on an application that might be ballooning unnecessarily (it is, after all, 6X the consumption of the next app in line).
    Just for those who might be wondering what I've already tried, I've worked on several quick fix ideas to help remedy the situation (and hoped they would fix the other issues I've experienced with iTunes 10.6): I've rebuilt the library by opening a new library and importing from my previous iTunes LIbrary file; I've created a new library, dragged any media to it, and tried to play it; I've run iTunes in 32-bit mode. None of these has resolved the issue. I have also attempted to run these files from a new user account (with a new library or with the existing library), and have tried them from an external troubleshooting drive which is also running Lion 10.7.3 and iTunes 10.6.1.
    Any ideas, suggestions, or recommendations anyone could provide to aid with this problem? While it's not crippling, it does cause some headaches as other applications begin fighting for memory. I also wonder if the amount of RAM it's consuming might be the source of some other playback and unresponsiveness issues I've experienced.
    Thanks for any suggestions; I really appreciate your time.

    I have resolved my issue with iTunes' RAM consumption and wanted to post the solution for anyone who might be experiencing similar symptoms. It was really quite simple to fix, I just didn't see it for what it was:
    iTunes Match was causing iTunes to utilize significant amounts of RAM to queue, refresh, or sync my iTunes Match database.
    iTunes Match - which also forces Genius Mode to be on (something that used to cause my iTunes 10.5 to freeze and balloon in RAM usage before I turned it off) - would regularly attempt to refresh my database of 21,000 matched songs (none of which were stored on the computer - just in the cloud) and when it would attempt to update or refresh that library, the program would stop responding. The RAM ballooning I saw when the application launched would start to climb during that unresponsive period, when iTunes was attempting to pack more and more power into the Match check to get it to power through.
    So, the simple solution was this: Turn iTunes Match off and iTunes quits freezing, and its RAM usage after 24 hours of uptime is about 130MB.
    Now, that of course completely eliminates the usefulness of iTunes Match since the music is no longer accessible on this machine in this iTunes Library. So how to restore its usefulness without recreating the problem? Slightly more aggravating, but still working right: I created a separate, fresh new library and named it iTunes Match. When I need music, I hold option when selecting the iTunes app and select my Match Library, which has NOTHING else in it but iTunes Match. When I'm done with the music, I switch back to my 24/7 media streaming library that has my 2TB of TV Shows & Movies (and device sync relationships) in it.
    It doesn't seem like iTunes Match causes freezing and RAM ballooning all by itself, it just seems like in a library that's also full of other stuff, it's the final straw that kills the performance. Split the libraries up and things seem to work really well in both.
    Not a perfect solution, but until the next release of iTunes, this may be the best bet. I hope this helps someone else out there, but it at least cleared up my issue. Thanks for reading.

  • Measuring the cpu and ram consumption of a given query in sql server

    hello there how you doing and am new to this sql server forum and i suddenly popped to ask questions related to sql server
    and my question goes like this
    in sql server i have table called testt and it have more thna10000000 records
    and i have written a query select * from testt limit 9000000; and what i want is to measure the
    CPU consumption of this given query=???????????????
    and
    RAM consumption of this given query=???????????????
    Time consumption of this given query=?????????????? this i will get it from the result bar but i don't know whether it is correct or not
    any help on this it may be query, tool or configurations all are acceptable and appreciated
    10Q for letting me ask questions and feeling freely.

    Please check these queries and this may helps you to get whats happening on with CPU currently..
    SELECT getdate() as "RunTime", st.text, qp.query_plan, a.* FROM sys.dm_exec_requests a CROSS APPLY sys.dm_exec_sql_text(a.sql_handle) as st CROSS APPLY sys.dm_exec_query_plan(a.plan_handle) as qp order by CPU_time desc
    Top 50 CPU usage :
    SELECT TOP 50 st.text
                   ,st.dbid
                   ,st.objectid
                   ,qs.total_worker_time
                   ,qs.last_worker_time
                   ,qp.query_plan
    FROM sys.dm_exec_query_stats qs
    CROSS APPLY sys.dm_exec_sql_text(qs.sql_handle) st
    CROSS APPLY sys.dm_exec_query_plan(qs.plan_handle) qp
    ORDER BY qs.total_worker_time DESC
    SP_Whoisactive --- download from : http://www.brentozar.com/responder/log-sp_whoisactive-to-a-table/
    Activity Monitor and sp_who2 active also will give some idea...
    Reference links...
    http://channel9.msdn.com/posts/SQL-server-High-CPU--Part-1
    http://channel9.msdn.com/posts/Troubleshooting-SQL-server-High-CPU--Part-2
    http://jeffstevenson.karamazovgroup.com/2008/09/identifying-high-cpu-sql-processes.html
    http://searchsqlserver.techtarget.com/tutorial/Step-1-CPU-usage
    ================
    Execute this script and and start doing your analysis in your server so that you will get more idea how its working and all the details...
    Sample CPU Test : Dont try this in production and try this in your test or Dev server..
    -- Query to Keep CPU Busy for 2 0 Seconds
    DECLARE    @T DATETIME, @F BIGINT;
    SET @T = GETDATE();
    WHILE DATEADD(SECOND,20,@T)>GETDATE()
    SET    @F=POWER(2,30);
    You can easily change the parameter in the DATEADD and can make it run for 50 seconds.
    -- Query to Keep CPU Busy for 50 Seconds
    DECLARE    @T DATETIME, @F BIGINT;
    SET @T = GETDATE();
    WHILE DATEADD(SECOND,50,@T)>GETDATE()
    SET    @F=POWER(2,30);
    Raju Rasagounder MSSQL DBA

  • RAM consumption in iPhone4S using iOS6

    My iPhone4S after performing an update to iOS 6, everything went perfectly well. And I am using my iPhone normally.
    One thing that strike me after I tried using iOS6 for several days now is that the consumption of RAM is much more. My iPhone4s response slower than when I was using iOS5.
    I am sure that there is huge updates and new features that is offering is iOS6, but considering that it has been released for the iPhone5 in general.
    wondering so much that apple will at least provide updates to improve the iOS6 RAM consumption. For the sake of iPhone4S or even iPhone3GS

    This is number of sessions which made number of processes a little more on node 1. But over all these extra processes are taking a few MBs of memory only.

  • [Request] cryogenic kernel module to reduce power consumption

    Hi there,
    I found a very interesting kernel module to reduce power consumption. It is called cryogenic:
    Cryogenic is a Linux kernel module that allows to reduce energy consumption by means of enabling cooperative clustering of I/O operations among the various applications that make use of the same hardware device. In order to achieve this target, Cryogenic provides an API that enables applications to schedule I/O operations on SCSI and network devices at times where the impact the operations have on energy consumption is small.
    https://gnunet.org/cryogenic
    Is someone interested in packaging this for the AUR?
    Thanks!

    What part of that document led you to think it would automagically reduce power consumption without application support?
    I saw that document (and it is the same as your first post... 106 pages..meh), all points me to (still) think that applications have to explicitely support cryogenic to take advantage from it, is pretty clear:
    Page 28
    In this section we present the way developers should use Cryoge nic’s API in order to
    benefit from its capabilities . We illustrate with examples the code that must be added to modify the behaviour of any application and give a clearer idea of the execution flow .
    Did you read that document, yes?
    Last edited by kokoko3k (2014-03-29 16:04:11)

  • Ocfs for new suse kernel 2.4.21-203

    Hi!
    We arecurrently evaluating 9.2 RAC on Linux (SuSE Enterprise Server 8 / United Linux. We have kernel 2.4.21-198-smp and there was an rpm ocfs-2.4.21.198-1.0.11-1.i586.rpm on http://oss.oracle.com/projects/ocfs for this kernel. Now SuSE has recomended an update to kernel 2.4.21.203 because of some recent security issues. But where do I get the (supported) rpm for this ? Do I have to uninstall the ocfs-2.4.21.198 before updating the kernel ?
    TIA, Roland Steinmeyer

    Hi, please send me the error log file,
    Thanks.
    Message was edited by:
    Serch-NET

  • Kernel Panic? 4gb RAM in MBP 5,1

    I used to get this error after installing 8gb of RAM into my MBP 5,1 after I read Apple released a fix to enable use of 8gb instead of the 4gb recommended. I got kernel panics often and accepted it was due to the extra RAM.
    I removed 4gb of the RAM yesterday so only 4gb remained, however I am stil getting kernel Panics. Can anyone help?
    Here is one of them:
    Interval Since Last Panic Report:  444181 sec
    Panics Since Last Report:          10
    Anonymous UUID:                    C913275A-ADE2-46FD-A48C-554A24334AA0
    Mon Aug  8 13:44:40 2011
    panic(cpu 1 caller 0xffffff80002c268d): Kernel trap at 0xffffff7f815ae1c1, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0xffffffffffffff97, CR3: 0x0000000000100000, CR4: 0x0000000000000660
    RAX: 0x000000000000000e, RBX: 0x00000000ff540000, RCX: 0x00000000ffff8609, RDX: 0x00000000ffff8609
    RSP: 0xffffff80a33dbb70, RBP: 0xffffff80a33dbba0, RSI: 0x0000000000000000, RDI: 0xffffff800bcb2b70
    R8:  0x0000000003c18609, R9:  0x00000000007fd500, R10: 0x0000000000000000, R11: 0xffffff80002d8240
    R12: 0xffffff800bcaf000, R13: 0x00000000000000c0, R14: 0x0000000000000001, R15: 0xffffff800bcb2800
    RFL: 0x0000000000010202, RIP: 0xffffff7f815ae1c1, CS:  0x0000000000000008, SS:  0x0000000000000000
    CR2: 0xffffffffffffff97, Error code: 0x0000000000000002, Faulting CPU: 0x1
    Backtrace (CPU 1), Frame : Return Address
    0xffffff80a33db830 : 0xffffff8000220702
    0xffffff80a33db8b0 : 0xffffff80002c268d
    0xffffff80a33dba50 : 0xffffff80002d7a3d
    0xffffff80a33dba70 : 0xffffff7f815ae1c1
    0xffffff80a33dbba0 : 0xffffff7f815b43bf
    0xffffff80a33dbc10 : 0xffffff7f81559df5
    0xffffff80a33dbe40 : 0xffffff7f815aa0ec
    0xffffff80a33dbec0 : 0xffffff7f815224d8
    0xffffff80a33dbef0 : 0xffffff8000639536
    0xffffff80a33dbf30 : 0xffffff80006382b0
    0xffffff80a33dbf70 : 0xffffff8000638154
    0xffffff80a33dbfb0 : 0xffffff8000820057
          Kernel Extensions in backtrace:
             com.apple.driver.AirPort.Brcm4331(500.20.6)[E735671D-DA91-3B74-92D1-339766E0D0C D]@0xffffff7f81512000->0xffffff7f816f1fff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)[95ABB490-3AB5-3D5E-9C21-67089A9AE6A1]@0xffff ff7f8083e000
                dependency: com.apple.iokit.IO80211Family(400.40)[78A58272-2170-3068-9C63-88301C99C406]@0xf fffff7f814da000
                dependency: com.apple.iokit.IONetworkingFamily(2.0)[59A00F6B-3710-3E07-9921-70C45782FF8C]@0 xffffff7f8109a000
    BSD process name corresponding to current thread: kernel_task
    Boot args: maxmem=4096
    Mac OS version:
    11A511
    Kernel version:
    Darwin Kernel Version 11.0.0: Sat Jun 18 12:56:35 PDT 2011; root:xnu-1699.22.73~1/RELEASE_X86_64
    Kernel UUID: 24CC17EB-30B0-3F6C-907F-1A9B2057AF78
    System model name: MacBookPro5,1 (Mac-F42D86A9)
    System uptime in nanoseconds: 26897845426412
    last loaded kext at 860830849246: com.apple.filesystems.smbfs          1.7.0 (addr 0xffffff7f807ee000, size 241664)
    last unloaded kext at 580655317127: com.apple.driver.AppleUSBCDC          4.1.15 (addr 0xffffff7f8078d000, size 12288)
    loaded kexts:
    com.paceap.kext.pacesupport.snowleopard          5.7.2
    com.rim.driver.BlackBerryUSBDriverInt          0.0.64
    com.apple.filesystems.smbfs          1.7.0
    com.apple.driver.AppleHWSensor          1.9.4d0
    com.apple.filesystems.ntfs          3.8
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AGPM          100.12.40
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleHDA          2.1.1f11
    com.apple.driver.AudioAUUC          1.59
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.AppleMCCSControl          1.0.24
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleMikeyDriver          2.1.1f11
    com.apple.driver.AudioIPCDriver          1.2.0
    com.apple.driver.SMCMotionSensor          3.0.1d2
    com.apple.driver.AppleSMCLMU          2.0.1d2
    com.apple.driver.AppleMuxControl          3.0.8
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0b2
    com.apple.GeForce          7.0.2
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleUSBTCButtons          220.8
    com.apple.driver.AppleUSBTCKeyboard          220.8
    com.apple.driver.AppleIRController          309
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          32
    com.apple.iokit.SCSITaskUserClient          3.0.0
    com.apple.iokit.IOAHCIBlockStorage          2.0.0
    com.apple.driver.AppleFWOHCI          4.8.6
    com.apple.driver.AppleUSBHub          4.4.0
    com.apple.driver.AirPort.Brcm4331          500.20.6
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleAHCIPort          2.1.8
    com.apple.nvenet          2.0.17
    com.apple.driver.AppleUSBEHCI          4.4.0
    com.apple.driver.AppleUSBOHCI          4.4.0
    com.apple.driver.AppleEFINVRAM          1.5.0
    com.apple.driver.AppleRTC          1.4
    com.apple.driver.AppleHPET          1.6
    com.apple.driver.AppleACPIButtons          1.4
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.4
    com.apple.driver.AppleAPIC          1.5
    com.apple.driver.AppleIntelCPUPowerManagementClient          166.0.0
    com.apple.nke.applicationfirewall          3.0.30
    com.apple.security.quarantine          1
    com.apple.driver.AppleIntelCPUPowerManagement          166.0.0
    com.apple.kext.triggers          1.0
    com.apple.driver.AppleAVBAudio          1.0.0d11
    com.apple.driver.DspFuncLib          2.1.1f11
    com.apple.iokit.IOFireWireIP          2.2.3
    com.apple.iokit.IOSurface          80.0
    com.apple.iokit.IOBluetoothSerialManager          2.5f17
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.iokit.IOAVBFamily          1.0.0d22
    com.apple.iokit.IOEthernetAVBController          1.0.0d5
    com.apple.iokit.IOAudioFamily          1.8.3fc11
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.driver.AppleGraphicsControl          3.0.8
    com.apple.driver.AppleBacklightExpert          1.0.3
    com.apple.driver.AppleHDAController          2.1.1f11
    com.apple.iokit.IOHDAFamily          2.1.1f11
    com.apple.driver.AppleSMC          3.1.1d2
    com.apple.driver.IOPlatformPluginFamily          4.7.0b2
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.nvidia.nv50hal          7.0.2
    com.apple.NVDAResman          7.0.2
    com.apple.iokit.IONDRVSupport          2.3
    com.apple.iokit.IOGraphicsFamily          2.3
    com.apple.driver.AppleUSBMultitouch          220.23
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.5f17
    com.apple.driver.AppleUSBBluetoothHCIController          2.5f17
    com.apple.iokit.IOBluetoothFamily          2.5f17
    com.apple.iokit.IOUSBHIDDriver          4.4.0
    com.apple.driver.AppleUSBMergeNub          4.4.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.0.0
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.7
    com.apple.driver.XsanFilter          403
    com.apple.iokit.IOAHCISerialATAPI          2.0.0
    com.apple.iokit.IOFireWireFamily          4.4.3
    com.apple.iokit.IOUSBUserClient          4.4.0
    com.apple.iokit.IO80211Family          400.40
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IONetworkingFamily          2.0
    com.apple.driver.NVSMU          2.2.9
    com.apple.driver.AppleEFIRuntime          1.5.0
    com.apple.iokit.IOHIDFamily          1.7.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          165
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          326
    com.apple.driver.AppleKeyStore          28.18
    com.apple.iokit.IOUSBMassStorageClass          3.0.0
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.0.0
    com.apple.iokit.IOStorageFamily          1.7
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.0.0
    com.apple.iokit.IOUSBFamily          4.4.0
    com.apple.driver.AppleACPIPlatform          1.4
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.4

    IF this is what you have ordered:
    "Komputerbay 8GB (2x 4GB) DDR3 SODIMM (204 pin) 1066Mhz PC3 8500 for Apple 8 GB"
    http://www.amazon.com/Komputerbay-DDR3-SODIMM-1066Mhz-Apple/dp/B0031GNYBW
    You should read the reviews by other shoppers first... NOBODY likes the memory Komputerbay sells. Most claim to have lost data, have kernel panics, and crashes, etc...
    I would return the memory for a refund
    It would be best if you buy brand name Apple certified memory... (ie: Crucial, Centon, Buffalo, etc...)

  • Customized kernel for reducing laptop power consumption

    Do there exist any custom kernels that reduce power consumption, possible even geared towards laptop (e.g. 2nd gen sandybridge) users?
    For instance if one uses the stock kernel vs. linux-ck, etc... are there any drastic differences in power consumption, or are most of these custom kernels geared towards performance improvements?

    I know you were looking for a customized kernel that reduces power consumption but have you looked at https://wiki.archlinux.org/index.php/Laptop_Mode_Tools ?

  • Absurd RAM consumption

    Hello, I have a 15" MBPro and this thing had gone kaput a couple of months ago. At that time the logic board was replaced under warranty, which incidentaly expires in April first week.
    These days I am seeing the ring of death a whole lot even for tabs to be opened while surfing. I have 'Memory keeper' downloaded on the machine and it shows the amount of free RAM available which shockingly these days goes down as low as 8Mb(total being 4Gb) and whenever the available RAM level dips, the ring of death makes it's appearance. Wonder what's taking up so much memory since my level of usage has remained more or less the same since I bought the machine 2+ years back.
    I wonder whether the utility itself (memory keeper) is behind this whole shenanigan or could it be the logic board going bad again. I am running OS X 10.9.2 at this time.
    Please share your thoughts, similar experiences, suggest solution to this issue. Thanks in advance for your inputs.

    You will need to open Activity Monitor and provide snapshots loaded here to look at. They should provided clear information on memory consumption and any other relevant memory information. We need to know exactly what you are running when you take the snaps. Preferably, snaps should be made immediately after startup without any software running other than OS X - nothing third-pary, nothing loaded after login. Then a snapshot of the typical situation when you have run out of memory. Add to that a list of everything you have running at that time.
    In addition to the Activity Monitor snapshots you should provide a listing from EtreCheck when everything is running that you normally are using at the time you are low on memory.
    About OS X Memory Management and Usage
    Using Activity Monitor to read System Memory & determine how much RAM is used
    OS X Mavericks- About Activity Monitor
    Understanding top output in the Terminal
    The amount of available RAM for applications is the sum of Free RAM and Inactive RAM. This will change as applications are opened and closed or change from active to inactive status. The Swap figure represents an estimate of the total amount of swap space required for VM if used, but does not necessarily indicate the actual size of the existing swap file. If you are really in need of more RAM that would be indicated by how frequently the system uses VM. If you open the Terminal and run the top command at the prompt you will find information reported on Pageins () and Pageouts (). Pageouts () is the important figure. If the value in the parentheses is 0 (zero) then OS X is not making instantaneous use of VM which means you have adequate physical RAM for the system with the applications you have loaded. If the figure in parentheses is running positive and your hard drive is constantly being used (thrashing) then you need more physical RAM.
    Adding RAM only makes it possible to run more programs concurrently.  It doesn't speed up the computer nor make games run faster.  What it can do is prevent the system from having to use disk-based VM when it runs out of RAM because you are trying to run too many applications concurrently or using applications that are extremely RAM dependent.  It will improve the performance of applications that run mostly in RAM or when loading programs.

  • Xorg RAM consumption

    Hi,
    I've been wondering for a long time what is the average consumption of Xorg for a dual monitor.
    I use a 1024*768 + 1680*1050 setup and Xorg+openbox+xcompmgr takes me in average 110 to 160MB of RAM (without xcompmgr it starts with 85MB +-).
    Isnt this too much? or is a dual head setup normally that heavy?
    Q9450
    2*2GB 1000Mhz RAM
    Saphire HD3650, 512MB DDR3  (I'm using catalyst driver from AUR)
    ASUS P5E
    best regards

    Ya have 4GB of RAM, I wouldn't sweat it myself.

  • RAM consumption on JCOP

    Does anybody know, which mechanisms control the RAM allocation in JCOP cards?
    When I was young and naive, I believed that all memory allocated in applet should be released after the instance of applet is deleted.
    Unfortunately recently I have found the following trouble:
    when I instantiate VSDC applet on my JCOP card, personalize it and then delete the instance, I encounter that the amount of memory available for transient objects has decreased.
    Then, when I perform the same sequence once more, I see no memory leaks.
    On my suspicion, this memory consumption is related to RSA key initialization (it happens just after the loading of RSA key in applet).
    Saying more, I have strong suspicion that the memory consumption happens every time when any applet stores some RSA key (but just once for the key of certain length).
    In other words, I suspect that the JCRE 'eats' certain portion of RAM memory for each case of storing RSA key of certain length. It leads to very confusing effect when encounter the leak of resources after instantiating and further deletion of applet.
    Could anybody approve or disprove this suspicion?
    Have anybody ever encountered such a problem?
    Thanks in advance.

    But the package that contains VSDC applet should be located in ROM.
    Thus, how the key instance could be static?
    My applet is located in EEPROM (both package and instance). When I use RSA key instance in the first time, I lose RAM as well.
    As I mentioned before, this leak is permanent, and deletion of both instance and package does not release this memory (however, any subsequent loading and using of the same applet does not lead to further memory leaks).
    Any ideas or explanations?
    (Excuse me for my English. I would really appreciate your help).

  • Kernel panic. Replaced  RAM and Reinstalled the os x 10.6.8

    lately I have replace the ram and renstalled os x 10.6.8. Did the hardware test which showed every thing is fine but still the kernel panic is happening. If any one can help plz help.
    Interval Since Last Panic Report:  113189 sec
    Panics Since Last Report:          28
    Anonymous UUID:                    10993E1A-465F-4321-B255-94ACBAACE334
    Wed Nov 21 16:41:49 2012
    panic(cpu 0 caller 0x2aaeab): Kernel trap with 64-bit state thread:0xe951000, trapno:0xe, err:0x0, registers:
    CR0: 0x80010033, CR2: 0x0081e070, CR3: 0x00100000, CR4: 0x00000668
    RAX: 0x000000006ab5b000, RBX: 0x0000000000000008, RCX: 0x000000006ab5b000, RDX: 0x00000000002a29c0
    RSP: 0xffffff8000819f24, RBP: 0x0000000083b63fc8, RSI: 0x00000000aba038f7, RDI: 0x0000000000000250
    R8:  0xffffff800e95bc10, R9:  0x0000000000000000, R10: 0x0000000000000003, R11: 0x00000000bfffe87c
    R12: 0xffffff800e951278, R13: 0x0000000000008000, R14: 0x00000001058a8200, R15: 0x0000000003000103
    RFL: 0x0000000000010046, RIP: 0xffffff80002c0e66, CR2: 0x000000000081e070
    Backtrace (CPU 0), Frame : Return Address (4 potential args on stack)
    0x819c08 : 0x21b837 (0x5dd7fc 0x819c3c 0x223ce1 0x0)
    0x819c58 : 0x2aaeab (0x59de64 0x59e2ed 0xe951000 0xe)
    0x819d48 : 0x2ab99d (0x0 0x0 0x0 0x0)
    0x819e28 : 0x2a1a78 (0x819e44 0x0 0x0 0x83b63fc8)
    0x819e3c : 0x0 (0xf 0x250 0x0 0xaba038f7)
    0x83b63fc8 : 0x2a20f8 (0xe2599a0 0x1 0x10 0xdef2124)
    BSD process name corresponding to current thread: Call of Duty 4 M
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 2545500156671
    unloaded kexts:
    com.apple.driver.AppleUSBUHCI          4.2.0 (addr 0x1432000, size 0x65536) - last unloaded 101108527828
    loaded kexts:
    com.nvidia.CUDA          1.1.0 - last loaded 29199525316
    com.Cycling74.driver.Soundflower          1.6.6
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.driver.AGPM          100.12.31
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleMikeyHIDDriver          1.2.0
    com.apple.driver.AppleHDA          2.0.5f14
    com.apple.driver.AppleMikeyDriver          2.0.5f14
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.driver.AudioAUUC          1.57
    com.apple.driver.SMCMotionSensor          3.0.1d2
    com.apple.driver.AppleIntelHDGraphics          6.4.0
    com.apple.driver.AppleIntelHDGraphicsFB          6.4.0
    com.apple.kext.AppleSMCLMU          1.5.2d10
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AppleGraphicsControl          2.10.6
    com.apple.GeForce          6.4.0
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleUSBTCButtons          201.6
    com.apple.driver.AppleUSBTCKeyboard          201.6
    com.apple.driver.AppleIRController          303.8
    com.apple.driver.AppleUSBCardReader          2.6.1
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleSmartBatteryManager          160.0.0
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.driver.AirPortBrcm43224          428.42.4
    com.apple.iokit.AppleBCM5701Ethernet          3.0.5b8
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleHDAController          2.0.5f14
    com.apple.iokit.IOHDAFamily          2.0.5f14
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleBacklightExpert          1.0.1
    com.apple.nvidia.nv50hal          6.4.0
    com.apple.NVDAResman          6.4.0
    com.apple.iokit.IONDRVSupport          2.2.1
    com.apple.iokit.IOGraphicsFamily          2.2.1
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.driver.AppleUSBMultitouch          207.7
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.8
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.driver.AppleUSBMergeNub          4.2.4
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.8
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOAHCISerialATAPI          1.2.6
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.iokit.IOUSBFamily          4.2.4
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          6
    com.apple.driver.DiskImages          289.1
    com.apple.iokit.IOStorageFamily          1.6.3
    com.apple.driver.AppleACPIPlatform          1.3.6
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0
    Model: MacBookPro6,2, BootROM MBP61.0057.B0C, 2 processors, Intel Core i5, 2.53 GHz, 8 GB, SMC 1.58f15
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 256 MB
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545050B9SA02, 465.76 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0xfa130000 / 5
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0236, 0xfa120000 / 4
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 3
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8218, 0xfa113000 / 7
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd120000 / 4
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0xfd110000 / 3

    I have removed both kext, still kernel panic is happening. This is the latest kernel panic. Thanks in advance.
    Interval Since Last Panic Report:  119764 sec
    Panics Since Last Report:          36
    Anonymous UUID:                    10993E1A-465F-4321-B255-94ACBAACE334
    Thu Nov 22 01:13:20 2012
    panic(cpu 1 caller 0x2aaeab): Kernel trap with 64-bit state thread:0x6bc8b7c, trapno:0xe, err:0x2, registers:
    CR0: 0x8001003b, CR2: 0x1df30000, CR3: 0x1df30000, CR4: 0x00000660
    RAX: 0x0000000006bc8b7c, RBX: 0x000000007464f000, RCX: 0x000000001df30000, RDX: 0x0000000000000000
    RSP: 0x0000000006b983c4, RBP: 0x000000007c62bfa8, RSI: 0x00000000b55cf426, RDI: 0x0000000000000010
    R8:  0x0000000000001703, R9:  0x0000000000000000, R10: 0x0000000000000800, R11: 0x0000000000000206
    R12: 0x0000000000001703, R13: 0x0000000000000800, R14: 0x00007fff5fbff5e0, R15: 0x0000000007000006
    RFL: 0x0000000000010087, RIP: 0xffffff80002c0aa4, CR2: 0x000000001df30000
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x6b980a8 : 0x21b837 (0x5dd7fc 0x6b980dc 0x223ce1 0x0)
    0x6b980f8 : 0x2aaeab (0x59de64 0x59e2ed 0x6bc8b7c 0xe)
    0x6b981e8 : 0x2ab99d (0x0 0x0 0x206 0x0)
    0x6b9
    Model: MacBookPro6,2, BootROM MBP61.0057.B0C, 2 processors, Intel Core i5, 2.53 GHz, 8 GB, SMC 1.58f15
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 256 MB
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 0 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545050B9SA02, 465.76 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0236, 0xfa120000 / 5
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8218, 0xfa113000 / 8
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0xfa130000 / 3
    USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd120000 / 4
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0xfd110000 / 3

  • Recurring Kernel Panic at startup- Ram ok- works only from DVD

    Hi everyone,
    Please help me figure this one out.
    After installing the latest ilok driver ( it might be a coincidence ) my Macpro 2.1 will go straight to Kernel Panic at start up.
    - It will start from the DVD drive, with the snow leopard installer or Drive genius. The internal drives appear on Disk utility and don;t need repair,
    - It will not start from the Backup HD as external
    - it will not start from the backup HD as internal
    - it will not start in safe mode
    I have unplugged everything, swapped or taken of the RAM, no PCI card inside and it is impossible to start from a drive.
    Any idea ???
    Thank you in advance
    S

    - took an empty drive and installed Snow leopard so I could access the naughty drives.
    - The mac works when booting on the new drive, so I guess my hardware is fine.
    - took the pace ilok stuff out of the old boot drive just to realize that it is not showing up as a bootable drive in startup disk, both when external or internal.
    - took the Pace ilok stuff out of the Backup of the old boot drive. Got Kernel panic when booting from it....  My system backup is about 3 weeks old. I use superduper.
    Looks like it is time for me to make a fresh bootable drive.  I just hope this is not going to happen again once I have spent hours to load it with all the stuff I need, so I can work.
    I very much appreciate your help mister x.

  • I can't start up my 15in macbook pro due to a reoccurring kernel panic from insufficient RAM

    About a week ago my mac froze so I shut it off to restart it, and when it began start up the kernel panic showed up, since then I haven't been able to start it without get stuck on the kernel panic. I'm pretty sure its because of insufficient RAM space, which I've been meaning to clear for a while because I knew it was practically full but I kept forgetting. But now I don't know what to do because I can't get passed the kernel panic (I tried a safe boot as well). Also, I'm away from home for the next month or so, and the country I'm currently in does not have any apple stores so I can't take it to a genius bar. Is there anything I can do?

    I think you may be confusing RAM with disk space.
    One more time boot in Safe Mode. Keep in mind a Safe Mode boot takes much longer then a normal boot so be patient.
    Once you see the Desktop, right or control click the MacintoshHD icon on the Desktop then click Get Info.
    In the Get Info window you will see Capacity and Available. Make sure there's a minimum of 15% free disk space.
    If there's not enough free disk space, follow the instructions here > Freeing Up Hard Disk Space - Mac GuidesFreeing Up Hard Disk Space - Mac Guides

  • Exception state ? Kernel Panic ? Bad RAM ?

    Apologies for a long post including some raw panic.log info, but i've been experiencing crashes for well over a year now despite trying many fixes/repairs detailed in here in discussions. I'm flummoxed.
    Hardware test checked out fine again today, I've run disk repair and Alsoft's DiskWarrior again and again, even Archive & Installed a few times over the past 2 years and yet the crashes keep coming, sometimes 10-20 a day. I use Photoshop alot, and sometimes it seems maybe the graphics card doesn't like the work I'm asking of it
    graphic card spec (factory installed): ATI Radeon 9000 Pro:
    Chipset Model: ATY,RV250
    Type: Display
    Bus: AGP
    Slot: SLOT-1
    VRAM (Total): 64 MB
    Vendor: ATI (0x1002)
    Device ID: 0x4966
    Revision ID: 0x0001
    ROM Revision: 113-99702-127
    Displays:
    Sometimes I think it's bad RAM. I discovered today that the original Apple factoryinstalled memory sticks (512 Mb) appear to have different specs.
    Their specs found via Hardware Test (unable to copy and paste so I've tried to best suss exactly what is an O and what is a zero)
    Memory 1
    DIMM0/J21 512 MB
    PC2600-25330 DDR SDRAM
    CL2.5:6,0, CL2:7.5 (ns)
    CE-0
    M3 68 L6423DTM-CB3
    Rev. 4D44, 02 42, 01
    Memory 2
    DIMM1/J22 512 MB
    Unknown-25330 DDR SDRAM
    CL2.5:6,0, CL2:7.5 (ns)
    FF-0
    51016732117
    Rev. FFFF, 02 26 FF
    I've pasted some recent panic log crash info below. It seems phrases like "Exception state" keep recurring. I'm not adept at code, so most of it is difficult to understand.
    panic.log:
    Description: Panic (system crashes) log
    Size: 747.61 KB
    Last Modified: 13/02/2006 17:14
    Location: /Library/Logs/panic.log
    Recent Contents: ...
    Wed Feb 8 19:27:23 2006
    panic(cpu 1 caller 0x00200010): nfsm_build mbuf_setnext error 28643584
    Latest stack backtrace for cpu 1:
    Backtrace:
    0x00095718 0x00095C30 0x0002683C 0x00200010 0x000A9894
    Proceeding back via exception chain:
    Exception state (sv=0x2CE3C780)
    PC=0x00000000; MSR=0x0000D030; DAR=0x00000000; DSISR=0x00000000; LR=0x00000000; R1=0x00000000; XCP=0x00000000 (Unknown)
    Kernel version:
    Darwin Kernel Version 8.4.0: Tue Jan 3 18:22:10 PST 2006; root:xnu-792.6.56.obj~1/RELEASE_PPC
    Thu Feb 9 13:00:00 2006
    Unresolved kernel trap(cpu 0): 0x400 - Inst access DAR=0x0000000021585040 PC=0x0000000000000000
    Latest crash info for cpu 0:
    Exception state (sv=0x3C641500)
    PC=0x00000000; MSR=0x40009030; DAR=0x21585040; DSISR=0x40000000; LR=0x002CEF28; R1=0x1748BE40; XCP=0x00000010 (0x400 - Inst access)
    Backtrace:
    0x002CEF28 0x000A9894
    Proceeding back via exception chain:
    Exception state (sv=0x3C641500)
    previously dumped as "Latest" state. skipping...
    Exception state (sv=0x27565A00)
    PC=0x00000000; MSR=0x0000D030; DAR=0x00000000; DSISR=0x00000000; LR=0x00000000; R1=0x00000000; XCP=0x00000000 (Unknown)
    Kernel version:
    Darwin Kernel Version 8.4.0: Tue Jan 3 18:22:10 PST 2006; root:xnu-792.6.56.obj~1/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0004): 0x400 - Inst access
    Latest stack backtrace for cpu 0:
    Backtrace:
    0x00095718 0x00095C30 0x0002683C 0x000A8384 0x000ABD00
    Proceeding back via exception chain:
    Exception state (sv=0x3C641500)
    PC=0x00000000; MSR=0x40009030; DAR=0x21585040; DSISR=0x40000000; LR=0x002CEF28; R1=0x1748BE40; XCP=0x00000010 (0x400 - Inst access)
    Backtrace:
    0x002CEF28 0x000A9894
    Exception state (sv=0x27565A00)
    PC=0x00000000; MSR=0x0000D030; DAR=0x00000000; DSISR=0x00000000; LR=0x00000000; R1=0x00000000; XCP=0x00000000 (Unknown)
    Kernel version:
    Darwin Kernel Version 8.4.0: Tue Jan 3 18:22:10 PST 2006; root:xnu-792.6.56.obj~1/RELEASE_PPC
    Thu Feb 9 13:58:22 2006
    Unresolved kernel trap(cpu 0): 0x400 - Inst access DAR=0x0000000021585040 PC=0x0000000000000000
    Latest crash info for cpu 0:
    Exception state (sv=0x3C641500)
    PC=0x00000000; MSR=0x40009030; DAR=0x21585040; DSISR=0x40000000; LR=0x002CEF28; R1=0x1748BE40; XCP=0x00000010 (0x400 - Inst access)
    Backtrace:
    0x002CEF28 0x000A9894
    Proceeding back via exception chain:
    Exception state (sv=0x3C641500)
    previously dumped as "Latest" state. skipping...
    Exception state (sv=0x27565A00)
    PC=0x00000000; MSR=0x0000D030; DAR=0x00000000; DSISR=0x00000000; LR=0x00000000; R1=0x00000000; XCP=0x00000000 (Unknown)
    Kernel version:
    Darwin Kernel Version 8.4.0: Tue Jan 3 18:22:10 PST 2006; root:xnu-792.6.56.obj~1/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0004): 0x400 - Inst access
    Latest stack backtrace for cpu 0:
    Backtrace:
    0x00095718 0x00095C30 0x0002683C 0x000A8384 0x000ABD00
    Proceeding back via exception chain:
    Exception state (sv=0x3C641500)
    PC=0x00000000; MSR=0x40009030; DAR=0x21585040; DSISR=0x40000000; LR=0x002CEF28; R1=0x1748BE40; XCP=0x00000010 (0x400 - Inst access)
    Backtrace:
    0x002CEF28 0x000A9894
    Exception state (sv=0x27565A00)
    PC=0x00000000; MSR=0x0000D030; DAR=0x00000000; DSISR=0x00000000; LR=0x00000000; R1=0x00000000; XCP=0x00000000 (Unknown)
    Kernel version:
    Darwin Kernel Version 8.4.0: Tue Jan 3 18:22:10 PST 2006; root:xnu-792.6.56.obj~1/RELEASE_PPC
    Mon Feb 13 17:14:28 2006
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x0000000000000010 PC=0x000000000006630C
    Latest crash info for cpu 0:
    Exception state (sv=0x2D85D000)
    PC=0x0006630C; MSR=0x00009030; DAR=0x00000010; DSISR=0x40000000; LR=0x00066298; R1=0x174FBC90; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x174FBCB0 0x00070368 0x00062444 0x000A87DC 0x000ABD00
    Proceeding back via exception chain:
    Exception state (sv=0x2D85D000)
    previously dumped as "Latest" state. skipping...
    Exception state (sv=0x2CEAB500)
    PC=0x08904714; MSR=0x0200F030; DAR=0x22419000; DSISR=0x42000000; LR=0x089046DC; R1=0xBFFFBAF0; XCP=0x0000000C (0x300 - Data access)
    Kernel version:
    Darwin Kernel Version 8.4.0: Tue Jan 3 18:22:10 PST 2006; root:xnu-792.6.56.obj~1/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
    Backtrace:
    0x00095718 0x00095C30 0x0002683C 0x000A8384 0x000ABD00
    Proceeding back via exception chain:
    Exception state (sv=0x2D85D000)
    PC=0x0006630C; MSR=0x00009030; DAR=0x00000010; DSISR=0x40000000; LR=0x00066298; R1=0x174FBC90; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x174FBCB0 0x00070368 0x00062444 0x000A87DC 0x000ABD00
    Exception state (sv=0x2CEAB500)
    PC=0x08904714; MSR=0x0200F030; DAR=0x22419000; DSISR=0x42000000; LR=0x089046DC; R1=0xBFFFBAF0; XCP=0x0000000C (0x300 - Data access)
    Kernel version:
    Darwin Kernel Version 8.4.0: Tue Jan 3 18:22:10 PST 2006; root:xnu-792.6.56.obj~1/RELEASE_PPC
    panic(cpu 1 caller 0x00200010): nfsm_build mbuf_setnext error 28643584
    Latest stack backtrace for cpu 1:
    Backtrace:
    0x00095718 0x00095C30 0x0002683C 0x00200010 0x000A9894
    Proceeding back via exception chain:
    Exception state (sv=0x2CE3C780)
    PC=0x00000000; MSR=0x0000D030; DAR=0x00000000; DSISR=0x00000000; LR=0x00000000; R1=0x00000000; XCP=0x00000000 (Unknown)
    Kernel version:
    Darwin Kernel Version 8.4.0: Tue Jan 3 18:22:10 PST 2006; root:xnu-792.6.56.obj~1/RELEASE_PPC
    Model: PowerMac3,6, BootROM 4.4.8f2, 2 processors, PowerPC G4 (3.2), 1.25 GHz, 1 GB
    Graphics: ATI Radeon 9000 Pro, ATY,RV250, AGP, 64 MB
    Memory Module: DIMM0/J21, 512 MB, DDR SDRAM, PC2600U-25330
    Memory Module: DIMM1/J22, 512 MB, DDR SDRAM, PC2600U-25330
    Modem: Dash2, UCJ, V.92, 1.0F, APPLE VERSION 2.6.6
    Network Service: Built-in Ethernet, Ethernet, en0
    Parallel ATA Device: PIONEER DVD-RW DVR-104,
    Parallel ATA Device: IBM-IC35L120AVVA07-0, 115.04 GB
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Apple Optical USB Mouse, Fujitsu Component, Up to 1.5 Mb/sec, 100 mA
    USB Device: CanoScan, Canon, Up to 12 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    panic(cpu 1 caller 0x000A5048): simple lock (0x024F76A8) deadlock detection, pc=0x0002CFF8
    Latest stack backtrace for cpu 1:
    Backtrace:
    0x00095718 0x00095C30 0x0002683C 0x000A5048 0x0002CFF8 0x000A4818 0x0001EE0C 0x0001BAD0
    0x00029564 0x00048D9C 0x0001D960 0x0001FF9C 0x0002426C 0x0002E6FC 0x000AC02C 0x6C743B2F
    Proceeding back via exception chain:
    Exception state (sv=0x2D7FD780)
    PC=0x90038E78; MSR=0x0000F030; DAR=0x00CC6B0C; DSISR=0x40000000; LR=0x90784064; R1=0xBFFFF070; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.4.0: Tue Jan 3 18:22:10 PST 2006; root:xnu-792.6.56.obj~1/RELEASE_PPCModel: PowerMac3,6, BootROM 4.4.8f2, 2 processors, PowerPC G4 (3.2), 1.25 GHz, 1 GB
    Graphics: ATI Radeon 9000 Pro, ATY,RV250, AGP, 64 MB
    Memory Module: DIMM0/J21, 512 MB, DDR SDRAM, PC2600U-25330
    Memory Module: DIMM1/J22, 512 MB, DDR SDRAM, PC2600U-25330
    Modem: Dash2, UCJ, V.92, 1.0F, APPLE VERSION 2.6.6
    Network Service: Built-in Ethernet, Ethernet, en0
    Parallel ATA Device: PIONEER DVD-RW DVR-104,
    Parallel ATA Device: IBM-IC35L120AVVA07-0, 115.04 GB
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Apple Optical USB Mouse, Fujitsu Component, Up to 1.5 Mb/sec, 100 mA
    USB Device: CanoScan, Canon, Up to 12 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    Unresolved kernel trap(cpu 1): 0x300 - Data access DAR=0x0000000000000000 PC=0x000000000001A474
    Latest crash info for cpu 1:
    Exception state (sv=0x2D96E280)
    PC=0x0001A474; MSR=0x00009030; DAR=0x00000000; DSISR=0x42000000; LR=0x0001A540; R1=0x173BBDC0; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x00000000 0x000292E4 0x000233AC 0x000AC02C 0x00000000
    Proceeding back via exception chain:
    Exception state (sv=0x2D96E280)
    previously dumped as "Latest" state. skipping...
    Exception state (sv=0x2D96A780)
    PC=0x9000B208; MSR=0x0200F030; DAR=0x05B54000; DSISR=0x42000000; LR=0x9000B15C; R1=0xF089FA10; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.4.0: Tue Jan 3 18:22:10 PST 2006; root:xnu-792.6.56.obj~1/RELEASE_PPC
    panic(cpu 1 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 1:
    Backtrace:
    0x00095718 0x00095C30 0x0002683C 0x000A8384 0x000ABD00
    Proceeding back via exception chain:
    Exception state (sv=0x2D96E280)
    PC=0x0001A474; MSR=0x00009030; DAR=0x00000000; DSISR=0x42000000; LR=0x0001A540; R1=0x173BBDC0; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x00000000 0x000292E4 0x000233AC 0x000AC02C 0x00000000
    Exception state (sv=0x2D96A780)
    PC=0x9000B208; MSR=0x0200F030; DAR=0x05B54000; DSISR=0x42000000; LR=0x9000B15C; R1=0xF089FA10; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.4.0: Tue Jan 3 18:22:10 PST 2006; root:xnu-792.6.56.obj~1/RELEASE_PPC
    Model: PowerMac3,6, BootROM 4.4.8f2, 2 processors, PowerPC G4 (3.2), 1.25 GHz, 1 GB
    Graphics: ATI Radeon 9000 Pro, ATY,RV250, AGP, 64 MB
    Memory Module: DIMM0/J21, 512 MB, DDR SDRAM, PC2600U-25330
    Memory Module: DIMM1/J22, 512 MB, DDR SDRAM, PC2600U-25330
    Modem: Dash2, UCJ, V.92, 1.0F, APPLE VERSION 2.6.6
    Network Service: Built-in Ethernet, Ethernet, en0
    Parallel ATA Device: PIONEER DVD-RW DVR-104,
    Parallel ATA Device: IBM-IC35L120AVVA07-0, 115.04 GB
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Apple Optical USB Mouse, Fujitsu Component, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    Unresolved kernel trap(cpu 1): 0x300 - Data access DAR=0x0000000003FFEB10 PC=0x000000000006630C
    Latest crash info for cpu 1:
    Exception state (sv=0x3B61D500)
    PC=0x0006630C; MSR=0x00009030; DAR=0x03FFEB10; DSISR=0x40000000; LR=0x00066298; R1=0x1754B8D0; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x00000000 0x0007D2B8 0x00087BF8 0x000DE288 0x0022878C 0x000FC024
    0x000F556C 0x0027D470 0x0024D7A0 0x0024CAA4 0x000A9894
    Proceeding back via exception chain:
    Exception state (sv=0x3B61D500)
    previously dumped as "Latest" state. skipping...
    Exception state (sv=0x2CEA1280)
    PC=0x00000000; MSR=0x0000D030; DAR=0x00000000; DSISR=0x00000000; LR=0x00000000; R1=0x00000000; XCP=0x00000000 (Unknown)
    Kernel version:
    Darwin Kernel Version 8.4.0: Tue Jan 3 18:22:10 PST 2006; root:xnu-792.6.56.obj~1/RELEASE_PPC
    panic(cpu 1 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 1:
    Backtrace:
    0x00095718 0x00095C30 0x0002683C 0x000A8384 0x000ABD00
    Proceeding back via exception chain:
    Exception state (sv=0x3B61D500)
    PC=0x0006630C; MSR=0x00009030; DAR=0x03FFEB10; DSISR=0x40000000; LR=0x00066298; R1=0x1754B8D0; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x00000000 0x0007D2B8 0x00087BF8 0x000DE288 0x0022878C 0x000FC024
    0x000F556C 0x0027D470 0x0024D7A0 0x0024CAA4 0x000A9894
    Exception state (sv=0x2CEA1280)
    PC=0x00000000; MSR=0x0000D030; DAR=0x00000000; DSISR=0x00000000; LR=0x00000000; R1=0x00000000; XCP=0x00000000 (Unknown)
    Kernel version:
    Darwin Kernel Version 8.4.0: Tue Jan 3 18:22:10 PST 2006; root:xnu-792.6.56.obj~1/RELEASE_PPC
    Model: PowerMac3,6, BootROM 4.4.8f2, 2 processors, PowerPC G4 (3.2), 1.25 GHz, 1 GB
    Graphics: ATI Radeon 9000 Pro, ATY,RV250, AGP, 64 MB
    Memory Module: DIMM0/J21, 512 MB, DDR SDRAM, PC2600U-25330
    Memory Module: DIMM1/J22, 512 MB, DDR SDRAM, PC2600U-25330
    Modem: Dash2, UCJ, V.92, 1.0F, APPLE VERSION 2.6.6
    Network Service: Built-in Ethernet, Ethernet, en0
    Parallel ATA Device: PIONEER DVD-RW DVR-104, 147.84 MB
    Parallel ATA Device: IBM-IC35L120AVVA07-0, 115.04 GB
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Apple Optical USB Mouse, Fujitsu Component, Up to 1.5 Mb/sec, 100 mA
    USB Device: deskjet 5550, hp, Up to 12 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    Unresolved kernel trap(cpu 1): 0x300 - Data access DAR=0x0000000000000017 PC=0x0000000000071F60
    Latest crash info for cpu 1:
    Exception state (sv=0x3C980280)
    PC=0x00071F60; MSR=0x00009030; DAR=0x00000017; DSISR=0x40000000; LR=0x00071D50; R1=0x173DBBF0; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x00000000 0x00071D50 0x0007183C 0x0008772C 0x0005745C 0x000291C0
    0x000233AC 0x000AC02C 0x756E646C
    Proceeding back via exception chain:
    Exception state (sv=0x3C980280)
    previously dumped as "Latest" state. skipping...
    Exception state (sv=0x3CA58280)
    PC=0x9000B208; MSR=0x0200F030; DAR=0x0009F000; DSISR=0x40000000; LR=0x9000B15C; R1=0xBFFFF670; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.4.0: Tue Jan 3 18:22:10 PST 2006; root:xnu-792.6.56.obj~1/RELEASE_PPC
    panic(cpu 1 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 1:
    Backtrace:
    0x00095718 0x00095C30 0x0002683C 0x000A8384 0x000ABD00
    Proceeding back via exception chain:
    Exception state (sv=0x3C980280)
    PC=0x00071F60; MSR=0x00009030; DAR=0x00000017; DSISR=0x40000000; LR=0x00071D50; R1=0x173DBBF0; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x00000000 0x00071D50 0x0007183C 0x0008772C 0x0005745C 0x000291C0
    0x000233AC 0x000AC02C 0x756E646C
    Exception state (sv=0x3CA58280)
    PC=0x9000B208; MSR=0x0200F030; DAR=0x0009F000; DSISR=0x40000000; LR=0x9000B15C; R1=0xBFFFF670; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.4.0: Tue Jan 3 18:22:10 PST 2006; root:xnu-792.6.56.obj~1/RELEASE_PPCModel: PowerMac3,6, BootROM 4.4.8f2, 2 processors, PowerPC G4 (3.2), 1.25 GHz, 1 GB
    Graphics: ATI Radeon 9000 Pro, ATY,RV250, AGP, 64 MB
    Memory Module: DIMM0/J21, 512 MB, DDR SDRAM, PC2600U-25330
    Memory Module: DIMM1/J22, 512 MB, DDR SDRAM, PC2600U-25330
    Modem: Dash2, UCJ, V.92, 1.0F, APPLE VERSION 2.6.6
    Network Service: Built-in Ethernet, Ethernet, en0
    Parallel ATA Device: PIONEER DVD-RW DVR-104, 7.58 GB
    Parallel ATA Device: IBM-IC35L120AVVA07-0, 115.04 GB
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Apple Optical USB Mouse, Fujitsu Component, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    Unresolved kernel trap(cpu 1): 0x300 - Data access DAR=0x0000000000000017 PC=0x0000000000071F60
    Latest crash info for cpu 1:
    Exception state (sv=0x3C980280)
    PC=0x00071F60; MSR=0x00009030; DAR=0x00000017; DSISR=0x40000000; LR=0x00071D50; R1=0x173DBBF0; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x00000000 0x00071D50 0x0007183C 0x0008772C 0x0005745C 0x000291C0
    0x000233AC 0x000AC02C 0x756E646C
    Proceeding back via exception chain:
    Exception state (sv=0x3C980280)
    previously dumped as "Latest" state. skipping...
    Exception state (sv=0x3CA58280)
    PC=0x9000B208; MSR=0x0200F030; DAR=0x0009F000; DSISR=0x40000000; LR=0x9000B15C; R1=0xBFFFF670; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.4.0: Tue Jan 3 18:22:10 PST 2006; root:xnu-792.6.56.obj~1/RELEASE_PPC
    panic(cpu 1 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 1:
    Backtrace:
    0x00095718 0x00095C30 0x0002683C 0x000A8384 0x000ABD00
    Proceeding back via exception chain:
    Exception state (sv=0x3C980280)
    PC=0x00071F60; MSR=0x00009030; DAR=0x00000017; DSISR=0x40000000; LR=0x00071D50; R1=0x173DBBF0; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x00000000 0x00071D50 0x0007183C 0x0008772C 0x0005745C 0x000291C0
    0x000233AC 0x000AC02C 0x756E646C
    Exception state (sv=0x3CA58280)
    PC=0x9000B208; MSR=0x0200F030; DAR=0x0009F000; DSISR=0x40000000; LR=0x9000B15C; R1=0xBFFFF670; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.4.0: Tue Jan 3 18:22:10 PST 2006; root:xnu-792.6.56.obj~1/RELEASE_PPCModel: PowerMac3,6, BootROM 4.4.8f2, 2 processors, PowerPC G4 (3.2), 1.25 GHz, 1 GB
    Graphics: ATI Radeon 9000 Pro, ATY,RV250, AGP, 64 MB
    Memory Module: DIMM0/J21, 512 MB, DDR SDRAM, PC2600U-25330
    Memory Module: DIMM1/J22, 512 MB, DDR SDRAM, PC2600U-25330
    Modem: Dash2, UCJ, V.92, 1.0F, APPLE VERSION 2.6.6
    Network Service: Built-in Ethernet, Ethernet, en0
    Parallel ATA Device: PIONEER DVD-RW DVR-104, 7.58 GB
    Parallel ATA Device: IBM-IC35L120AVVA07-0, 115.04 GB
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Apple Optical USB Mouse, Fujitsu Component, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    panic.log:
    Description: Panic (system crashes) log
    Size: 684.09 KB
    Last Modified: 23/01/2006 11:46
    Location: /Library/Logs/panic.log
    Recent Contents: ...
    Latest crash info for cpu 1:
    Exception state (sv=0x2DAD7780)
    PC=0x00066260; MSR=0x00009030; DAR=0x030A9F88; DSISR=0x40000000; LR=0x000661EC; R1=0x174CBAF0; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x174CBD70 0x00066B54 0x00086F78 0x000870E4 0x000584FC 0x000291C0
    0x000233AC 0x000ABE2C 0x32373233
    Proceeding back via exception chain:
    Exception state (sv=0x2DAD7780)
    previously dumped as "Latest" state. skipping...
    Exception state (sv=0x2D5B2780)
    PC=0x9000A738; MSR=0x0000F030; DAR=0xF0203EE8; DSISR=0x42000000; LR=0x9000A67C; R1=0xBFFFE2A0; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT 2005; root:xnu-792.2.4.obj~3/RELEASE_PPC
    panic(cpu 1 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 1:
    Backtrace:
    0x00095544 0x00095A5C 0x0002683C 0x000A819C 0x000ABB00
    Proceeding back via exception chain:
    Exception state (sv=0x2DAD7780)
    PC=0x00066260; MSR=0x00009030; DAR=0x030A9F88; DSISR=0x40000000; LR=0x000661EC; R1=0x174CBAF0; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x174CBD70 0x00066B54 0x00086F78 0x000870E4 0x000584FC 0x000291C0
    0x000233AC 0x000ABE2C 0x32373233
    Exception state (sv=0x2D5B2780)
    PC=0x9000A738; MSR=0x0000F030; DAR=0xF0203EE8; DSISR=0x42000000; LR=0x9000A67C; R1=0xBFFFE2A0; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.2.0: Fri Jun 24 17:46:54 PDT 2005; root:xnu-792.2.4.obj~3/RELEASE_PPC
    Mon Jan 23 11:27:40 2006
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x0000000005F8C790 PC=0x00000000002206EC
    Latest crash info for cpu 0:
    Exception state (sv=0x2DEEC500)
    PC=0x002206EC; MSR=0x00009030; DAR=0x05F8C790; DSISR=0x40000000; LR=0x002206D0; R1=0x1745B630; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x0239600C 0x00221558 0x00227270 0x0022750C 0x000FB540 0x000E24C8
    0x000E205C 0x000EED28 0x000EEF8C 0x000EF02C 0x002AA304 0x000ABEB0 0x00000000
    Proceeding back via exception chain:
    Exception state (sv=0x2DEEC500)
    previously dumped as "Latest" state. skipping...
    Exception state (sv=0x2D619280)
    PC=0x9000612C; MSR=0x0000D030; DAR=0x2E1A2FCA; DSISR=0x40000000; LR=0x9003D0D0; R1=0xF0284BF0; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.4.0: Tue Jan 3 18:22:10 PST 2006; root:xnu-792.6.56.obj~1/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
    Backtrace:
    0x00095718 0x00095C30 0x0002683C 0x000A8384 0x000ABD00
    Proceeding back via exception chain:
    Exception state (sv=0x2DEEC500)
    PC=0x002206EC; MSR=0x00009030; DAR=0x05F8C790; DSISR=0x40000000; LR=0x002206D0; R1=0x1745B630; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x0239600C 0x00221558 0x00227270 0x0022750C 0x000FB540 0x000E24C8
    0x000E205C 0x000EED28 0x000EEF8C 0x000EF02C 0x002AA304 0x000ABEB0 0x00000000
    Exception state (sv=0x2D619280)
    PC=0x9000612C; MSR=0x0000D030; DAR=0x2E1A2FCA; DSISR=0x40000000; LR=0x9003D0D0; R1=0xF0284BF0; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.4.0: Tue Jan 3 18:22:10 PST 2006; root:xnu-792.6.56.obj~1/RELEASE_PPC
    Mon Jan 23 11:46:21 2006
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x0000000005F8C790 PC=0x00000000002206EC
    Latest crash info for cpu 0:
    Exception state (sv=0x2DEEC500)
    PC=0x002206EC; MSR=0x00009030; DAR=0x05F8C790; DSISR=0x40000000; LR=0x002206D0; R1=0x1745B630; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x0239600C 0x00221558 0x00227270 0x0022750C 0x000FB540 0x000E24C8
    0x000E205C 0x000EED28 0x000EEF8C 0x000EF02C 0x002AA304 0x000ABEB0 0x00000000
    Proceeding back via exception chain:
    Exception state (sv=0x2DEEC500)
    previously dumped as "Latest" state. skipping...
    Exception state (sv=0x2D619280)
    PC=0x9000612C; MSR=0x0000D030; DAR=0x2E1A2FCA; DSISR=0x40000000; LR=0x9003D0D0; R1=0xF0284BF0; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.4.0: Tue Jan 3 18:22:10 PST 2006; root:xnu-792.6.56.obj~1/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
    Backtrace:
    0x00095718 0x00095C30 0x0002683C 0x000A8384 0x000ABD00
    Proceeding back via exception chain:
    Exception state (sv=0x2DEEC500)
    PC=0x002206EC; MSR=0x00009030; DAR=0x05F8C790; DSISR=0x40000000; LR=0x002206D0; R1=0x1745B630; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x0239600C 0x00221558 0x00227270 0x0022750C 0x000FB540 0x000E24C8
    0x000E205C 0x000EED28 0x000EEF8C 0x000EF02C 0x002AA304 0x000ABEB0 0x00000000
    Exception state (sv=0x2D619280)
    PC=0x9000612C; MSR=0x0000D030; DAR=0x2E1A2FCA; DSISR=0x40000000; LR=0x9003D0D0; R1=0xF0284BF0; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.4.0: Tue Jan 3 18:22:10 PST 2006; root:xnu-792.6.56.obj~1/RELEASE_PPC
    If anyone has any thoughts, I'd appreciate!

    zapping PRAM is low risk. just involves keyboard combination and patience.
    when I used OS9, Zapping PRAM and Rebuilding desktop was the defacto std of every time I had a big issue I attacked.
    Changing out PRAM batteries is not hard either. a new 3.6v PRAM battery is about $5 + s/h... OWC has some great ones from Newer Tech that are very nice. I always pick up a few when I can. I have the nervous bad habit of buying parts I almost never use...
    Sorry you dont have the applecare option. Before I bought my Dual G4 MDD I never ever paid extra for the applecare and never gave it much thought. always did everything myself through trial and error, read links on webpages, or bought stuff OEM and did servicing myself.
    The 7 days my Dual G4 MDD was in for repair was the longest 1 week of my Mac life... I was forced even to use an old Win98Se computer for email and dialy internet activities.
    Of course it floored me when I saw how much AppleCare did. Part of me was like...Was this NECESSARY? wasn't there something else to do other than just swapping parts out? But I guess those Techs knew better than me. so Basically they gave me a new replacement mobo, replaced the dual processor module, and replaced the video card. would of been $1411 out of my pocket. my wife and I were convinced if I didnt have the applecare I would of probably waited a bit and got an iMac G5 later on. But I LOVE MY G4 MDD TOWER Too Much. lol.
    sorry to go off topic.
    As for the rest, I dont know what to tell you. I wish you the best anyway. Try and Zapping PRAM, try to Reset the PMU switch, try to swap out the PRAM battery. Thats the cheap solution I can give.
    There are people here who know a lot more than I. and given a little bit of time can give you some good advice. Don't give up on it yet.
    good luck dude.
    LUKE
    [email protected]
    [email protected]

Maybe you are looking for

  • Return process in Warehouse mangement

    Hi all, can any one telll me the steps involved in the return process in Warehouse Management. Waiting for UR early reply. With Rgd Vinod

  • Turn on camera on i Phone 5 ?

    Hos do I turn on the camera on I hone5 ?

  • How can I get Messages to automatically send iMessage?

    My messages is setup through Apple ID, no cell number. I try to send a message, to another person that is also set up with email, but it won't send through iMessage. What do I do to send an iMessage?

  • IPhoto MobileMe uploaded picture orientation problem

    Hi, I scanned a number of old photos into iPhoto and moved the photos to upright orientations (portrait and landscape). I then organized them under a single event and published to the MobileMe Gallery. Once uploaded, however, the orientations of some

  • Seagate firewire drive question

    I have installed Leopard on my G4 and G5 tower with no problems. The problem starts when I plug in a Seagate remote firewire drive. the drive is formatted as Apple Partition Map, but I am not using it as a boot disk. I have also tried formatting it a