A computer components & hardware forum. HardwareBanter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » HardwareBanter forum » General Hardware & Peripherals » General
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

CHKDSK Problem



 
 
Thread Tools Display Modes
  #1  
Old May 7th 10, 09:37 AM posted to alt.comp.hardware
[email protected]
external usenet poster
 
Posts: 288
Default CHKDSK Problem

I have a 1TB external hard drive (USB) and it has been working sans
problems. Now suddenly this morning, when I booted up cold, Chkdsk
wants to do its thing on it. That's okay, but Chkdsk hung at stage 4
(checking file data) at 0%. I re-booted, and XP came up properly.
Windows Explorer shows the folders and files to appear intact.

What would you do?

Duke
  #2  
Old May 7th 10, 11:17 AM posted to alt.comp.hardware
Paul
external usenet poster
 
Posts: 13,364
Default CHKDSK Problem

wrote:
I have a 1TB external hard drive (USB) and it has been working sans
problems. Now suddenly this morning, when I booted up cold, Chkdsk
wants to do its thing on it. That's okay, but Chkdsk hung at stage 4
(checking file data) at 0%. I re-booted, and XP came up properly.
Windows Explorer shows the folders and files to appear intact.

What would you do?

Duke


I've already "been there and done that".

I had a file system on a partition fail CHKDSK, and I immediately
copied all the data off, tested and cleaned up the disk, then
copied the data back.

You should not allow latent (sleeping) faults to accumulate. Say
you have "one tiny problem" today with the file system. Tomorrow,
another tiny thing happens, but combined with the first problem,
a whole directory goes missing. You'd be ****ed. If you see
known faults developing in a system, don't let them fester.
Fix it, as time allows. Now, moving 1TB of data, over a 30MB/sec
USB2 interface, is going to be slow, so it could take a while
to clean up.

To copy the whole partition, you could use Robocopy, as it keeps a log
of what was done, what failed and so on. I use that for doing whole
partitions. Robocopy will do a number of retries, as specified by
the command line parameters. This is a form of synchronizing utility,
but I usually copy to an empty partition, so there are no files
already on the target disk.

robocopy Y:\ F:\ /mir /copy:datso /dcopy:t /r:3 /w:2 /zb /np /tee /v /log:y_to_f.log

(Command line version XP026 of robocopy, should be included in this...)

http://technet.microsoft.com/en-us/m...spotlight.aspx

Also, always read the reviews on Newegg, for any of these
pre-built drive and enclosure solutions, to see what their
failure rate and characteristics are like. Certain products
in the past, "dropped like flies", in some cases losing
all user files in a matter of two days after purchase. In
other words, a user transfers all their backups to the new
drive, erases the old, only to find two days later, the new
drive is dead and all the files are gone. Always review what
is known about a unit, to decide what your handling policy
should be.

Say, for example, you buy two 1TB units, and they're the
"drop like flies" kind. You would duplicate files on the
two units. That way, you have some opportunity to save
the files, if one unit fails. If you operate the new purchase,
as a 2TB storage facility, and one drive drops dead in two
days, you've lost 1TB worth of files. If a product doesn't
give the appearance of reliability, you can use redundancy
to help ease the situation if there is a failure.

Paul
  #3  
Old May 8th 10, 12:25 AM posted to alt.comp.hardware
[email protected]
external usenet poster
 
Posts: 288
Default CHKDSK Problem

On Fri, 07 May 2010 06:17:16 -0400, Paul wrote:


I've already "been there and done that".

I had a file system on a partition fail CHKDSK, and I immediately
copied all the data off, tested and cleaned up the disk, then
copied the data back.

You should not allow latent (sleeping) faults to accumulate. Say
you have "one tiny problem" today with the file system. Tomorrow,
another tiny thing happens, but combined with the first problem,
a whole directory goes missing. You'd be ****ed. If you see
known faults developing in a system, don't let them fester.
Fix it, as time allows. Now, moving 1TB of data, over a 30MB/sec
USB2 interface, is going to be slow, so it could take a while
to clean up.

