Tools for backing up a Project Oberon SD card image
Posted: Tue Apr 13, 2021 10:20 pm
The tool I use to backup Project Oberon SD card images to my PC using Windows 10 is called DD for Windows:
http://www.chrysocome.net/dd
The command I use to read 320 MB (the 256MB DOS partition and the 64MB Project Oberon file system) from the SD card is, for example:
Where drive 6 is the 'physical drive' number of the SD card on my PC. You can use Windows ‘Disk Management’ tool to find out the actual physical drive number of your SD card drive.
In theory you should just be able to save / restore the Project Oberon section by skipping the first 256 MB. However, the image 'zips' up to about 700KB so it’s hardly worth the hassle of remembering to use a card that already has a 256 MB DOS partition on it.
Unfortunately I haven’t yet been successful using DD to write a saved disk image to the SD card so I use the Win32 Disk Imager software to do that. If anybody has been able to use DD to write to the SD card on their system I’d be interested to know how to do it,
http://www.chrysocome.net/dd
The command I use to read 320 MB (the 256MB DOS partition and the 64MB Project Oberon file system) from the SD card is, for example:
Code: Select all
dd if=\\.\PhysicalDrive6 of=Embedded.img bs=1M count=320 --progress
In theory you should just be able to save / restore the Project Oberon section by skipping the first 256 MB. However, the image 'zips' up to about 700KB so it’s hardly worth the hassle of remembering to use a card that already has a 256 MB DOS partition on it.
Unfortunately I haven’t yet been successful using DD to write a saved disk image to the SD card so I use the Win32 Disk Imager software to do that. If anybody has been able to use DD to write to the SD card on their system I’d be interested to know how to do it,