Welcome to PCForumz.com!
FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

Copy with verify per block

 
Goto page 1, 2
   Hardware Problem Solving Community! (Home) -> PC Storage RSS
Next:  can't access new formatted partition.  
Author Message
Richard Foersom

External


Since: Nov 18, 2007
Posts: 1



(Msg. 1) Posted: Sun Nov 18, 2007 2:49 pm
Post subject: Copy with verify per block
Archived from groups: comp>sys>ibm>pc>hardware>storage (more info?)

With Windows (2000 or XP) is there a way to perform verify and rewrite
as part of copy operations?

What I am looking for is some option where for each e.g. 1MB written it
is check read and rewritten in case of error.

On command line I have tried copy with option /v. This seems to verify
after complete copy. Errors are reported but there are no retry of
writing the blocks found to be wrong.

If not part of Windows is there some utility with copy operation like
that I can use?

This is to debug an unreliable interface not a faulty drive.

TIA, Richard

 >> Stay informed about: Copy with verify per block 
Back to top
Login to vote
Arno Wagner

External


Since: Nov 07, 2003
Posts: 1692



(Msg. 2) Posted: Sun Nov 18, 2007 2:49 pm
Post subject: Re: Copy with verify per block [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Previously Richard Foersom <r.nojunk.foersom.RemoveThis@gmail.nowhere.com> wrote:
> With Windows (2000 or XP) is there a way to perform verify and rewrite
> as part of copy operations?

> What I am looking for is some option where for each e.g. 1MB written it
> is check read and rewritten in case of error.

> On command line I have tried copy with option /v. This seems to verify
> after complete copy. Errors are reported but there are no retry of
> writing the blocks found to be wrong.

> If not part of Windows is there some utility with copy operation like
> that I can use?

> This is to debug an unreliable interface not a faulty drive.

> TIA, Richard

One thing is that this would have to be implemented on a very
low level, maybe the hardware driver. Otherwise it will just
get the date from the buffer-cache and not the device in the
verify. Come to think of it, the /v may very well also get
the copy from the buffer-cache unless the file is larger than
avaliable memory.

As to rewrite on error, I don't think this is available anywhere,
except maybe space-probes and some archiving storage
solutions. Ordinarily write errors are so rare, that typically they do
not call for rewite, but for unit replacement. Also there are many
reasons why a re-write is not a good error recovery strategy. One
exception is some tape technologies, that will verify-read written
blocks with a second head and write again to a different place on the
tape. An other one is MOD drives, were again, the drive does verify
each write and does reallocation and re-write in case of a marginal
read signal. These technologies are designed for long-term storage (I
have an MOD drive) and the error-resilience is implemented in the
drive. The OS never gets to see it, as it typically cannot do this.

As to your problem, I think you may have to disable or bypass the
buffer cache. I am not even sure that is possible. There may be
some option to use a ''raw'' device. An alternative is
to write files so large that they do not fit into memory and then
re-read them.

Arno

 >> Stay informed about: Copy with verify per block 
Back to top
Login to vote
Folkert Rienstra

External


Since: Nov 10, 2003
Posts: 1690



(Msg. 3) Posted: Sun Nov 18, 2007 7:23 pm
Post subject: Re: Copy with verify per block [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Richard Foersom wrote in news:1195393742_465@vo.lu
> With Windows (2000 or XP) is there a way to perform verify and rewrite
> as part of copy operations?
>
> What I am looking for is some option where for each e.g. 1MB written it
> is check read and rewritten in case of error.
>
> On command line I have tried copy with option /v. This seems to verify
> after complete copy. Errors are reported but there are no retry of
> writing the blocks found to be wrong.
>
> If not part of Windows is there some utility with copy operation like
> that I can use?

> This is to debug an unreliable interface not a faulty drive.

Assuming IDE, make sure it runs in UDMA mode.
The interface will not be allowed to corrupt the data.

>
> TIA, Richard
 >> Stay informed about: Copy with verify per block 
Back to top
Login to vote
Alvin Andries

External


Since: Nov 18, 2007
Posts: 2



(Msg. 4) Posted: Sun Nov 18, 2007 8:16 pm
Post subject: Re: Copy with verify per block [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

"Richard Foersom" <r.nojunk.foersom.TakeThisOut@gmail.nowhere.com> wrote in message
news:1195393742_465@vo.lu...
> With Windows (2000 or XP) is there a way to perform verify and rewrite
> as part of copy operations?
>
> What I am looking for is some option where for each e.g. 1MB written it
> is check read and rewritten in case of error.
>
> On command line I have tried copy with option /v. This seems to verify
> after complete copy. Errors are reported but there are no retry of
> writing the blocks found to be wrong.
>
> If not part of Windows is there some utility with copy operation like
> that I can use?
>
> This is to debug an unreliable interface not a faulty drive.
>
> TIA, Richard

Why don't you write your own copy program that
1) copies 1MB of data
2) flushes the I/O
3) reads the 1MB from the destination file and compares it
4) repeats until all data is copied?