To copy the whole partition, you could use Robocopy, as it keeps a log
of what was done, what failed and so on. I use that for doing whole
partitions. Robocopy will do a number of retries, as specified by
the command line parameters. This is a form of synchronizing utility,
but I usually copy to an empty partition, so there are no files
already on the target disk.

robocopy Y:\ F:\ /mir /copy:datso /dcopy:t /r:3 /w:2 /zb /np /tee /v /log:y_to_f.log

(Command line version XP026 of robocopy, should be included in this...)

http://technet.microsoft.com/en-us/m...spotlight.aspx

Also, always read the reviews on Newegg, for any of these
pre-built drive and enclosure solutions, to see what their
failure rate and characteristics are like. Certain products
in the past, "dropped like flies", in some cases losing
all user files in a matter of two days after purchase. In
other words, a user transfers all their backups to the new
drive, erases the old, only to find two days later, the new
drive is dead and all the files are gone. Always review what
is known about a unit, to decide what your handling policy
should be.

Say, for example, you buy two 1TB units, and they're the
"drop like flies" kind. You would duplicate files on the
two units. That way, you have some opportunity to save
the files, if one unit fails. If you operate the new purchase,
as a 2TB storage facility, and one drive drops dead in two
days, you've lost 1TB worth of files. If a product doesn't
give the appearance of reliability, you can use redundancy
to help ease the situation if there is a failure.

Paul



Thanks Paul

Gotta find a good buy on a second 1TB ext hd I guess.

Duke
  #4  
Old May 8th 10, 04:08 AM posted to alt.comp.hardware
Trimble Bracegirdle
external usenet poster
 
Posts: 80
Default CHKDSK Problem

It might (might as in only maybe) just be 'one-of-those-things'
.......temporally loose cable connection ? .etc..

Have you run CHKDSK a 2nd or more times ??? what happened ?

You can get, for free, simple Disc Check & info utility programs from
most of the Disc Manufacturers web sites...e.g. Seagate Tools ...
You need to look at that discs SMART info report.
(\__/)
(='.'=)
(")_(") mouse (whirrrr ! click!...click!...whirr!)


  #5  
Old May 8th 10, 10:13 AM posted to alt.comp.hardware
[email protected]
external usenet poster
 
Posts: 288
Default CHKDSK Problem

On Sat, 8 May 2010 04:08:33 +0100, "Trimble Bracegirdle"
wrote:

It might (might as in only maybe) just be 'one-of-those-things'
......temporally loose cable connection ? .etc..

Have you run CHKDSK a 2nd or more times ??? what happened ?


I did a cold boot this AM, and the CHKDSK did not occur.
I will look for a disk checker though. The drive is a FANTOM 1TB
GF1000EU. I have had it over a year,

Thanks
Duke


You can get, for free, simple Disc Check & info utility programs from
most of the Disc Manufacturers web sites...e.g. Seagate Tools ...
You need to look at that discs SMART info report.
(\__/)
(='.'=)
(")_(") mouse (whirrrr ! click!...click!...whirr!)

  #6  
Old May 8th 10, 10:46 AM posted to alt.comp.hardware
[email protected]
external usenet poster
 
Posts: 288
Default CHKDSK Problem

On Sat, 8 May 2010 04:08:33 +0100, "Trimble Bracegirdle"
wrote:

It might (might as in only maybe) just be 'one-of-those-things'
......temporally loose cable connection ? .etc..

Have you run CHKDSK a 2nd or more times ??? what happened ?

You can get, for free, simple Disc Check & info utility programs from
most of the Disc Manufacturers web sites...e.g. Seagate Tools ...
You need to look at that discs SMART info report.
(\__/)
(='.'=)
(")_(") mouse (whirrrr ! click!...click!...whirr!)


