S_H44 wrote:
I do not have the snow leopard DVD but I do have the original disks that came with my computer. I put one in and it made some weird noises for a while and then ejected itself. I tried again with the other disk and quickly restarted the computer and held down c, but the same thing happened while on the startup screen.
Sounds like the optical drive may be dirty or defective, or there is an issue with the DVD.
I can't install Etcher on the computer. When I click on it to install it tries to open another webpage that my computer says it can't open.
You could use another computer to "burn" the .iso file to USB using Etcher. Etcher can be run from a Windows computer or a Mac running macOS 10.10+.
You can also use the Terminal app to "burn" the .iso file to a USB drive.
First you need to get the drive identifier for your USB drive. Use the following command to locate the drive identifier (press the "Return" key to activate the command):
diskutil list
Once you have the drive identifier for the USB drive you will use the following command as a template to unmount the USB drive. Replace "diskX" with the actual drive identifier for your USB drive.
diskutil unmountDisk diskX
The next command will "burn" the Parted Magic .iso file to the USB drive.
Here is the template of the command:
sudo dd if=<path-to-PartedMagic.iso> of=/dev/diskX
You can begin by typing the following (do not press "Return" yet):
sudo dd if=
Now drag & drop the Parted Magic .iso file from the Finder onto the Terminal window so it auto-fills the correct path to the .iso file. Then make sure there is at least one space after the path to the .iso file and type the following where you replace "diskX" with the drive identifier for your USB drive:
of=/dev/diskX
Assuming the the Parted Magic .iso file is located in the Downloads folder and is named "pmagic_2013-08-01.iso" and assuming the drive identifier for the USB drive is "disk1", then the command will look something like this:
sudo dd if=/Users/hwtech/Downloads/pmagic_2013-08-01.iso of=/dev/disk1
When you activate the command you will be prompted for your admin password. You will not see any characters on the screen as you type your password so after entering your password press the "Return" key to submit it.