Regards,
Alvin.
 >> Stay informed about: Copy with verify per block 
Back to top
Login to vote
Arno Wagner

External


Since: Nov 07, 2003
Posts: 1692



(Msg. 5) Posted: Mon Nov 19, 2007 7:02 am
Post subject: Re: Copy with verify per block [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Previously Alvin Andries <Alvin_Andries.no_spam.RemoveThis@no.spam.versateladsl.be> wrote:

> "Richard Foersom" <r.nojunk.foersom.RemoveThis@gmail.nowhere.com> wrote in message
> news:1195393742_465@vo.lu...
>> With Windows (2000 or XP) is there a way to perform verify and rewrite
>> as part of copy operations?
>>
>> What I am looking for is some option where for each e.g. 1MB written it
>> is check read and rewritten in case of error.
>>
>> On command line I have tried copy with option /v. This seems to verify
>> after complete copy. Errors are reported but there are no retry of
>> writing the blocks found to be wrong.
>>
>> If not part of Windows is there some utility with copy operation like
>> that I can use?
>>
>> This is to debug an unreliable interface not a faulty drive.
>>
>> TIA, Richard

> Why don't you write your own copy program that
> 1) copies 1MB of data
> 2) flushes the I/O
> 3) reads the 1MB from the destination file and compares it
> 4) repeats until all data is copied?

This will still read from cache.

Arno
 >> Stay informed about: Copy with verify per block 
Back to top
Login to vote
Alvin Andries

External


Since: Nov 18, 2007
Posts: 2



(Msg. 6) Posted: Tue Nov 20, 2007 8:06 pm
Post subject: Re: Copy with verify per block [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

"Arno Wagner" <me DeleteThis @privacy.net> wrote in message
news:5qcqoqFv7cmfU1@mid.individual.net...
> Previously Alvin Andries <Alvin_Andries.no_spam DeleteThis @no.spam.versateladsl.be>
wrote:
>
> > "Richard Foersom" <r.nojunk.foersom DeleteThis @gmail.nowhere.com> wrote in message
> > news:1195393742_465@vo.lu...
> >> With Windows (2000 or XP) is there a way to perform verify and rewrite
> >> as part of copy operations?
> >>
> >> What I am looking for is some option where for each e.g. 1MB written it
> >> is check read and rewritten in case of error.
> >>
> >> On command line I have tried copy with option /v. This seems to verify
> >> after complete copy. Errors are reported but there are no retry of
> >> writing the blocks found to be wrong.
> >>
> >> If not part of Windows is there some utility with copy operation like
> >> that I can use?
> >>
> >> This is to debug an unreliable interface not a faulty drive.
> >>
> >> TIA, Richard
>
> > Why don't you write your own copy program that
> > 1) copies 1MB of data
> > 2) flushes the I/O
> > 3) reads the 1MB from the destination file and compares it
> > 4) repeats until all data is copied?
>
> This will still read from cache.
>
> Arno

Can't you flush the cache like "sync" under UNIX? I think I recall a command
to do this for removable storage.

Alvin.
 >> Stay informed about: Copy with verify per block 
Back to top
Login to vote
Eric Gisin

External


Since: Jan 02, 2007
Posts: 37



