Page 1 of 1
newbie question
Posted: June 12th, 2016, 7:38
by DaMa
Hi
I have found firmware for my hard disk and in it is ROM.bin and *.MOD files. How can I convert it to PCR and RPM files and import it in PC-3000 UDMA?
Thanks
Re: newbie question
Posted: June 12th, 2016, 14:36
by jermy
Just replace the extension
Re: newbie question
Posted: June 12th, 2016, 16:34
by fzabkar
- Code:
C:\>md test
C:\>cd test
C:\test>echo file1 > file1.mod
C:\test>echo file2 > file2.mod
C:\test>dir
. <DIR> 06-13-16 6:29a .
.. <DIR> 06-13-16 6:29a ..
FILE1 MOD 8 06-13-16 6:29a file1.mod
FILE2 MOD 8 06-13-16 6:29a file2.mod
C:\test>ren *.mod *.rpm
C:\test>dir
. <DIR> 06-13-16 6:29a .
.. <DIR> 06-13-16 6:29a ..
FILE2 RPM 8 06-13-16 6:29a file2.rpm
FILE1 RPM 8 06-13-16 6:29a file1.rpm
Re: newbie question
Posted: June 13th, 2016, 4:29
by DaMa
Thanks you