Need help installing classic/OS X (10.4) on PowerMac G4

I'm hoping someone can help me, my brother bought himself a new computer and gave me his Powermac G4 http://support.apple.com/specs/powermac/PowerMac_G4_Quicksilver2002.html the M8666LL/A model. Now this computer is a mess so I want to completely reformat the drive and install what I need.
Here's my problem, he cannot find his original disk that came with the computer. I want to install OS X and also have Classic run, I need classic for all the games my kids have that only run with OS 9.
Where should I start, I would like to have 10.4 on, can I install 10.4 and classic with retail copies. This is what I have:
Mac OS X v10.1 Retail (Mac OS 9.2 CD included)
Mac OS X v10.2 Retail
Mac OS X v10.3 Retail
Mac OS X v10.4 Retail
Any help would be greatly appreciated.

Sorry, got real busy with work I have not had the chance to follow up. I will be trying this over the weekend, so lets see if I got this right.
Boot from the 10.4 Retail disc, reformat the drive, install 10.4 and then I assume I have to boot from the 9.2 disc to install OS 9 and after when I reboot into 10.4 classicc should work?

Similar Messages

  • Need help installing Ubuntu Studio on my PPC G5 Powermac

    I currently have a Powermac g5 PPC G5 DP 2.3. I have 10.5.8 running fine. I want to set a new partition and want to install Ubuntu Studio as my great love is recording and I'm dying to run Ubuntu as a new toy! What's the BEST build of Ubuntu Studio that will run on a PPC chip? How do I install it - will it boot from the DVD or CD? Also will it give me a dual-boot menu to choose what OS I want to use? Any help would be great as I'm a novice to Linux although I tried out a live CD on my Windows 7 laptop and was liking the new "drug"
    What partitioning software will I need (hopefully to repartition on the fly) and what build of Ubuntu Studio works with a PPC and maybe some instructions is what I'm needing... HELP!
    I do use Ardour and Mixbus on my Mac and actually enjoy it. OS X RULZ but I want to experiment with Ubuntu.

    Hi Pat, it looks like it's Intel only...
    Supported platforms
    IA-32, x86-64
    http://en.wikipedia.org/wiki/Ubuntu_Studio
    No idea if the original Ubuntu Studio 8.04 was ever ported to PPC.

  • I need help installing windows 8.1 on my new laptop help me

    i need help installing windows 8.1 on my new laptop Hp Pavilion g7-2298nr help me it installs from store no problem then ask to restart then i restart it it gets stuck at windows logo and drive light on side not blinking i have shut down then it starts fine how to fix this problem so i can get it to install i need do it tonight reply before 8pm

    Hello,
    Thank you for posting in the HP Support Forum.
    Your computer comes with Win 8 pre-installed but one of the steps to install/run Windows 8.1 is having updated drivers for Windows 8.1
    Please, go to Control Panel -> System (or Start -> type winver and open) and verify what is your current version - if it is Windows 8 or 8.1
    Windows 8 is version  6.2.x
    Windows 8.1 is version  6.3.x
    If Windows 8 in place, then , please read this article and enroll in the steps:
    http://www8.hp.com/us/en/pdf/instruct_update_win8.​1_EN_tcm_245_1508074.pdf
    Update to the latest drivers prior and post installation respectively for win 8/8.1 :
    http://support.hp.com/us-en/product/HP-Pavilion-g7​-2200-Notebook-PC-series/5296086/model/5333384/dri​...
    Best wishes,
    IT_WinSec
    Hewlett-Packard employee | HP Enterprise Services
    Although I work for HP, I express my personal opinion.
    Visit www.hp.com/makeitmatter
    --Say "Thanks" by clicking the Kudos Thumb Up in the post that you find useful.
    --Please mark the post that solves your problem as "Accepted Solution"

  • Need help on classical report

    hi friends i need help on classical reports,
    sold-party,
    material
    sales and distrubitutation channel ,division,
    incoming orders,order number,invoice ,credit,
    i need sub totals and final total of invoice and each customer should display in new page .

    Hi
    Use the Tables KNA1,VBAk,VBAP,VBRK and VBRP and design the report
    see the sample report using KNA1,VBAK and VBAP.
    REPORT ZTEJ_INTAB1 LINE-SIZE 103 LINE-COUNT 35(5) NO STANDARD PAGE
    HEADING.
    *TABLES DECLARATION
    TABLES : KNA1, VBAK, VBAP.
    *SELECT OPTIONS
    SELECT-OPTIONS: CUST_NO FOR KNA1-KUNNR.
    *INITIALIZATION
    INITIALIZATION.
    CUST_NO-LOW = '01'.
    CUST_NO-HIGH = '5000'.
    CUST_NO-SIGN = 'I'.
    CUST_NO-OPTION = 'BT'.
    APPEND CUST_NO.
    *SELECTION SCREEN VALIDATION
    AT SELECTION-SCREEN ON CUST_NO.
    LOOP AT SCREEN.
    IF CUST_NO-LOW < 1 OR CUST_NO-HIGH > 5000.
    MESSAGE E001(ZTJ1).
    ENDIF.
    ENDLOOP.
    *BASIC LIST SELECTION
    START-OF-SELECTION.
    SELECT KUNNR NAME1 ORT01 LAND1 INTO
    (KNA1-KUNNR, KNA1-NAME1,KNA1-ORT01,KNA1-LAND1)
    FROM KNA1
    WHERE KUNNR IN CUST_NO.
    WRITE:/1 SY-VLINE,
    KNA1-KUNNR UNDER 'CUSTOMER NO.' HOTSPOT ON,
    16 SY-VLINE,
    KNA1-NAME1 UNDER 'NAME',
    61 SY-VLINE,
    KNA1-ORT01 UNDER 'CITY',
    86 SY-VLINE,
    KNA1-LAND1 UNDER 'COUNTRY',
    103 SY-VLINE.
    HIDE: KNA1-KUNNR.
    ENDSELECT.
    ULINE.
    *SECONDARY LIST ACCESS
    AT user-command.
    IF SY-UCOMM = 'IONE'.
    PERFORM SALES_ORD.
    ENDIF.
    IF SY-UCOMM = 'ITWO'.
    PERFORM ITEM_DET.
    ENDIF.
    *TOP OF PAGE
    TOP-OF-PAGE.
    FORMAT COLOR 1.
    WRITE : 'CUSTOMER DETAILS'.
    FORMAT COLOR 1 OFF.
    ULINE.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'CUSTOMER NO.',
    16 SY-VLINE,
    18 'NAME',
    61 SY-VLINE,
    63 'CITY',
    86 SY-VLINE,
    88 'COUNTRY',
    103 SY-VLINE.
    ULINE.
    FORMAT COLOR 3 OFF.
    *TOP OF PAGE FOR SECONDARY LISTS
    TOP-OF-PAGE DURING LINE-SELECTION.
    *TOP OF PAGE FOR 1ST SECONDARY LIST
    IF SY-UCOMM = 'IONE'.
    ULINE.
    FORMAT COLOR 1.
    WRITE : 'SALES ORDER DETAILS'.
    ULINE.
    FORMAT COLOR 1 OFF.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'CUSTOMER NO.',
    16 SY-VLINE,
    18 'SALES ORDER NO.',
    40 SY-VLINE,
    42 'DATE',
    60 SY-VLINE,
    62 'CREATOR',
    85 SY-VLINE,
    87 'DOC DATE',
    103 SY-VLINE.
    ULINE.
    ENDIF.
    FORMAT COLOR 3 OFF.
    *TOP OF PAGE FOR 2ND SECONDARY LIST
    IF SY-UCOMM = 'ITWO'.
    ULINE.
    FORMAT COLOR 1.
    WRITE : 'ITEM DETAILS'.
    ULINE.
    FORMAT COLOR 1 OFF.
    FORMAT COLOR 3.
    WRITE : 1 SY-VLINE,
    3 'SALES ORDER NO.',
    40 SY-VLINE,
    42 'SALES ITEM NO.',
    60 SY-VLINE,
    62 'ORDER QUANTITY',
    103 SY-VLINE.
    ULINE.
    ENDIF.
    FORMAT COLOR 3 OFF.
    *END OF PAGE
    END-OF-PAGE.
    ULINE.
    WRITE :'USER :',SY-UNAME,/,'DATE :', SY-DATUM, 85 'END OF PAGE:',
    SY-PAGNO.
    SKIP.
    *& Form SALES_ORD
    *& FIRST SECONDARY LIST FORM
    FORM SALES_ORD .
    SELECT KUNNR VBELN ERDAT ERNAM AUDAT INTO
    (VBAK-KUNNR, VBAK-VBELN, VBAK-ERDAT, VBAK-ERNAM, VBAK-AUDAT)
    FROM VBAK
    WHERE KUNNR = KNA1-KUNNR.
    WRITE:/1 SY-VLINE,
    VBAK-KUNNR UNDER 'CUSTOMER NO.' HOTSPOT ON,
    16 SY-VLINE,
    VBAK-VBELN UNDER 'SALES ORDER NO.' HOTSPOT ON,
    40 SY-VLINE,
    VBAK-ERDAT UNDER 'DATE',
    60 SY-VLINE,
    VBAK-ERNAM UNDER 'CREATOR',
    85 SY-VLINE,
    VBAK-AUDAT UNDER 'DOC DATE',
    103 SY-VLINE.
    HIDE : VBAK-VBELN.
    ENDSELECT.
    ULINE.
    ENDFORM. " SALES_ORD
    *& Form ITEM_DET
    *& SECOND SECONDARY LIST FORM
    FORM ITEM_DET .
    SELECT VBELN POSNR KWMENG INTO
    (VBAP-VBELN, VBAP-POSNR, VBAP-KWMENG)
    FROM VBAP
    WHERE VBELN = VBAK-VBELN.
    WRITE : /1 SY-VLINE,
    VBAP-VBELN UNDER 'SALES ORDER NO.',
    40 SY-VLINE,
    VBAP-POSNR UNDER 'SALES ITEM NO.',
    60 SY-VLINE,
    VBAP-KWMENG UNDER 'ORDER QUANTITY',
    103 SY-VLINE.
    ENDSELECT.
    ULINE.
    ENDFORM. " ITEM_DET
    REPORT demo_list_at_pf.
    START-OF-SELECTION.
    WRITE 'Basic List, Press PF5, PF6, PF7, or PF8'.
    AT pf5.
    PERFORM out.
    AT pf6.
    PERFORM out.
    AT pf7.
    PERFORM out.
    AT pf8.
    PERFORM out.
    FORM out.
    WRITE: 'Secondary List by PF-Key Selection',
    / 'SY-LSIND =', sy-lsind,
    / 'SY-UCOMM =', sy-ucomm.
    ENDFORM.
    After executing the program, the system displays the basic list. The user can press the function keys F5 , F6 , F7 , and F8 to create secondary lists. If, for example, the 14th key the user presses is F6 , the output on the displayed secondary list looks as follows:
    Secondary List by PF-Key Selection
    SY-LSIND = 14
    SY-UCOMM = PF06
    Example for AT USER-COMMAND.
    REPORT demo_list_at_user_command NO STANDARD PAGE HEADING.
    START-OF-SELECTION.
    WRITE: 'Basic List',
    / 'SY-LSIND:', sy-lsind.
    TOP-OF-PAGE.
    WRITE 'Top-of-Page'.
    ULINE.
    TOP-OF-PAGE DURING LINE-SELECTION.
    CASE sy-pfkey.
    WHEN 'TEST'.
    WRITE 'Self-defined GUI for Function Codes'.
    ULINE.
    ENDCASE.
    AT LINE-SELECTION.
    SET PF-STATUS 'TEST' EXCLUDING 'PICK'.
    PERFORM out.
    sy-lsind = sy-lsind - 1.
    AT USER-COMMAND.
    CASE sy-ucomm.
    WHEN 'FC1'.
    PERFORM out.
    WRITE / 'Button FUN 1 was pressed'.
    WHEN 'FC2'.
    PERFORM out.
    WRITE / 'Button FUN 2 was pressed'.
    WHEN 'FC3'.
    PERFORM out.
    WRITE / 'Button FUN 3 was pressed'.
    WHEN 'FC4'.
    PERFORM out.
    WRITE / 'Button FUN 4 was pressed'.
    WHEN 'FC5'.
    PERFORM out.
    WRITE / 'Button FUN 5 was pressed'.
    ENDCASE.
    sy-lsind = sy-lsind - 1.
    FORM out.
    WRITE: 'Secondary List',
    / 'SY-LSIND:', sy-lsind,
    / 'SY-PFKEY:', sy-pfkey.
    ENDFORM.
    When you run the program, the system displays the following basic list with a the page header defined in the program:
    You can trigger the AT LINE-SELECTION event by double-clicking a line. The system sets the status TEST and deactivates the function code PICK. The status TEST contains function codes FC1 to FC5. These are assigned to pushbuttons in the application toolbar. The page header of the detail list depends on the status.
    Here, double-clicking a line no longer triggers an event. However, there is now an application toolbar containing five user-defined pushbuttons. You can use these to trigger the AT USER-COMMAND event. The CASE statement contains a different reaction for each pushbutton.
    For each interactive event, the system decreases the SY-LSIND system field by one, thus canceling out the automatic increase. All detail lists now have the same level as the basic list and thus overwrite it. While the detail list is being created, SY-LSIND still has the value 1.
    Reward points for useful Answers
    Regards
    Anji

  • I need help installing microsoft silverlight on my macbook pro. i deleted it and redownloaded it but i cannot install it on my macintosh hd disk, because it says it is already somewhere else on the computer after i deleted it. need help!

    Hi i need help installing micrsoft silverlight it just wont install because of errors

    Removing Silverlight - MAC | Microsoft Silverlight

  • Needing help installing a downloaded version of cs2

    Hi, I am needing help installing a downloaded version of cs2 as I have purchased this product in the past, can anyone help me?

    Error: Activation Server Unavailable | CS2, Acrobat 7, Audition 3

  • Need help installing adobe flashplayer

    Need help installing adobe flashplayer for nokia Lumina 710 windows 7 phone

    Flash Player does not require Java.  But JavaScript needs to be enabled to run it.
    See if anything in here helps: http://forums.adobe.com/thread/1267823

  • Hi I need help installing my creative suite 5 web premium cd on to my new pc which is windows 8 64bit os, thanks

    Hi I need help installing my creative suite 5 web premium cd on to my new pc which is windows 8 64 bit os, thanks

    copy the all the cds' contents to one desktop directory.  install from that directory.

  • Need help installing CC desktop app.

    Need help installing CC desktop app. I tryed to update Creative Cloud, like it asked for. It didn't update, so I uninstalled CC app. Now it will not re install/ I ran AdobeCreativeCloudCleanerTool also, so now all my apps are gone.

    I've got the same issue.  Adobe only allows me to go to these forums instead of support chat.  I have tried every single option that a google search suggests...

  • Need help installing Snow Leopard.

    Need help installing Snow Leopard on a 2009 iMac. Hard drive is only choice for location and message says hard drive can't be used because it is used for Time Machine backups. Ultimate goal is to upgrade to OS 10.6.8.

    Check to see if you have a file called backup.backupdb
    If you do that means at some time in the past Time Machine was configure to backup to that drive
    If that is not where you want your backup to to go, and it should not be stored there any way, then delete it and the install should work then.
    Allan

  • Need help installing snow leopard on mac mini 10.5.8 intel based

    I need help need help installing snow leopard on mac mini 10.5.8 intel based so if u kno how pls message me thanks
    <Email Edited by Host>

    You need to purchase the upgrade disk (it is a DVD). Then just put it in and run the installer. When it was first released it was $29 USD, do not know if the price has changed or not.
    The usual precautions about backing up your data apply. In fact I would recommend either making a Disk Image of your current boot drive or using something like Carbon Copy Cloner to copy it to an external drive. I upgraded 5 machines from Leopard to Snow Leopard without any issues, but better to be safe than sorry.

  • Need help Installing Flash player 10.3 for firefox. It stops at 50%

    So I have Windows Vista Basic Home, I tried updating my Flash version in firefox because it was out of date, but everytime it start downloading it , then I get the a message that says "Error " Appliation in use."  I uninstalled it and followed all the suggestions on the websites nothing is working. I even  uninstall google chrome thinking it was the problem but I'm still having that problem so I really don't know what to do because now the only place Flash player is installed seems to be Google chrome that I had to redoawload, but everywhere else tells me that I need to install it.

    RE-RE-RE REPITO, NO ENTIENDO NADA DE INGLES, PARA ESTE IDIOMA SOY COMPLETAMENTE NULA, POR FAVOR TODOS LOS MENSAJES, NOTAS, ECT., MANDEN EN ESPAÑOL.
    Date: Thu, 29 Sep 2011 15:13:29 -0600
    From: [email protected]
    To: [email protected]
    Subject: Need help Installing Flash player 10.3 for firefox. It stops at 50%
        Re: Need help Installing Flash player 10.3 for firefox. It stops at 50%
        created by Kpiebo in Installing Flash Player - View the full discussion
    I have been at it since yesterday and it's still not working.
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/3945878#3945878
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/3945878#3945878. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Installing Flash Player by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • I need help installing  photoshop pease help !

    i need help installing photoshop

    I'm sure you do, but in order to get it, you will have to provide some more info on your computer and what version of Photoshop exactly as well what is possibly going wrong...
    Mylenium

  • Need help installing Adobe Pro 9 Product code [removed by moderator] to my new PC tower.

    Need help installing Adobe Pro 9 to my new PC.

    Hi albertc40027908,
    You might need to deactivate Acrobat 9 from your old machine.
    Then, install the software from a CD (if you have) and activate with the same serial number.
    If you don't have a CD, then you might install Acrobat 9 pro from the below mentioned link:
    Download Acrobat products | 9, 8
    Hope this helps.
    Regards,
    Anubha

  • Need help installing adobe flash on mountain lion o/s for my mac

    need help installing adobe flash on my mac with mountain lion operating system

    What kind of problem are you running into?  Have you gone to http://get.adobe.com/flashplayer?
    Here's a help document that might assist you with common problems.  If you continue to encounter problems, please post back.
    Macintosh Installation Help

Maybe you are looking for

  • Jar file and classpath problem

    I0m writing a program that use the kunststoff.jar Look&Feel. Now I would like to put all I'm writing into a jar file but I always have a NoClassFoundException when I try to start my application. here is a MANIFEST:ME I'm using: Manifest-Version: 1.0

  • Pages wish list

    After spending time with Pages I have found somethings I feel are lacking and hope are included in future upgrades. Here are my short list of things I hope are in the next upgrade. Page Layout Feature: Have the ability to import multiple documents in

  • Mix Album Organization

    I have imported some mp3's to create a mix album on iTunes. iTunes is organising the songs alphabetically by the name of the artist. How can i change this to organise alphabetically by the track name?

  • Comparing 2 hierarchies in oracle

    How to compare 2 hierarchies in oracle. if there are any analytical functions please share to me.

  • AMS and Vmware vSphere virtualization

    Hi, We are now running AMS 5 on Centos and on hardware machine with  2 quad core and 16GB memory. Does AMS 5 can be install and run on virtual server like Vmware vSphere ? I'll be appreciate to also get official answer form adobe representative. Than