(Msg. 7) Posted: Tue Nov 20, 2007 8:06 pm
Post subject: Re: Copy with verify per block [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

"Alvin Andries" <Alvin_Andries.no_spam.DeleteThis@no.spam.versateladsl.be> wrote in message
news:47433030$0$12706$bf4948fe@news.tele2.nl...
>
> "Arno Wagner" <me.DeleteThis@privacy.net> wrote in message news:5qcqoqFv7cmfU1@mid.individual.net...
>>
>> > Why don't you write your own copy program that
>> > 1) copies 1MB of data
>> > 2) flushes the I/O
>> > 3) reads the 1MB from the destination file and compares it
>> > 4) repeats until all data is copied?
>>
>> This will still read from cache.
>>
Arnie is a certified moron.
>
In Windows, use FILE_FLAG_NO_BUFFERING to bypass the OS cache.
However, the disk can still read from the cache (several MB now),
and only SCSI has an option to bypass the cache on reads. Does SATA2?

> Can't you flush the cache like "sync" under UNIX? I think I recall a command
> to do this for removable storage.

Safe Removal, or SysInternal's sync.
>
 >> Stay informed about: Copy with verify per block 
Back to top
Login to vote
Arno Wagner

External


Since: Nov 07, 2003
Posts: 1692



(Msg. 8) Posted: Wed Nov 21, 2007 6:17 am
Post subject: Re: Copy with verify per block [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Previously Alvin Andries <Alvin_Andries.no_spam.RemoveThis@no.spam.versateladsl.be> wrote:

> "Arno Wagner" <me.RemoveThis@privacy.net> wrote in message
> news:5qcqoqFv7cmfU1@mid.individual.net...
>> Previously Alvin Andries <Alvin_Andries.no_spam.RemoveThis@no.spam.versateladsl.be>
> wrote:
>>
>> > "Richard Foersom" <r.nojunk.foersom.RemoveThis@gmail.nowhere.com> wrote in message
>> > news:1195393742_465@vo.lu...
>> >> With Windows (2000 or XP) is there a way to perform verify and rewrite
>> >> as part of copy operations?
>> >>
>> >> What I am looking for is some option where for each e.g. 1MB written it
>> >> is check read and rewritten in case of error.
>> >>
>> >> On command line I have tried copy with option /v. This seems to verify
>> >> after complete copy. Errors are reported but there are no retry of
>> >> writing the blocks found to be wrong.
>> >>
>> >> If not part of Windows is there some utility with copy operation like
>> >> that I can use?
>> >>
>> >> This is to debug an unreliable interface not a faulty drive.
>> >>
>> >> TIA, Richard
>>
>> > Why don't you write your own copy program that
>> > 1) copies 1MB of data
>> > 2) flushes the I/O
>> > 3) reads the 1MB from the destination file and compares it
>> > 4) repeats until all data is copied?
>>
>> This will still read from cache.
>>
>> Arno

> Can't you flush the cache like "sync" under UNIX? I think I recall a
> command to do this for removable storage.

This does flush the buffer to disk, but does not clear the read cache.
I am not aware of eny command that emties the read cache.

Arno
 >> Stay informed about: Copy with verify per block 
Back to top
Login to vote
Folkert Rienstra

External


Since: Nov 10, 2003
Posts: 1690



(Msg. 9) Posted: Wed Nov 21, 2007 4:13 pm
Post subject: Re: Copy with verify per block [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Arno Wagner wrote in news:5qi0scFvm4qpU1@mid.individual.net
> Previously Alvin Andries Alvin_Andries.no_spam DeleteThis @no.spam.versateladsl.be wrote:
> > "Arno Wagner" me DeleteThis @privacy.net> wrote in message news:5qcqoqFv7cmfU1@mid.individual.net...
> > > Previously Alvin Andries Alvin_Andries.no_spam DeleteThis @no.spam.versateladsl.be wrote:
> > > > "Richard Foersom" r.nojunk.foersom DeleteThis @gmail.nowhere.com> wrote in message news:1195393742_465@vo.lu...
> > > > > With Windows (2000 or XP) is there a way to perform verify and rewrite
> > > > > as part of copy operations?
> > > > >
> > > > > What I am looking for is some option where for each e.g. 1MB written
> > > > > it is check read and rewritten in case of error.
> > > > >
> > > > > On command line I have tried copy with option /v. This seems to verify
> > > > > after complete copy. Errors are reported but there are no retry of
> > > > > writing the blocks found to be wrong.
> > > > >
> > > > > If not part of Windows is there some utility with copy operation like
> > > > > that I can use?
> > > > >
> > > > > This is to debug an unreliable interface not a faulty drive.
> > > > >
> > > > > TIA, Richard
> > >
> > > > Why don't you write your own copy program that
> > > > 1) copies 1MB of data
> > > > 2) flushes the I/O
> > > > 3) reads the 1MB from the destination file and compares it
> > > > 4) repeats until all data is copied?
> > >
> > > This will still read from cache.
> > >
> > > Arno
>
> > Can't you flush the cache like "sync" under UNIX? I think I recall a
> > command to do this for removable storage.
>
> This does flush the buffer to disk, but does not clear the read cache.

