It's possible to convert .DSK to .NIB using this utility:
https://github.com/slotek/dsk2nib
It must be compiled from source, but it's extremely easy to do, since it's a single .C file with no strange dependencies. I did it in Windows under Linux/Ubuntu terminal mode, but I guess it could be done directly from Mister, although it will likely be slower.
Download the dsk2nib project from Github, open the linux console and compile it this way:
Code: Select all
make all -f Makefile.txt
If the compilation went well, you should have the dsk2nib executable ready. Be sure it's marked executable ( it not, do a chmod +x dsk2nib ), then you can do a batch conversion. Assuming you have a bunch of *.dsk files in the same folder you compiled the utility, this line will convert them all to .nib:
Code: Select all
for f in *.dsk; do ./dsk2nib "$f" "$(basename "$f" .dsk).nib"; done