beast1x5
Professional
i also forgot to mention im purchasing a jasens customs plexi cut out for my cps3 and im trying to make it look as clean as possible
Any of those links Kardus provided is the correct size for the Plexi kit.i also forgot to mention im purchasing a jasens customs plexi cut out for my cps3 and im trying to make it look as clean as possible
For the sake of someone else who may have had the same issue, what did you do to resolve it?disregard , got it!!!
Hey @keiichi331, PM me the address of this place. I want to go there and pick one up and save a few bucks.*PS: Inertial Computing is where i bought mine from.
So Inertial Computing sent me one and at one point he was going to create a video and show me how to factory reset it because I had the same problem with the board he shipped me. But instead he just shipped me a new board. If you bought yours from him, perhaps you can ask to create a video to show you how it is done and post that info here for everyone.So this was working great for me until I tried to play warzard and got the missing CD drive message. I went back into the utility to double check the settings and after I re-saved everything, the board isn't recognized by my PC. I keep hearing that maybe updating the firmware will work, but the board won't show up at all.
That file is the actual binary executable. Do one of these:I'm trying to download the Mac software from here http://www.codesrc.com/files/scsi2sd/latest/mac/ , but when I open anything it just comes up as a text file with a bunch of junk. Anyone know why this is or the best place to get the software to format this bad boy?
Was messing with this earlier, I pretty much get everything except for the /path/to/source ; how exactly would I find out what to type here?I used the command line tool on Mac initially. It seemed to work, but when I hooked it up to a Windows PC, one of the settings that I'm pretty I had set via the Mac software was loading incorrectly on the Windows machine.
First download the utility:
scsi2sd-util.dmg
And the latest firmware:
firmware_bundle-v4.6.00.scsi2sd
Steps to update firmware:
1. Mount the disk image.
2. Copy the utility from the disk image to your Desktop
3. Launch the Terminal.app application and navigate to your Desktop: cd ~/Desktop
4. Once in the Desktop, launch the "scsi2sd-util" application: ./scsi2sd-util
5. You'll be presented with the UI as documented in this thread earlier, see screenshot.
6. Select File --> Upgrade Firmware... from the Menu bar, see screenshot.
7. Point to the firmware file you downloaded earlier.
Steps to set up board as a CD-ROM:
1. From the General settings tab, make sure "Enable Parity" is checked.
2. From the "Device 1" tab, change the "SCSI ID" to a value of 1
3. Device type should be "CDROM"
4. Device size should be set to 700 MB.
5. Click Save to Device button.
Once that is done, I would disconnect and reconnect the board, and click the "Load from Device" button. The settings you had set previously are read and should display correctly. This is the part that didn't work for me on the Mac, but did on Windows.
Preparing the SD card (Optional):
1. Download and install the SD Formatter: SDFormatter_4.00B.pkg
2. Insert the SD card in your Mac and launch the SD Formatter.
3. If the SD card is still formatted as FAT32, select Quick Format, no need to name the card, click the Format button.
Create the ISO:
1. Mount your source optical disc on your Mac.
2. Launch Terminal.app and enter the following command:
hdiutil makehybrid -iso -joliet -o image.iso /path/to/source
(hdiutil is the name of the command, makehybrid is the action, -iso is the filesystem, -joilet adds the Joliet support to the ISO, -o is the output option, image.iso is the output file, /path/to/source would be your source disc; usually mounted to /Volumes/)
Write ISO to SD card:
1. Still in Terminal.app, type:
diskutil list
2. This will return a list of disks currently attached to your Mac.
3. Look for the disk information that pertains to your SD card, you want the Identifier that pertains to the partition for your SD card, such as /dev/disk4s2
4. Unmount this volume via the commandline and not be ejecting the SD card, diskutil unmount /dev/disk4s2
5. This unmounts the file system which allows us to write the ISO image to this volume, which we do by typing:
sudo dd if=/path/to/image.iso of=/dev/rdisk4s2 bs=1m
(sudo to elevate permissions, dd is the actual command, if=/path/to/image.iso is the input file, of=/dev/rdisk4s2 is the output file. Here we add a letter r before the disk identifier to allow for raw block I/O and bs=1m is the block size. These last two operands are optional but speed up the writing to the SD card.)
Once dd is done, you will not be able to read or write to the card on your Mac unless you reformat it. But you should now be able to insert it into your SCSI2SD board and use it on your CPS3 setup.
Hope this helps.