> I am not aware of eny command that emties the read cache.

That's nicer words for you being clueless, babblebot.
The system cache is not the problem as long you can bypass it.

>
> Arno
 >> Stay informed about: Copy with verify per block 
Back to top
Login to vote
R.Wieser

External


Since: Oct 29, 2007
Posts: 6



(Msg. 10) Posted: Thu Nov 22, 2007 12:12 pm
Post subject: Re: Copy with verify per block [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Folkert Rienstra <see_reply-to.TakeThisOut@myweb.nl> schreef in berichtnieuws
47444b65$0$47155$892e7fe2@authen.yellow.readfreenews.net...

> > > Can't you flush the cache like "sync" under UNIX? I think I recall a
> > > command to do this for removable storage.
> >
> > This does flush the buffer to disk, but does not clear the read cache.
>
> > I am not aware of eny command that emties the read cache.
>
> That's nicer words for you being clueless, babblebot.
> The system cache is not the problem as long you can bypass it.

Dear Folkert,

Although your claim is quite true its allso quite worthless to the
poster(s), in more ways than one :

Apart from making it look like you know something the poster(s) do(es) not,
*but not posting that information*, you allso use a condition in your
statement that could, for all we know, evaluate to "false".

You seem to have no problem with defining the a poster as "clueless". But
than how should we define you ? Especially when seeing that your
bad-mouthing is your *only* response in this thread.

Regards,
R.Wieser
 >> Stay informed about: Copy with verify per block 
Back to top
Login to vote
Arno Wagner

External


Since: Nov 07, 2003
Posts: 1692



(Msg. 11) Posted: Thu Nov 22, 2007 12:40 pm
Post subject: Re: Copy with verify per block [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Previously R.Wieser <address.TakeThisOut@not.available> wrote:

> Folkert Rienstra <see_reply-to.TakeThisOut@myweb.nl> schreef in berichtnieuws
> 47444b65$0$47155$892e7fe2@authen.yellow.readfreenews.net...

>> > > Can't you flush the cache like "sync" under UNIX? I think I recall a
>> > > command to do this for removable storage.
>> >
>> > This does flush the buffer to disk, but does not clear the read cache.
>>
>> > I am not aware of eny command that emties the read cache.
>>
>> That's nicer words for you being clueless, babblebot.
>> The system cache is not the problem as long you can bypass it.

> Dear Folkert,

> Although your claim is quite true its allso quite worthless to the
> poster(s), in more ways than one :

> Apart from making it look like you know something the poster(s)
> do(es) not, *but not posting that information*, you allso use a
> condition in your statement that could, for all we know, evaluate to
> "false".

> You seem to have no problem with defining the a poster as
> "clueless". But than how should we define you ? Especially when
> seeing that your bad-mouthing is your *only* response in this
> thread.

It is even more funny: Folkert is not even creative enough to do his
own insults: "babblebot" is stolen from me. It amuses me no end
whenever I see him using it on me.

And the "as long as you can evade the problem, the problem is not an
issue" is typical for him. It allows him to claim superiority without
ever having to give any information that could expose his utter and
complete incompetence.

Just add him to your killfile. I did so a long time ago.

Arno
 >> Stay informed about: Copy with verify per block 
Back to top
Login to vote
Folkert Rienstra

External


Since: Nov 10, 2003
Posts: 1690



(Msg. 12) Posted: Thu Nov 22, 2007 3:26 pm
Post subject: Re: Copy with verify per block [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

R.Wieser wrote in news:47456335$0$4612$e4fe514c@dreader32.news.xs4all.nl
> Folkert Rienstra schreef in berichtnieuws 47444b65$0$47155$892e7fe2@authen.yellow.readfreenews.net...
>
> > > > Can't you flush the cache like "sync" under UNIX? I think I recall a
> > > > command to do this for removable storage.
> > >
> > > This does flush the buffer to disk, but does not clear the read cache.
> >
> > > I am not aware of eny command that emties the read cache.
> >
> > That's nicer words for you being clueless, babblebot.
> > The system cache is not the problem as long you can bypass it.

> Dear Folkert,

Aah yes, a "Dear Folkert" post. How refreshing.

>
> Although your claim is quite true its allso quite worthless to the
> poster(s), in more ways than one :
>
> Apart from making it look like you know something the poster(s) do(es)
> not, *but not posting that information*, you allso use a condition in your
> statement that could, for all we know, evaluate to "false".
>
> You seem to have no problem with defining the a poster as "clueless".
> But than how should we define you ?

> Especially when seeing that your bad-mouthing is your *only* response
> in this thread.

Apart from that being a blatant lie, now see how that makes you soo very
much different from me.

Since Eric Gisin already gave the same answer, which you well know,
it's rather blatantly obvious what you are trying to do here, Troll.

Btw, you make the same spelling mistakes as the Wagner Troll.
Now why is that.

>
> Regards,
> R.Wieser
 >> Stay informed about: Copy with verify per block 
Back to top
Login to vote
ByPass

External


Since: Nov 22, 2007
Posts: 1



(Msg. 13) Posted: Thu Nov 22, 2007 3:36 pm
Post subject: Re: Copy with verify per block [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Just so this message bypasses Arnies killfile and make him curl-up and die.

Eric Gisin wrote in news:13k6l18hs28uea6@corp.supernews.com
> "Alvin Andries" wrote in message news:47433030$0$12706$bf4948fe@news.tele2.nl...
> > "Arno Wagner" me.RemoveThis@privacy.net> wrote in message news:5qcqoqFv7cmfU1@mid.individual.net...
> > >
> > > > Why don't you write your own copy program that
> > > > 1) copies 1MB of data
> > > > 2) flushes the I/O
> > > > 3) reads the 1MB from the destination file and compares it
> > > > 4) repeats until all data is copied?
> > >
> > > This will still read from cache.
> > >
> Arnie is a certified moron.
> >
> In Windows, use FILE_FLAG_NO_BUFFERING to bypass the OS cache.
> However, the disk can still read from the cache (several MB now),
> and only SCSI has an option to bypass the cache on reads. Does SATA2?
>
> > Can't you flush the cache like "sync" under UNIX? I think I recall a command
> > to do this for removable storage.
>
> Safe Removal, or SysInternal's sync.
 >> Stay informed about: Copy with verify per block 