I checked FANTOM support, but failed to find a utility program to
check the drive. Just driver updates, which I fear to apply since I
can't link their drive identification to my drive.
Oh well.
Duke
  #7  
Old May 9th 10, 04:43 AM posted to alt.comp.hardware
Trimble Bracegirdle
external usenet poster
 
Posts: 80
Default CHKDSK Problem

You can run CHKDSK from within Windows at any time you might choose ...
Any of the Disc Manufactures Utilities will work with any disc.
(\__/)
(='.'=) This is Bunny. Copy and paste Bunny into your
(")_(") signature to help him gain world domination.


  #8  
Old July 25th 11, 11:07 PM posted to alt.comp.hardware
Peter Jason
external usenet poster
 
Posts: 160
Default CHKDSK Problem

On Sun, 9 May 2010 04:43:21 +0100, "Trimble Bracegirdle"
wrote:

You can run CHKDSK from within Windows at any time you might choose ...
Any of the Disc Manufactures Utilities will work with any disc.
(\__/)
(='.'=) This is Bunny. Copy and paste Bunny into your
(")_(") signature to help him gain world domination.




My other (XP) machine will not run chkdsk on the C: drive because it
shows the message "Can't open volume for direct access".

All attempts to reload XP, or the repair disk gives the message
"The software you have is younger than this".

Is there any way around this? The various Manufacturers Utilities
do not report any problem.
  #9  
Old July 26th 11, 12:38 AM posted to alt.comp.hardware
Don Phillipson[_4_]
external usenet poster
 
Posts: 320
Default CHKDSK Problem

"Peter Jason" wrote in message
...

My other (XP) machine will not run chkdsk on the C: drive because it
shows the message "Can't open volume for direct access".


This can usually avoided by starting CHKDSK via
/Control Panel / Admin Tools / Computer Management / Disk Management
Select C: in the upper right panel and right click for menu
Select / Tools / Error Checking
This runs CHKDSK

All attempts to reload XP, or the repair disk gives the message
"The software you have is younger than this".


This is normal if your Repair CD finds you have installed
a Service Pack later than that buillt into the CD.

--
Don Phillipson
Carlsbad Springs
(Ottawa, Canada)


  #10  
Old July 26th 11, 12:59 AM posted to alt.comp.hardware
Peter Jason
external usenet poster
 
Posts: 160
Default CHKDSK Problem

On Mon, 25 Jul 2011 19:38:23 -0400, "Don Phillipson"
wrote:

"Peter Jason" wrote in message
.. .

My other (XP) machine will not run chkdsk on the C: drive because it
shows the message "Can't open volume for direct access".


This can usually avoided by starting CHKDSK via
/Control Panel / Admin Tools / Computer Management / Disk Management
Select C: in the upper right panel and right click for menu
Select / Tools / Error Checking
This runs CHKDSK

All attempts to reload XP, or the repair disk gives the message
"The software you have is younger than this".


This is normal if your Repair CD finds you have installed
a Service Pack later than that buillt into the CD.


Thanks, I found the Computer Management and right-clicked on the C: in
the right-hand top panel. I found 'Properties', then 'Tools' and
then 'Check Now'.
I rebooted, but the same problem occurred. Incidentally, the
computer seems stuck on chkdsk because it tries after every reboot.
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Chkdsk.exe Metspitzer Homebuilt PC's 8 January 18th 10 10:08 PM
Chkdsk problem... Louis[_3_] Storage (alternative) 23 July 28th 07 03:54 AM
Hard Disk problem with chkdsk Dan Storage (alternative) 1 April 16th 05 03:11 PM
Any use for "chkdsk /R" ? David Arnstein Storage (alternative) 4 January 9th 04 08:45 PM
CHKDSK /F won't run JD General Hardware 1 October 28th 03 09:26 PM


All times are GMT +1. The time now is 04:16 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 HardwareBanter.
The comments are property of their posters.