Need to know  what i have to do

I got a power mac g4 from my job it work one time and now it start up with a icon ? and faces what do i have to do

Hi, jaycrespo326 -
If the machine had been sitting in storage, i.e. unpluuged, for a while before you got it, the internal battery may have become too weak or dead; when that happens booting anomalies can occur. The single good boot could have resulted from residual current stored in a capacitor. You can get a replacement battery at places like RadioShack for about US$18, cheaper on-line.
You might also try resetting the PMU/CUDA -
Article #HT1939 - Resetting CUDA/PMU
It can help us answer better if you identify the specific model G4 in question. If the serial number label is still on the machine (it would probably be in the vicinity of where the power cord plugs in), that contains some info about the model. You can also use these Apple KBase articles to identify it -
Article #HT3082 - Power Mac G4: How to Differentiate Between Models
Article #TA25585 - Power Mac G4: How to Differentiate Between Models (part 2)

Similar Messages

  • Can I set up a 2 (or 3) room audio system? I have iphone 3, iphone 4 and ipad 2 and need to know what hardware, if any, I need for this (airport express?, apple TV?) Also, would I use icloud or home sharing?

    I need to know what hardware, if any, I need to do this (airport express?, apple TV?)
    I simply want to send music from my itunes to 2 different rooms at the same time. Is it possible? I have iphone3, iphone4 and ipad2 if that helps.
    Also, would I use icloud or home sharing? Sorry for the noob question, any help is appreciated.
    Thanks!

    The answer is not if you use iTunes.
    The TC is NOT an iTunes server.. it is not a media device at all. It is a backup location for Time Machine.
    You need a computer in the network which stores the iTunes library and you can then play it via the ipad.
    A mini with a large USB drive plugged in will work fine.. it doesn't need to be new.. a couple of years old mini will work just as well.
    As an extention to this, can we use multiple Airport expresses plugged into mutiple sound systems to simultaneously access different music from the same time capsule?
    I am not sure.. there will be network limitations to this.
    Look up how to use itunes in a network.
    http://support.apple.com/kb/ht4620
    You would do better perhaps posting the question in iTunes section.. if as I guess you are actually using iTunes.

  • I have just updated my software on my iPhone 4S to IOS7.0.4 now I have lost many of my contacts.   Can anyone suggest an easy way to reinstate them.  (Without having to add them all again as I don't know what I have lost until I need it).

    I have just updated my software on my iPhone 4S to IOS7.0.4 now I have lost many of my contacts.   Can anyone suggest an easy way to reinstate them.  (Without having to add them all again as I don't know what I have lost until I need it).

    Try assigning Queen as the Album Artist on the compilations in iTunes on your computer.

  • HT3967 I have a new MacBook Pro and need to know what I need to do to open Microsoft Office files so that I can work on them?

    I have a new MacBook Pro and need to know what I need to do to open Microsoft Office files?

    Use a product such as OpenOffice, LibreOffice, Google Docs, iWork, or Microsoft Office 2008 or newer. In the case of Word documents, you can also use TextEdit.
    (82026)

  • Need to know what form is attached to a responsibility

    Hi,
    There is a need to know what responsibility in Oracle has access to a given form. All seeded Oracle Reports that I am aware of (Function Security Function Report, Function Security Menu Report, Function Security Navigator Report) require a responsibility be inputted into a parameter in order to run. This is not a feasible option as we have hundreds of responsibilities and we would need to manually review each output for a specific function or form. Does a report or other SQL exist where I do not have to specify a responsibility?
    I have attempted different ways for a custom sql but the difficulty always lies in the exclusions because you need to look in every single menu that has been excluded whether or not a function is attached (need to look at all the submenus). This is difficult because you need to go down the entire menu tree of each excluded menu and I haven't been able to do this.
    Below is the closest I have got for an sql however I am getting 207 results which I know is not correct. I'm wondering if the query when looking at the menu exclusions is not looping at all the menus that are excluded for a given responsbility? Any ideas or suggestions would be greatly appreciated.
    Thanks,
    PJ
    SELECT b.responsibility_name FROM fnd_responsibility_vl b
    /*Get all menus assigned to a responsbility that has a
    specfic function_id based on a form and takes into account function exclusions*/
    WHERE EXISTS (SELECT 1 FROM
    apps.fnd_menu_entries_vl c WHERE c.function_id IN (SELECT DISTINCT FUNCTION_id FROM
    FND_FORM_FUNCTIONS_VL WHERE
    form_id = 10397)
    AND c.function_id NOT IN (SELECT action_id from
    fnd_resp_functions frf where frf.application_id = b.application_id
    AND frf.action_id IN (SELECT DISTINCT
    FUNCTION_id FROM FND_FORM_FUNCTIONS_VL WHERE form_id = 10397)
    and frf.rule_type='F' AND
    frf.responsibility_id = b.responsibility_id)
    START WITH c.menu_id = b.menu_id CONNECT BY PRIOR c.sub_menu_id = c.menu_id)
    /*Do not show any responsibiliy that has a menu in the
    excluded list against the responsbility that has the specified form/function*/
    AND b.end_date IS NULL
    AND NOT EXISTS ( SELECT 1 FROM
    apps.fnd_menu_entries_vl c,
    fnd_resp_functions frf
    WHERE frf.responsibility_id = b.responsibility_id
    and frf.application_id = b.application_id
    and c.menu_id = frf.action_id
    AND frf.rule_type ='M'
    AND c.function_id IN (SELECT DISTINCT FUNCTION_id FROM FND_FORM_FUNCTIONS_VL
    WHERE form_id = 10397)
    START WITH c.menu_id = frf.action_id
    CONNECT BY PRIOR c.sub_menu_id = c.menu_id)

    Hi Hussein,
    Thank you for the reply.
    For note "How to get information related to forms functions, menus and responsibilities for both 11i and R12 (Doc ID 953934.1)":
    The script for "How to retrieve list of responsibilities and associated menus" (SELECT RESPONSIBILITY_NAME, MENU_ID FROM FND_RESPONSIBILITY_VL;) isn't really giving that as it's just the one menu that is associated with that responsibility (and doesn't look at the menu exclusions).
    For note, "How To get List Of Functions Which Are Setup For A Responsibility? (Doc ID 549100.1)":
    I can already get a list of functions on a particular responsbility and even more so I know what menus use a particular function using the following sql:
    SELECT * FROM apps.fnd_menu_entries_vl c WHERE c.function_id IN (SELECT DISTINCT FUNCTION_id FROM FND_FORM_FUNCTIONS_VL WHERE form_id = <form_id>)
    This note does not help because you would need to do it by responsibility and I have hundreds of responsbilities I would need to search which is why the seeded reports I reference above do not work (you need to specify a responsibility at a time).
    I believe these are two links I need to look at to find what menus are associated and unassociated with a responsbility. In fnd_responsibility_vl, there is the main menu_id that says where this repsonsbility gets all of it's menus. This is where I look first in the first part of my query (b.menu_id is this link to the fnd_responsibility_vl table) :
    --Get all menus assigned to a responsbility that has a specfic function_id based on a form and takes into account function exclusions
    WHERE EXISTS (
    SELECT 1 FROM apps.fnd_menu_entries_vl c WHERE c.function_id IN (SELECT DISTINCT FUNCTION_id FROM
    FND_FORM_FUNCTIONS_VL WHERE form_id = 10397)
    AND c.function_id NOT IN (SELECT action_id from fnd_resp_functions frf where frf.application_id = b.application_id
    AND frf.action_id IN (SELECT DISTINCT FUNCTION_id FROM FND_FORM_FUNCTIONS_VL WHERE form_id = 10397)
    and frf.rule_type='F' AND frf.responsibility_id = b.responsibility_id)
    START WITH c.menu_id = b.menu_id
    CONNECT BY PRIOR c.sub_menu_id = c.menu_id)
    The next link is the "unassociated" link which is the menu exclusions. I'm looking at these exclusions similar to the part above however I don't think it's looking at all of the menus defined in the menu exlusions as my list of responsbilities is more then it should be:
    --Do not show any responsibiliy that has a menu in the excluded list against the responsbility that has the specified form/function
    AND NOT EXISTS (SELECT 1
    FROM apps.fnd_menu_entries_vl c,
    fnd_resp_functions frf
    WHERE frf.responsibility_id = b.responsibility_id
    and frf.application_id = b.application_id
    and c.menu_id = frf.action_id
    AND frf.rule_type = 'M'
    AND c.function_id IN (SELECT DISTINCT FUNCTION_id
    FROM FND_FORM_FUNCTIONS_VL
    WHERE form_id = 10397)
    START WITH c.menu_id = frf.action_id
    CONNECT BY PRIOR c.sub_menu_id = c.menu_id)
    It needs to be able to look at the menu trees of all of the defined menus that are excluded and find any menu that has that function as defined in the first sql of this post (if it is found in the exclusions then do not show it). However I do not think it is looping through all of the menus defined in the exclusions. Any guidance is greatly appreciated.
    Thanks,
    PJ

  • Hi. im ipad and ipohe user. now i want to buy my first macbook. i need to know what is better for me: macbook pro 13´´ or macbook air 13´´?? or another??

    hi. im ipad and ipohe user. now i want to buy my first macbook. i need to know what is better for me: macbook pro 13´´ or macbook air 13´´?? or another??
    i will not move it frecuently from home because i always have with me the iphone and sometimes the ipad.
    im looking apple store online because im trying to buy it refubrished (im from argentina and travel to NYC next month)...
    please i hear you...!

    Light weight basic needs, power miser - MacBook Air (glossy screens)
    Semi-light weight basic needs, more storage, DVD drive, hot machine (no 3D gaming) - 13" MacBook Pro (glossy screens)
    Bit heavier, pro needs, 3D gaming, cool machine, power hungry, - 15" MacBook Pro  (anti-glare screen option, recommended)
    Same as above, larger screen for HD video, cool machine,  power hungry, 17" MacBook Pro (anti-glare screen option, recommended)

  • HT201376 How do I go about unlocking a recovery HD? Also I need to know what disk image should I use when trying to restore a failed(erased) disk in DU?

    Also I need to know what disk image should I use when trying to restore a failed(erased) disk in DU?

    You need to plug it into your computer running iTunes and restore it. Have you tried that? If so, what happened?

  • I need to know what kind of photo paper to use on the HP Photosmart 375.

    What are the specifications for photo paper to be used on the Photosmart 375.  HP Advanced Photo Paper is too thick (66 lb) and won't feed through the printer.  HP Premium Photo Paper (64 lb) will feed through the printer but the ink takes at least 2 hours to dry.  HP sold paper in the past for injet printers which worked perfectly: it was the right thickness to feed through the printer and the ink dried instantly.  Canon also sold similar paper, but both HP and Canon have changed the specs on their photo paper so that they no longer are suitable.  So, I need to know what are the proper specs for a Photosmart 375 and where can I buy it.  Shouldn't HP provide a suitable paper for its Photosmart 375 printer, as it did in the past?

    I have had good results with HP Premium Plus Glossy photo paper.  The Office Depot Brilliant Gloss Professional Photo Paper also works well for me.
    In both the cases above I notice the packages have changed since I bought the paper, I do not know if this is still the same paper formulation I have.
    For instant drying the HP Advanced Photo paper should be a good choice.  You may need to clean the paper rollers if it does not feed properly.  You can do this by gently releasing the catch on the right side (looking from the front, but the catch is on the back panel).  This will allow the panel to lie flat exposing the rollers.  These can be cleaned with a damp q-tip, remove any buildup on the rollers.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • I need to know if i have to put in the apple id credit card number

    i need to know if i have to put in the apple id credit card number

    Can you be a little more specific about what you are trying to do?

  • What's the wave's number of iPhone 4S speakers? I need to know what's the number because my phone doesn't play any sounds, and I kind of knew what's the problem and sulotion!

    What's the wave's number of iPhone 4S speakers? I need to know what's the number because my phone doesn't play any sounds, and I kind of knew what's the problem and solution!
    What I mean by wave is like radio channels' waves! Ex. 104.1

    Your statement makes no sense.
    Have you tried basic troubleshooting from the User's Guide to rule out some setting in the device preventing the speaker from working?
    Is the mute switch on?
    Do other sounds work?
    Does it produce sound with headphones plugged in?

  • HT203175 I tried to update my Itunes to the news version and now it will not open it says it was installed incorrectly I need to know what to do so I don't lose all my music

    I tried to update my Itunes to the news version and now it will not open it says it was installed incorrectly I need to know what to do so I don't lose all my music

    try with this one
    uninstall all the apple application S/w like Quicktime, Bonjour,
    apple Device Support, Apple Auto update, Itunes etc from your pc,
    Reboot it
    Now download a fresh itunes from apple and try installing
    Reboot it
    If you are having Problem in uninstalling any of the apple application
    try 'revo uninstaller' and uninstall all the apple applications
    mentioned above

  • IPod is using voice over and won't scroll. What setting did my child click? It will allow me to use voice control, but i need to know what's wrong first so I can give the correct command.

    My daughter's iPod is using voice over and won't scroll. What setting did my child click? It will allow me to use voice control, but i need to know what's wrong first so I can give the correct command.

    VoiceOver is an Accessibility feature while Voice Control allows you to control the Music app via voice.
    To turn off VoiceOver triple click the Home button and go to Settings>General>Accessibility and turn it off. Use three fingers to scroll if necessary.
    iPhone: Configuring accessibility features (including VoiceOver and Zoom)
    iOS: Getting started with VoiceOver for accessibility

  • HT4759 hello my frend, i dont know what i have to do. I bought iphone 4 from ebay and it is locked can you help my to unlock ?

    hello my frend, i dont know what i have to do. I bought iphone 4 from ebay and it is locked can you help my to unlock ?
    <Edited By Host>

    Only the wireless carrier to which the iPhone is locked can unlock
    it. Contact them to see if they offer unlocking and if you qualify.
    Apple does not unlock iPhones - wireless carrier has this responsibility.

  • I need to know what was this B-8GD564814752 2433R  Transaction bill to me ba pay pall yestrday?

    I need to know what was this B-8GD564814752 2433R  Transaction bill to me ba pay pall yestrday?

    that is why Iam questioning because I don't know you bill me throught pay pall? you don't put eny description of the objet! any way I did not make any transaction yesterday!!!!!

  • When I want to create apple account in billing and card details page I am stuck and get the message contact itune store support to complete this transaction. Need to know what to do as I can't creat apple id

    When I want to create apple account for my new iphone5 with different apple id than this  in billing and card details page I am stuck and get the message contact itune store support to complete this transaction. Need to know what to do as I can't creat apple id

    The first step would probably be to contact iTunes support as you're being told to do.

Maybe you are looking for

  • Embedding a fill in form on a web page

    I have a personal survey form, (multiple choice and fill-in only) on my web site. I use a commercial web form building site. The submit button sends results viewed by going to their site only. I'd prefer the form be emailed to me. To that end I need

  • Landscape printing with HP

    new MBP with leopard (10.5.4) HP LaserJet 1300 on USB installed HP printer drivers via Software Update a few days ago I am unable to print landscape pages in any program (Office 2008 2004, Pages, Numbers). Looks fine in print preview, but when printe

  • REPORTS ON CRITICAL MATERIALS

    Hi ALL, I m trying to find  CRITICAL MATERIALS. Can any body give me the REPORTS ON CRITICAL MATERIALS.. Thanks n regards..

  • Preview not opening

    Hello, today I went to view a photo from my download folder, my preview icon in the dock changed to a different picture, and now won't open. Any help would be greatly appreciated. Thanx.

  • Nokia 6680 need help!! pc suite

    error1935 . an error occurred during the installation of assembly 'microsoft.MSXML2,publickeytoken="6bd6b9abf345378f",version=4.20.9818.0.", type="win32",processorarchitectur e="x86"' please refer to help and support for more information.hresult :0x8