Back to top
Login to vote
Arno Wagner

External


Since: Nov 07, 2003
Posts: 1692



(Msg. 14) Posted: Thu Nov 22, 2007 3:36 pm
Post subject: Re: Copy with verify per block [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Previously ByPass <bash.TakeThisOut@suckers.au> wrote:
> Just so this message bypasses Arnies killfile and make him curl-up and die.

I find it fascinating that you consider me important enough
to go to all this trouble just to get a simple message to me.

May I suggest that ignoring me would probably be more healthy
for you?

Arno


> Eric Gisin wrote in news:13k6l18hs28uea6@corp.supernews.com
>> "Alvin Andries" wrote in message news:47433030$0$12706$bf4948fe@news.tele2.nl...
>> > "Arno Wagner" me.TakeThisOut@privacy.net> wrote in message news:5qcqoqFv7cmfU1@mid.individual.net...
>> > >
>> > > > Why don't you write your own copy program that
>> > > > 1) copies 1MB of data
>> > > > 2) flushes the I/O
>> > > > 3) reads the 1MB from the destination file and compares it
>> > > > 4) repeats until all data is copied?
>> > >
>> > > This will still read from cache.
>> > >
>> Arnie is a certified moron.
>> >
>> In Windows, use FILE_FLAG_NO_BUFFERING to bypass the OS cache.
>> However, the disk can still read from the cache (several MB now),
>> and only SCSI has an option to bypass the cache on reads. Does SATA2?
>>
>> > Can't you flush the cache like "sync" under UNIX? I think I recall a command
>> > to do this for removable storage.
>>
>> Safe Removal, or SysInternal's sync.
 >> Stay informed about: Copy with verify per block 
Back to top
Login to vote
R.Wieser

External


Since: Oct 29, 2007
Posts: 6



