This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| computing:ppcnix [2016/04/24 04:34] – oemb1905 | computing:ppcnix [2017/10/14 02:44] (current) – removed oemb1905 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | #PPC Darwin Basics | ||
| - | #Jonathan Haack | ||
| - | # | ||
| - | # | ||
| - | |||
| - | ------------------------------------------- | ||
| - | |||
| - | #Boot from USB with the following | ||
| - | |||
| - | sudo dd if=[enter path of .iso here no braces] of=[enter disk identifier here, e.g., /dev/disk5 here] | ||
| - | |||
| - | #In order to know which disk identifier to use, please run: | ||
| - | |||
| - | diskutil list | ||
| - | |||
| - | #In order to format the volume, please run: | ||
| - | |||
| - | diskutil eraseDisk [JHFS+ or FAT32, etc here] [Name of new partition] [disk identifier, i.e., /dev/disk5] | ||
| - | |||
| - | #In order to run the " | ||
| - | |||
| - | diskutil unmountDisk [disk identifier] | ||
| - | |||
| - | #Now, we need to copy the .iso over to make it bottable ... here is an example from PPC for Ubuntu: | ||
| - | |||
| - | sudo dd if=/ | ||
| - | |||
| - | #Here is an example using Tails installer (this is not PPC, but just shows different usage of dd command): | ||
| - | |||
| - | dd if=/ | ||
| - | |||
| - | #Once the USB stick is ready with the .iso of your choice, now you need to plug it in to the PPC machine and boot from it: | ||
| - | #Power on the device while holding down the command, option, o, and f buttons as this will take you to Open Firmware | ||
| - | #Once in OpenFirmware, | ||
| - | |||
| - | probe-usb | ||
| - | |||
| - | To boot the USB device you can usually use one of the following commands (on the author' | ||
| - | |||
| - | boot usb0/ | ||
| - | boot usb1/ | ||
| - | |||
| - | #boot usb2 etc., etc. | ||
| - | |||
| - | #This will now boot from the USB and take you to the Yaboot bootloader by default - once there, commands differ for each .iso | ||
| - | |||
| - | #For MintPPC, you are using a mini-ISO only, and so you enter: | ||
| - | |||
| - | install url=mintppc.org | ||
| - | |||
| - | #for Lubuntu text installer (full .iso but alternate text version) you use: | ||
| - | |||
| - | install | ||
| - | |||
| - | #For Ubuntu mini ISO, for G3 and G4, you use: | ||
| - | |||
| - | cli   | ||
| - | |||
| - | #and | ||
| - | |||
| - | cli-expert | ||
| - | |||
| - | #For Ubuntu mini ISO, for 64bit G5, you use: | ||
| - | |||
| - | cli64 | ||
| - | |||
| - | #and | ||
| - | |||
| - | cli64-expert | ||
| - | |||
| - | ------------------------------------------- | ||
| - | |||
| - | #To list all computer profile specifics: | ||
| - | |||
| - | cat / | ||
| - | |||
| - | |||
| - | |||