Amiga.org
Amiga computer related discussion => Amiga Software Issues and Discussion => Topic started by: orange on February 12, 2017, 02:39:54 PM
-
I need to format a DD floppy with 5 sectors per track, tracksize is 5120, how to do it on Amiga?
thanks.
-
I need to format a DD floppy with 5 sectors per track, tracksize is 5120, how to do it on Amiga?
thanks.
This information is really not sufficient to say anything. The number of sectors per track does not define the format, or the framing. So, is this for example PC type of disk format?
-
This information is really not sufficient to say anything. The number of sectors per track does not define the format, or the framing. So, is this for example PC type of disk format?
Thanks for the reply. Its for some old CPM computer. RAW image is 800Kb exactly.
On linux PC, I can read tracks with:
fdrawcmd read 0 0 0 17 3 0 0x1b 0xff length=5120 rate=2 need_seek track=0
-
Thanks for the reply. Its for some old CPM computer. RAW image is 800Kb exactly.
On linux PC, I can read tracks with:
fdrawcmd read 0 0 0 17 3 0 0x1b 0xff length=5120 rate=2 need_seek track=0
Well, so this should be an IBM encoding then. If I read your data correctly, then this is a format with 1024 bytes/sector, which is a bit unusual. The above command also specifies 0 sectors/track. But for the time being, let's assume that the value you gave me (5 sectors per track) is correct. Then, a mount list for this particular format should read as follows:
FileSystem = L:Fat95
Device = mfm.device
Flags = 1
Unit = 0
Surfaces = 2
SectorsPerTrack = 5
SectorSize = 1024
Reserved = 1
Interleave = 0
LowCyl = 0
HighCyl = 79
Buffers = 5
BufMemType = 0
StackSize = 2048
Priority = 9
GlobVec = -1
DosType = 0x46415400
CrossDos and the mfm.device can read a lot of formats, but whether the above is correct I can only guess. (Surprisingly, the mfm.device can be really configured through the mount entry and can change the format based on this.)
Give this a nice name (e.g. SP0) and try to mount it. Whether it works... no idea.
-
Even if you get the mountlist correct, the FAT95 filesystem will not read CPM formatted disks.
I think you can use XFS filesystem to do that.
http://aminet.net/package/disk/misc/xfs
Are you trying to write images to read data on the Amiga or write the images back to floppy on the Amiga?
-
thanks.
I would like to make a .raw image (with tsgui, dcp, dic or similar) as a backup and later write copies. I had managed to make one with MFMWarp, but its too large.
I've tried fd.device from xfs, but it seems to always use 512byte sector size.
will try mfm.device