(Msg. 15) Posted: Thu Nov 22, 2007 6:09 pm
Post subject: Re: Copy with verify per block [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Folkert Rienstra <see_reply-to.DeleteThis@myweb.nl> schreef in berichtnieuws
47459920$1$47135$892e7fe2@authen.yellow.readfreenews.net...

> > Although your claim is quite true its allso quite worthless to the
> > poster(s), in more ways than one :
> >
> > Apart from making it look like you know something the poster(s) do(es)
> > not, *but not posting that information*, you allso use a condition in
your
> > statement that could, for all we know, evaluate to "false".
> >
> > You seem to have no problem with defining the a poster as "clueless".
> > But than how should we define you ?
>
> > Especially when seeing that your bad-mouthing is your *only* response
> > in this thread.
>
> Apart from that being a blatant lie,

Really ? From your own message (the one I responded to) :
-----
Arno Wagner wrote in news:5qi0scFvm4qpU1@mid.individual.net
> Previously Alvin Andries Alvin_Andries.no_spam.DeleteThis@no.spam.versateladsl.be
wrote:
> > "Arno Wagner" me.DeleteThis@privacy.net> wrote in message
news:5qcqoqFv7cmfU1@mid.individual.net...
> > > Previously Alvin Andries Alvin_Andries.no_spam.DeleteThis@no.spam.versateladsl.be
wrote:
> > > > "Richard Foersom" r.nojunk.foersom.DeleteThis@gmail.nowhere.com> wrote in
message news:1195393742_465@vo.lu...
> > > > > With Windows (2000 or XP) is there a way to perform verify and
rewrite
> > > > > as part of copy operations?
-----
Can you point me where you name is in there ? I thought so.

> now see how that makes you soo very
> much different from me.

If it where true we could have discussed a bit about it. But as it does not
seem to be ...

> Since Eric Gisin already gave the same answer, which you well know,

Oh my, you can *mindread* ? Can you tell me how you do that, as I hear
lots of people can, like you, but I still have not learned that trick.

> it's rather blatantly obvious what you are trying to do here, Troll.

Really ? But if my actions (as you percieve them anyway) are so
"blatantly obvious", what do you call your own ?

You know, I find it quite remarkable that people who claim that they can
peer into the souls and thoughts of people they just met and know virtually
*nothing* about are mostly not able (or willing) to look into their own.

First get your facts straight, and only than try to conclude on them.
Currently you're not even on quicksand, but in pure water.

Ofcourse, if you think that only truth in this world are the thoughts that
bounce between your ears you must either be the happiest, or the saddest
person on this world. But for some reason I don't think you're not happy
....

> Btw, you make the same spelling mistakes as the Wagner Troll.
> Now why is that.

I don't know ? I'm a two-finger typer, and have a small dislexia problem.
How many people on this earth could do & have the same ? And you base
your "you must be the same person" on *that* ?

You know, you made me smile ...

Regards,
R.Wieser
 >> Stay informed about: Copy with verify per block 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
Bad Block - Hi, have a dell laptop (seagate 40gb hd) running win xp ntfs partition since yesterday i have two entries in my event viewer Event ID 7 The device \device\harddisk0\d has a bad block, went onto the seagate website ran the online tests, the results...

setting block mode on IBM LTO - I need some help on how I can check/set the block mode (fixed or variable) on an IBM 3582 LTO2 fibre channel tape library. The unit is posting errors mentioning that the drive is set to fixed mode whilst doing snap backups directly from a NetApp filer. ...

Guessing the CHS of a block device. - Hi, Is there any way to detect the CHS information of a block device by only a software in Linux? I think the analysis of elapse time of reading a block which has various distance of each another. Any comments or similar tries will be helpful. Thank yo...

Acronis True Image 7.0: Image verify, and bootable DVD ima.. - Hello, I am evaluating Acronis True Image 7.0, have previously only used DriveImage and Ghost (2003). True Image so far looks truly impressive. However, I have 2 key questions/concerns: 1) Image verify I created an image, then verified it with the..

burnin read verify errors - SATA dirve - testing a new system here ....my first SATA drive setup...system is xp home 3200xp cpu epox 8rda3 mobo 1 gig ram chn 1 is 80gig and ch 2 is 200 gig s-ata drive......my usual initial test for a new machine is around 8 hours using burnin test..
   Hardware Problem Solving Community! (Home) -> PC Storage All times are: Pacific Time (US & Canada) (change)
Goto page 1, 2
Page 1 of 2

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]