Added Memory Read as 3200, not 6400?

I recently added 8 gigs of 5400 ddr2 Crucial memory to my powermac g5 dual core. However, in About This Mac, the memory only reads as 3200 speed. Why would this happen? I removed all old memory so there is only 5400 memory in the machine now. Thanks

Hi Rich, you don't say which exact G5/2.0 GHz you have, (there are 3 different ones), but 2 of those Models will read 3200 & one 4200 no matter what the potential DDR is, it's the Mac's HW that limits it, this being said, it may or may not have a lower CAS rate than standard PC3200 RAM.
http://eshop.macsales.com/item/Other%20World%20Computing/3200DDR2GBP/
http://eshop.macsales.com/item/Other%20World%20Computing/3200DDR2GBP/
http://eshop.macsales.com/item/Other%20World%20Computing/42DDR2PAIR4G/
In other words, ot's not going to read higher than your Mac can handle/set up.

Similar Messages

  • Java - Write And Read From memory Like CheatEngine ( Writing not working?)

    Hello Oracle Forum
    I came here some time ago to ask about javaFX , i solved all my issues and im right now waiting for javaFx tot ake over swing and hmm, im working on learning LIBGDX to create games in java.
    However, im in need to create an app to change values of memory to fix a bug in an old program that i have, and the only way until now is using cheatEngine, So i decided to take a tutorial and learn how to do that in java.
    Well, im able to read from the memory but the write isnt working somehow... Im posting the code here, if anyone can give me a hint, i would thank and a lot, because theres a community that really needs this app to automate the fix without using cheat engine.
    package MainStart;
    import com.br.HM.User32;
    import com.br.kernel.Kernel32;
    import com.sun.jna.Memory;
    import com.sun.jna.Native;
    import com.sun.jna.Pointer;
    import com.sun.jna.ptr.IntByReference;
    public class Cheater {
        static Kernel32 kernel32 = (Kernel32) Native.loadLibrary("kernel32", Kernel32.class);
        static User32 user32 = (User32) Native.loadLibrary("user32", User32.class);
        static int readRight = 0x0010;
        static int writeRight = 0x0020;
        //static int PROCESS_VM_OPERATION = 0x0008;
        public static void main(String[] args) {
            //Read Memory
            //MineSweeper = Campo Minado
            int pid = getProcessId("Campo Minado"); // get our process ID
            System.out.println("Pid = " + pid);
            Pointer readprocess = openProcess(readRight, pid); // open the process ID with read priviledges.
            Pointer writeprocess = openProcess(writeRight, pid);
            int size = 4; // we want to read 4 bytes
            int address = 0x004053C8;
            //Read Memory
            Memory read = readMemory(readprocess, address, size); // read 4 bytes of memory starting at the address 0x00AB0C62.
            System.out.println(read.getInt(0)); // print out the value!      
            //Write Memory
            int writeMemory = writeMemory(writeprocess, address, new short[0x22222222]);
            System.out.println("WriteMemory :" + writeMemory);
            Memory readM = readMemory(readprocess, address, size);
            System.out.println(readM.getInt(0));
        public static int writeMemory(Pointer process, int address, short[] data) {
            IntByReference written = new IntByReference(0);
            Memory toWrite = new Memory(data.length);
            for (long i = 0; i < data.length; i++) {
                toWrite.setShort(0, data[new Integer(Long.toString(i))]);
            boolean b = kernel32.WriteProcessMemory(process, address, toWrite, data.length, written);
            System.out.println("kernel32.WriteProcessMemory : " + b); // Retorna false
            return written.getValue();
        public static Pointer openProcess(int permissions, int pid) {
            Pointer process = kernel32.OpenProcess(permissions, true, pid);
            return process;
        public static int getProcessId(String window) {
            IntByReference pid = new IntByReference(0);
            user32.GetWindowThreadProcessId(user32.FindWindowA(null, window), pid);
            return pid.getValue();
        public static Memory readMemory(Pointer process, int address, int bytesToRead) {
            IntByReference read = new IntByReference(0);
            Memory output = new Memory(bytesToRead);
            kernel32.ReadProcessMemory(process, address, output, bytesToRead, read);
            return output;
    package com.br.HM;
    import com.sun.jna.Native;
    import com.sun.jna.Pointer;
    import com.sun.jna.Structure;
    import com.sun.jna.platform.win32.WinDef.RECT;
    import com.sun.jna.ptr.ByteByReference;
    import com.sun.jna.ptr.IntByReference;
    import com.sun.jna.win32.StdCallLibrary.StdCallCallback;
    import com.sun.jna.win32.W32APIOptions;
    * Provides access to the w32 user32 library. Incomplete implementation to
    * support demos.
    * @author Todd Fast, [email protected]
    * @author [email protected]
    public interface User32 extends W32APIOptions {
        User32 INSTANCE = (User32) Native.loadLibrary("user32", User32.class, DEFAULT_OPTIONS);
        Pointer GetDC(Pointer hWnd);
        int ReleaseDC(Pointer hWnd, Pointer hDC);
        int FLASHW_STOP = 0;
        int FLASHW_CAPTION = 1;
        int FLASHW_TRAY = 2;
        int FLASHW_ALL = (FLASHW_CAPTION | FLASHW_TRAY);
        int FLASHW_TIMER = 4;
        int FLASHW_TIMERNOFG = 12;
        public static class FLASHWINFO extends Structure {
            public int cbSize;
            public Pointer hWnd;
            public int dwFlags;
            public int uCount;
            public int dwTimeout;
        int IMAGE_BITMAP = 0;
        int IMAGE_ICON = 1;
        int IMAGE_CURSOR = 2;
        int IMAGE_ENHMETAFILE = 3;
        int LR_DEFAULTCOLOR = 0x0000;
        int LR_MONOCHROME = 0x0001;
        int LR_COLOR = 0x0002;
        int LR_COPYRETURNORG = 0x0004;
        int LR_COPYDELETEORG = 0x0008;
        int LR_LOADFROMFILE = 0x0010;
        int LR_LOADTRANSPARENT = 0x0020;
        int LR_DEFAULTSIZE = 0x0040;
        int LR_VGACOLOR = 0x0080;
        int LR_LOADMAP3DCOLORS = 0x1000;
        int LR_CREATEDIBSECTION = 0x2000;
        int LR_COPYFROMRESOURCE = 0x4000;
        int LR_SHARED = 0x8000;
        Pointer FindWindowA(String winClass, String title);
        int GetClassName(Pointer hWnd, byte[] lpClassName, int nMaxCount);
        public static class GUITHREADINFO extends Structure {
            public int cbSize = size();
            public int flags;
            Pointer hwndActive;
            Pointer hwndFocus;
            Pointer hwndCapture;
            Pointer hwndMenuOwner;
            Pointer hwndMoveSize;
            Pointer hwndCaret;
            RECT rcCaret;
        boolean GetGUIThreadInfo(int idThread, GUITHREADINFO lpgui);
        public static class WINDOWINFO extends Structure {
            public int cbSize = size();
            public RECT rcWindow;
            public RECT rcClient;
            public int dwStyle;
            public int dwExStyle;
            public int dwWindowStatus;
            public int cxWindowBorders;
            public int cyWindowBorders;
            public short atomWindowType;
            public short wCreatorVersion;
        boolean GetWindowInfo(Pointer hWnd, WINDOWINFO pwi);
        boolean GetWindowRect(Pointer hWnd, RECT rect);
        int GetWindowText(Pointer hWnd, byte[] lpString, int nMaxCount);
        int GetWindowTextLength(Pointer hWnd);
        int GetWindowModuleFileName(Pointer hWnd, byte[] lpszFileName, int cchFileNameMax);
        int GetWindowThreadProcessId(Pointer hWnd, IntByReference lpdwProcessId);
        interface WNDENUMPROC extends StdCallCallback {
             * Return whether to continue enumeration.
            boolean callback(Pointer hWnd, Pointer data);
        boolean EnumWindows(WNDENUMPROC lpEnumFunc, Pointer data);
        boolean EnumThreadWindows(int dwThreadId, WNDENUMPROC lpEnumFunc, Pointer data);
        boolean FlashWindowEx(FLASHWINFO info);
        Pointer LoadIcon(Pointer hInstance, String iconName);
        Pointer LoadImage(Pointer hinst, // handle to instance
                String name, // image to load
                int type, // image type
                int xDesired, // desired width
                int yDesired, // desired height
                int load // load options
        boolean DestroyIcon(Pointer hicon);
        int GWL_EXSTYLE = -20;
        int GWL_STYLE = -16;
        int GWL_WNDPROC = -4;
        int GWL_HINSTANCE = -6;
        int GWL_ID = -12;
        int GWL_USERDATA = -21;
        int DWL_DLGPROC = 4;
        int DWL_MSGRESULT = 0;
        int DWL_USER = 8;
        int WS_EX_COMPOSITED = 0x20000000;
        int WS_EX_LAYERED = 0x80000;
        int WS_EX_TRANSPARENT = 32;
        int GetWindowLong(Pointer hWnd, int nIndex);
        int SetWindowLong(Pointer hWnd, int nIndex, int dwNewLong);
        int LWA_COLORKEY = 1;
        int LWA_ALPHA = 2;
        int ULW_COLORKEY = 1;
        int ULW_ALPHA = 2;
        int ULW_OPAQUE = 4;
        boolean SetLayeredWindowAttributes(Pointer hwnd, int crKey,
                byte bAlpha, int dwFlags);
        boolean GetLayeredWindowAttributes(Pointer hwnd,
                IntByReference pcrKey,
                ByteByReference pbAlpha,
                IntByReference pdwFlags);
         * Defines the x- and y-coordinates of a point.
        public static class POINT extends Structure {
            public int x, y;
         * Specifies the width and height of a rectangle.
        public static class SIZE extends Structure {
            public int cx, cy;
        int AC_SRC_OVER = 0x00;
        int AC_SRC_ALPHA = 0x01;
        int AC_SRC_NO_PREMULT_ALPHA = 0x01;
        int AC_SRC_NO_ALPHA = 0x02;
        public static class BLENDFUNCTION extends Structure {
            public byte BlendOp = AC_SRC_OVER; // only valid value
            public byte BlendFlags = 0; // only valid value
            public byte SourceConstantAlpha;
            public byte AlphaFormat;
        boolean UpdateLayeredWindow(Pointer hwnd, Pointer hdcDst,
                POINT pptDst, SIZE psize,
                Pointer hdcSrc, POINT pptSrc, int crKey,
                BLENDFUNCTION pblend, int dwFlags);
        int SetWindowRgn(Pointer hWnd, Pointer hRgn, boolean bRedraw);
        int VK_SHIFT = 16;
        int VK_LSHIFT = 0xA0;
        int VK_RSHIFT = 0xA1;
        int VK_CONTROL = 17;
        int VK_LCONTROL = 0xA2;
        int VK_RCONTROL = 0xA3;
        int VK_MENU = 18;
        int VK_LMENU = 0xA4;
        int VK_RMENU = 0xA5;
        boolean GetKeyboardState(byte[] state);
        short GetAsyncKeyState(int vKey);
    package com.br.kernel;
    import com.sun.jna.*;
    import com.sun.jna.win32.StdCallLibrary;
    import com.sun.jna.ptr.IntByReference;
    // by deject3d
    public interface Kernel32 extends StdCallLibrary
        // description from msdn
        //BOOL WINAPI WriteProcessMemory(
        //__in   HANDLE hProcess,
        //__in   LPVOID lpBaseAddress,
        //__in   LPCVOID lpBuffer,
        //__in   SIZE_T nSize,
        //__out  SIZE_T *lpNumberOfBytesWritten
        boolean WriteProcessMemory(Pointer p, int address, Pointer buffer, int size, IntByReference written);
        //BOOL WINAPI ReadProcessMemory(
        //          __in   HANDLE hProcess,
        //          __in   LPCVOID lpBaseAddress,
        //          __out  LPVOID lpBuffer,
        //          __in   SIZE_T nSize,
        //          __out  SIZE_T *lpNumberOfBytesRead
        boolean ReadProcessMemory(Pointer hProcess, int inBaseAddress, Pointer outputBuffer, int nSize, IntByReference outNumberOfBytesRead);
        //HANDLE WINAPI OpenProcess(
        //  __in  DWORD dwDesiredAccess,
        //  __in  BOOL bInheritHandle,
        //  __in  DWORD dwProcessId
        Pointer OpenProcess(int desired, boolean inherit, int pid);
        /* derp */
        int GetLastError();
    http://pastebin.com/Vq8wfy39

    Hello there,
    this tutorial was exactly what I needed, so thank you.
    Your problem seems to be in this line:
    int writeMemory = writeMemory(writeprocess, address, new short[0x22222222]); 
    The problem is, you're creating a new short array with the length of 0x22222222. Which not only results in an java.lang.OutOfMemoryError: Java heap space
    but also, if it would work, would create an empty array with the length of 0x22222222.
    I think you want to write 0x22222222 as value in your address.
    Correctly stored the code you'd need to write would be:
    short[] sarray = new short[]{(short) 0x22222222};
    But because the value is too long for the short, the value stored in your array would be the number 8738.
    I think, what you want to do is to store the number 572662306, which would be the hex value, stored in an int variable.
    So first of all you need to strip down your hex-value to shorts:
    Short in Java uses 16 Bit = 2 Byte. 0x22222222 -> 0x2222 for your high byte and 0x2222 for your low byte
    So your array would be
    short[] sarray = new short[]{0x2222,0x2222};//notice, that sarray[0] is the lowbyte and sarray[1] the high byte, if you want to store 20 it would be new short[]{20,0} or if you use hex new short[]{0x14,0x00}
    The next part is your writeToMemory Method. If I'm right, the method in the tutorial is a little bit wrong. The right version should be this:
    public static int writeMemory(Pointer process, int address, short[] data) {
      IntByReference written = new IntByReference(0);
      int size = data.length*Short.SIZE/8;
      Memory toWrite = new Memory(size);
      for (int i = 0; i < data.length; i++) {
      toWrite.setShort(i*Short.SIZE/8,
      data[i]);
      boolean b = kernel32.WriteProcessMemory(process, address, toWrite,
      size, written);
      return written.getValue();
    You need to calculate your offset right. And the size of your memory. Maybe you could write this method not with shorts, but with integers. But this should work.
    If you pass your new array to this function, it should write 0x22222222 to your adress. If you read out your toWrite value with toWrite.getInt(0) you get the right value.
    And there is one more thing. In order to write data to a process, you need to grant two access rights:
    A handle to the process memory to be modified. The handle must have PROCESS_VM_WRITE and PROCESS_VM_OPERATION access to the process.
    You have to grant the right to write data: PROCESS_VM_WRITE: 0x0020 and PROCESS_VM_OPERATION: 0x0008
    So your writeProcess needs to get initialized this way:
    Pointer writeprocess = openProcess(0x0020|0x0008,pid);
    I hope this works for you. Let me know.
    Greetings
    Edit:
    Because every data you write will be 1 byte to whatever count of byte I think the best way is to use the following method to write data to the memory:
    public static void writeMemory(Pointer process, long address, byte[] data)
      int size = data.length;
      Memory toWrite = new Memory(size);
      for(int i = 0; i < size; i++)
      toWrite.setByte(i, data[i]);
      boolean b = kernel32.WriteProcessMemory(process, address, toWrite, size, null);
    You can see some changes. First I changed all address values from int to long, because some addresses are out of range. And with all, i mean all. Not only in writeMemory, but also in readMemory and in your kernel32 Class.
    Second I don't use the IntByReference anymore..
    To use this method you need to store your data the following way if you would write 4 Byte data:
    byte[] values = new byte[]{0x14,0x00,0x00,0x00};
    This value would be the number 20. Index 0 will be the lowest byte and index 3 will be the highest byte.
    And one more thing I wrote is an method which you can use to calculate your address if you have a baseAddress.
    If you restart your program/game your old addresses won't point at the same values of your game. With some research (I use CheatEngine) you can get the baseaddress. This one will alway be the same.
    To get from your baseaddress to the dynamic adress you use offsets.
    public static long findDynAddy(Pointer process, int[] offsets, long baseAddress)
      long pointer = baseAddress;
      int size = 4;
      Memory pTemp = new Memory(size);
      long pointerAddress = 0;
      for(int i = 0; i < offsets.length; i++)
      if(i == 0)
      kernel32.ReadProcessMemory(process, pointer, pTemp, size, null);
      pointerAddress = ((pTemp.getInt(0)+offsets[i]));
      if(i != offsets.length-1)
      kernel32.ReadProcessMemory(process, pointerAddress, pTemp, size, null);
      return pointerAddress;
    This methods gets a process, an array of offsets (hex-values) and your baseadress and returns the dynamic address.
    For Solitaire the following code would give you the address to the score:
    long baseAddr = 0x10002AFA8L;
      int[] offsets = new int[]{0x50,0x14};
      long addr = findDynAddy(process, offsets, baseAddr);
    If somebody wants to get the whole code (user32, kernel32 and the cheater) just pm me and I will give you a link.

  • I have a pdf file with the added sounds, so I can not run the sound in adobe reader XI on my tablet samsung galaxi pro (android)

    I have a pdf file with the added sounds, so I can not run the sound in adobe reader XI on my tablet samsung galaxi pro (android)

    Thanks for writing to us. Unfortunately, such advanced javascript support is currently not provided by Adobe Reader for Android.
    Thanks,
    Adobe Reader Team

  • I purchased a IMac in Feb later I added a Seagate ext. hard drive. On April 29 I received an errors that the ext. Drive may be a read only and not backing up files. I'm unable to check disk permission or correct errors. Help would be appreciated.

    I purchased a IMac in Feb later I added a Seagate ext. hard drive. On April 29 I received an errors that the ext. Drive may be a read only and not backing up files. I'm unable to check disk permission or correct errors. Help would be appreciated.

    Click on the hard drive on the desktop, then File > Get Info. What does it say about permissions?  If this is just a data drive you may want to consider "ignore ownership on this volume".
    Otherwise I can only say I have not been reading good things about Seagate drives recently.  I have some of their rock-solid ones from about 10 years ago (still running well), but now...?

  • Added Memory, but not showing up in System Profilier

    I have an iBook G4 1.2Ghz/12-inch screen laptop. Bus speed 133 MHz. It has 256 MB built-in memory. I added a stick of 512 that is appropriate for this computer. (PC 2100) It is seated correctly, and the clips are in place.
    However, when I go to the System Profiler, it still only shows my Built-In Memory, and shows that the DIMM1/J7 Memory slot is Empty.
    Is there something I need to do to get my computer to recognize the added hardware?
    The odd thing is, my computer really does seem to be using the added memory, as I can now have multiple applications open without slowing or freezing.
    Thanks,
    Sonya

    You are correct. When the Mac starts up it checks for RAM, no configuration needed on your part. I would suggest taking the chip out and putting it back in to make certain it's pushed in correctly. It should actually "snap" or "click" softly into place.
    -Doug

  • Laserjet 6p added memory unknown???

    I have a 6P and it has an installed memory card on one of the 3 available memory slots.I can not tell what the size of the memory card is and called the manufacturer who said that its model number is no longer available in their database. I held down the printer button and got the LaserJet 6P printed page but it says "PLC6 MEt Memory Enhancement technology 2 mbytes".   I believe that is the internal installed memory and doesn't include the added memory card. Is there anyway I can determine the size of this added memory card? Also, when I print PDF files, it takes a very long time for each page to print...maybe a minute per page. If I switch to Raster, then the pages print normally.  Any ideas on this issue as it only happens with PDF files that I have to print. Win7 Ultimate  64bit. using the Win7 print driver for HP LaserJet 6p.

    Thanks for the additional info. As far as being confused...the only two options I have in the graphic mode is HP_GL/2 or Raster so I don't know why they are on my LaserJet if they are not suppose to be.I'm not sure what driver I am using...when I print out the test page it says PCL6 so I guess that is the driver installed. There is no other place that tells me that I can find.  When I go to HP support there doesn't appear to be a way to get PCL5 as it refers me to Windows for printer drivers on my model.I guess I'll just have to remember to switch to Raster each time I do a PDF file.Thanks for all your help. 

  • I added memory to my MacBook Pro (now 4gb) and upgraded to Lion. Now my iphone 4 won't sync-gets stuck at stage 7 of 8 on importing photos. My iphoto is'09 version 8.1.2

    I recently added memory to my MacBook Pro so I could upgrade to Lion and use the cloud for my contact list. It's been a bit of a mess, since I use Entourage as my email program.  The REAL problem I'm having now is that my iPhone 4 now won't sync.  iTunes "quits unexpectedly" at stage 7 (of 8) in the syncing process, where it says it's importing photos.  My iPhoto is '09, version 8.1.2   Is this not compatible with Lion?

    I have the same problem. I'm suspecting a corrupt photo, but the logs don't give me a clue. Or maybe this version of iTunes needs some further tuning.

  • K8N Neo4 Plat - added memory - no OC - help!?

    Hello,
    I added 2 additional 512Mb sticks (TWINX1024-3200C2) to existing 2x512 of the same (for total of 2Gb).
    First off - the system didn't post. Reset BIOS - posted. However, now I cannot overclock to where it was before.
    Was - 240 FSB, HT Freq 4x, CPU ratio x9. Mem clock 166MHz, 2.5-3-3-7 1T --> CPU clock 2160, DDR clock 200
    Now - I can only go up to 230 FSB with the same HT and CPU ratio - I had to change mem to 3-3-3-8 2T (wouldn't post otherwise)
    Any idea how to speed it up a little more?
    Thanks!
    --max

    Thanks!
    OK, I kinda figured 2T point by myself (it wouldn't post with 1T no matter what).
    Memory is way below 200MHz..
    Oh.. well.. I guess I'll just give up and RMA it... Should've read this forum before buying..
    Quote from: Quadrifoglio Verde on 21-March-07, 17:27:32
    The s939 Athlon64 revision E memory controller officially supports 4 memory modules at 200 MHz (DDR400) and a 2T command rate only, 1T is just not possible anymore. On most boards even DDR400 is too high, you might have to fall back to DDR333 to run a stable system. Bottom line is that 4 memory modules is just not the way to go on an Athlon64, it will seriously limit your overclocking possibilities and memory performance.
    If you really want to give it a go with 4 modules, you can try to play around with high memory voltages (at your own risk of course). It might help you to get it stable at DDR400 at acceptable latencies. Forget about running a 1T command rate though...   

  • I have a macbook 4.1 with osx10.6.8 and just added memory (2gig) so I could sync my new Ipome and Ipad.  and Ipad. Now I'm told I need to upgrade my operating system. The apple store gave me conflicting instructions. Any suggestions? Thanks

    I have a macbook 4.1 with osx10.6.8 and just added memory (2gig) so I could sync my new IPhone and Ipad. Now I'm told at the apple store that I need to upgrade my operationg system. They said they couldn't help and gave me conflicting advice about what to do. Any ideas? Thanks you!

    There are three models of MacBook that comprise the 'macbook 4.1' category, and each of them a little different; however other than 'macbook 4.1' the other thing they have in common is they all are considered Early 2008. Two are white, one black, polycarbonate case, Core2Duo 2.1GHz, 2.4GHz white, 2.4GHz black.
    So if you can determine which one, if any of these, is the model build year and spec you have, that would be handy. Did you tell whoever you spoke to the serial number of your computer, so they'd know by looking up the specs to see what the supported maximum RAM upgrade capacity was, and other minimum requirements to make any upgrade to Mac OS X 10.6.8 at all?
    If you have the serial number you can do a lookup to 'indentify by serial number' online, and use that information to determine if the computer needs even more RAM to take it past the minimum for Snow Leopard 10.6.8 and then get it ready to upgrade (via paid download from App Store, Snow Leopard gets you that far) and see what the next supported OS X full upgrade would be for the hardware limitations on that old MacBook.
    If your MacBook IS a 4.1 build, the highest OS X it could run if it has the 2.4GHz cpu, is Lion 10.7.5. That would be an upgrade from the App store, available to OS X 10.6.8+ computers that access it online. And I kind of doubt how supported a newest iphone etc may be in lion.
    everymac.com has a fair amount of information across many years of Apple computing hardware...
    Here's the three MacBooks that share the 4.1 designation; first shipped with as much as 1GB RAM upgrade and the other two only a 2GB RAM*, (one white/one black color) according to this information...
    • MacBook "Core 2 Duo" 2.1 13" (White-08) 2.1 GHz Core 2 Duo (T8100)   
    • MacBook "Core 2 Duo" 2.4 13" (White-08) 2.4 GHz Core 2 Duo (T8300)  
    • MacBook "Core 2 Duo" 2.4 13" (Black-08) 2.4 GHz Core 2 Duo (T8300)
    ...as seen here: http://www.everymac.com/systems/apple/macbook/index-macbook.html
    *But according to MacTracker (free: download database) http://mactracker.ca
    these MacBooks can use more RAM in aftermarket specs as much as:
    Maximum Memory
    6.0 GB (Actual) 4.0 GB (Apple)
    Memory Slots
    2 - 200-pin PC2-5300 (667MHz) DDR2 SO-DIMM
    To get more information use a service such as this...
    •identify by serial number:
    http://www.powerbookmedic.com/identify-mac-serial.php
    The Apple? store or whoever you talked, to may have been as accurate as they could be without further research. Could be you may have a newer or older MacBook, which would change whatever later OS X it could run past 10.6.8. And to go past Snow Leopard, you need to download the last bits for 10.6.x to be able to go and get any later upgrade. The ones that may let a newest iphone or ipad work with it, are past SL10.6.8
    Anyway, as you further verify the model build year and configuration specifications, report back.
    Good luck & happy computing!

  • Adding effects to a single note in Logic Pro

    Hi
    How would it be possible to add FX to a single note - for example one played at the end of a riff or melody - I've been trying to figure out a way of adding one to a single note in the piano roll format but am having no luck - can anyone please help?
    Thanks in advance
    Alex

    You need to distinguish between MIDI and audio a little. The piano roll is editing data about "notes" and "performances", but has nothing to do with audio as such. You can't add an "audio" effect to a "note" as such.
    Your notes and performances getting effectively translated into audio by the use of an instrument. So, a C3 note, played via a piano instrument, will result in the audio of a piano playing C3. Use a drum instrument, and the audio might be of a snare drum.
    So, you want to add an audio effect at a specific point in your song, corresponding to where a particular note plays. Either use automation to bring in that plugin/effect for that time (either directly on the instrument channel, or via busses/sends), or send that note to a separate track and instrument with FX set up to play only that note specifically.
    Lots of ways to do it. But remember, a "note" is an instruction to play something. It is not audio, and so you can't manipulate it with audio tools until it becomes audio (ie, in the mixer).

  • Adobe Reader X does not launch

    Hello,
    Frequently, Adobe Reader X does not start on my Windows 7 computer.
    I have tried the following methods of access:
    Desktop link
    Start > All Program > Adobe Reader X
    Run > C:\Program Files (x86)\Adobe\Reader 10.0\Reader\AcroRd32.exe
    Environmental specs:
    Computer: ASUS laptop
    OS: Windows 7, fully updated as of 2/5/12
    RAM: 8 gigs
    Processor: Intel i5, second gen
    Observations:
    Subsequent attempts to launch Adobe Reader X add another "AcroRd.exe *32" image to the "Processes" tab in Windows Task Manager (the count of these images can build up very high).
    These same attempts fail to add an "Adobe Reader X" task in the "Applications" tab of Task Manager.
    The CPU and Memory were only at 25% of their capacities during the last occurrence.
    [Failed] attempts taken to fix problem:
    Repair install
    Complete uninstall / reinstall
    Workaround:
    As of now, the only workaround I have found is to restart my computer. If I am lucky, Adobe Reader X will open after booting. Otherwise, I just have to keep restarting until it works.
    Any help would be great.
    Thanks,
    Sam

    Would it be possible for you to:
    1. Temporarily disable the antivirus program and try launching Reader again.
    2. Try launching Reader by right clicking on the shortcut and selecting "Run as Administrator"
    If all the above steps produce negative results, please check the Event Logs on your machine (Control Panel > Administrative Tools > Evenet Viewer > Windows Logs > Application) and see if you are seeing any error related to Adobe Reader.
    Also, could you let me know if launching Adobe Reader produces any error of sorts, or does it simply not launch inspite of a process being spawned.

  • My Location/Search Bar has no memory. It does not remember what I type in.

    My Location/Search Bar has no memory. It does not remember what I type in it when I am doing Google Searches. I have had this problem for over a week now.

    I guess I would call it the "Google.com" Web Site. It is the horizontal bar/box in the middle of the screen (not at the top). Whenever I would do a Google Search, whatever name I typed in that box would stay there until I manually deleted it. Now, nothing stays in that box. Can you figure out why?

  • HT4191 I have iphone 5 and the latest iO7.1. Since upgrading to IOS7.1 birthdays added to a contact are not shown in calendar anymore. It use to show automatically before.

    I have iphone 5 and the latest iO7.1. Since upgrading to IOS7.1 birthdays added to a contact are not shown in calendar anymore. It use to show automatically before. Can anyone help?

    Click on calendars at the bottom of the screen. Make sure that birthdays are checked.
    We may think we have 1 calendar, but iPhone puts things in different calendars. Sometimes we can somehow lose one. Well not really lost, but somehow it just gets de-selected. So just make sure that all that you want to see are checked.
    One cool thing I like about this is that they have added US Holidays which didn't used to be there like on most paper calendars. Nice to have them available now!

  • Laser Jet 1536dnf MFP says memory low and will not print

    Laser Jet 1536dnf MFP says memory low and will not print. Have tried hard disconnect and restart. Error persists.

    Hey ,  Welcome to the HP Support Forum.  I hope you enjoy your experience here. I see that you're encountering the memory is low error status on your LaserJet Pro 1536dnf MFP. I would like to help.  For this particular error, I have found the NVRAM Initialization type of reset to be beneficial in restoring functionality.  Note that completing this step will reset your printer's wireless configuration, ePrint address, and other customized printer settings. If you have created a custom @hpeprint.com address it will be permanently erased. For more information on custom ePrint addresses, click here.   As HP does not typically make the steps for this type of reset available publicly, I will private message you the instructions you need.  Please let me know the result of your troubleshooting by responding to this post.  If I have helped you resolve the issue, feel free to give me a virtual high-five by clicking the 'Thumbs Up' icon below and clicking to accept this solution. Thank you for posting in the HP Support Forum.  Have a great day! 

  • ORA-27102: out of memory SVR4 Error: 12: Not enough space

    We got image copy of one of production server that runs on Solaris 9 and our SA guys restored and handed over to us (DBAs). There is only one database running on source server. I have to up the database on the new server. while startup the database I'm getting following error.
    ====================================================================
    SQL*Plus: Release 10.2.0.1.0 - Production on Fri Aug 6 16:36:14 2010
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to an idle instance.
    SQL> startup
    ORA-27102: out of memory
    SVR4 Error: 12: Not enough space
    SQL>
    ====================================================================
    ABOUT THE SERVER AND DATABASE
    Server:
    uname -a
    SunOS ush** 5.9 Generic_Virtual sun4u sparc SUNW,T5240*
    Database: Oracle 10.2.0.1.0
    I'm giving the "top" command output below:
    Before attempt to start the database:
    load averages: 2.85, 9.39, 5.50 16:35:46
    31 processes: 30 sleeping, 1 on cpu
    CPU states: 98.9% idle, 0.7% user, 0.4% kernel, 0.0% iowait, 0.0% swap
    Memory: 52G real, 239G free, 49M swap in use, 16G swap free
    the moment I run the "startup" command
    load averages: 1.54, 7.88, 5.20 16:36:44
    33 processes: 31 sleeping, 2 on cpu
    CPU states: 98.8% idle, 0.0% user, 1.2% kernel, 0.0% iowait, 0.0% swap
    Memory: 52G real, 224G free, 15G swap in use, 771M swap free
    and I compared the Semaphores and Kernel Parameters in /etc/system . Both are Identical.
    and ulimit -a gives as below..
    root@ush**> ulimit -a*
    time(seconds) unlimited
    file(blocks) unlimited
    data(kbytes) unlimited
    stack(kbytes) 8192
    coredump(blocks) unlimited
    nofiles(descriptors) 256
    memory(kbytes) unlimited
    root@ush**>*
    and ipcs shows nothing as below:
    root@ush**> ipcs*
    IPC status from <running system> as of Fri Aug 6 19:45:06 PDT 2010
    T ID KEY MODE OWNER GROUP
    Message Queues:
    Shared Memory:
    Semaphores:
    Finally Alert Log gives nothing, but "instance starting"...
    Please let us know where else I should check for route cause ... Thank You.

    and I compared the Semaphores and Kernel Parameters in /etc/system . Both are Identical.are identical initSID,ora or spfile being used to start the DB.
    Clues indicate Oracle is requesting more shared memory than OS can provide.
    Do any additional clues exist within alert_SID.log file?

Maybe you are looking for

  • Interaction Record in IC Web

    Hi All, When I click the END button to wrap a call, an empty Interaction Record will be automatically created. How can I avoid of creating an IR when I click the END button? Thanks, Bin

  • JSTL help

    Hey hey!!! ;) Listen, I'm trying to create a JSP page that uses JSTL tags to check user inputs (in i.e Username and Password fields )against existing rows in a database. At the moment, the page that is supposed to do the checking generates this messa

  • Error in createOUIprocess

    hello friends! please help! I installed jre_1.1.6-v5-gilbc-x86.tar.gz in redhat linux 6.2, and when I use the command: which jre , it reply: /usr/local/jre/bin/jre It seems that I have install the jre right. But when I tar Oracle815EE_Intel.tar.gz an

  • HT5706 this content requires HDCP for playback?

    This message shows up on my TV screen when I try to play a movie.

  • Reference report column from another page?

    I have a work order report with column link. Upon clicking link, control goes from page 2 to page 3 where I want to show details about components in work order. How do I reference the work order ID (report column on page2) from the query in page 3? I