Switch to full style
Data recovery and disk repair questions and discussions related to old-fashioned SATA, SAS, SCSI, IDE, MFM hard drives - any type of storage device that has moving parts
Post a reply

need ST500DM002 KC45 sysfile 346

April 11th, 2016, 12:40

I need copy of system file 346 (346_3_0 or 346_3_1) for HDD

Model : ST500DM002-1BD142-302
Firmware : KC45
S/N : S2ACKWV4

Thx in Advance

Re: need ST500DM002 KC45 sysfile 346

April 12th, 2016, 3:39

is there no possibility?

Re: need ST500DM002 KC45 sysfile 346

April 12th, 2016, 10:18

i m getting this error

MCMTFileHandler: EXCEPTION: Failed MCMT read request


so pls upload this file 346_3_0

Re: need ST500DM002 KC45 sysfile 346

April 20th, 2016, 7:43

you can use empty file with the same size

Re: need ST500DM002 KC45 sysfile 346

July 29th, 2019, 13:39

Dima_RnD wrote:you can use empty file with the same size


How? Can somebody tell?

Re: need ST500DM002 KC45 sysfile 346

July 29th, 2019, 17:58

zaidkagzi47 wrote:
Dima_RnD wrote:you can use empty file with the same size


How? Can somebody tell?


e.g. with Python:

Code:
size     = 32768
filename = "346_3_1.bin"

with open(filename, "wb") as f:
    for i in range(size):
        f.write(b'\x00')
Post a reply