Below is a list of validated BlueSCSI images. They will work on BlueSCSI v2 or v1.
Premade images are handy to just drop onto your SD card and go. Use one of these methods on your modern machine to transfer files & software from places like the Macintosh Garden or Macintosh Repository to your vintage mac.
Create your own custom disk images with Disk Jockey
A collection of blanks, premade, and bootstrap images - https://mega.nz/folder/8hA3AQCJ#pWUq92L70yDXlogy9lk5Dg
If you’d like to use the image with an emulator checkout the Emulators page.
A nice image that works with the Mac Plus with 1000 apps/games - MacPack
bluescsi.ini
setting to work - see the Compatibility page.Bootable System folder is 7.6
See PC Disk Drives
Sharp X68000 SxSI-SCSI HDD Image v2.10 by incrediblehark: https://nfggames.com/forum2/index.php?topic=7231.0
If you have other known good images that work with BlueSCSI please add them here!
Disk Jockey is a free application for macOS and Windows that allows you to create disk images of any size. It can create simple disk images, and more complex ones with multiple partitions (HFS and ProDOS).
You can also create empty disk images on the command line.
The following instructions demonstrates the process using dd on a modern Mac:
dd if=/dev/zero of=example.hda bs=1m count=500
dd: invalid number: '1m'
, you need to capitalize the ‘m’.dd if=/dev/zero of=example.hda bs=1M count=500
count
field defines the number of megabytes (bs=1m
) the total disk image should be.of=example.hda
field.For windows, use this. No need to install, navigate to the folder and execute command in CMD. Your total disk size would be bs*count.
Generated 2024-11-12