MultiDrive – free backup, clone & wipe disk utility from Atola Technology

All times are UTC - 5 hours [ DST ]




Post new topic Reply to topic  [ 31 posts ]  Go to page Previous  1, 2
Author Message
 Post subject: Re: HDDScan - Issue
PostPosted: March 31st, 2012, 4:06 
Offline
User avatar

Joined: May 5th, 2004, 20:06
Posts: 2782
Location: England
I know :@) it was a general observation after I read the whole topic :@)


fzabkar wrote:
Mine was to the point, too. :wink: :idea:

_________________
All went well until I plugged the drive in.


Top
 Profile  
 
 Post subject: Re: HDDScan - Issue
PostPosted: March 31st, 2012, 6:09 
Offline

Joined: March 5th, 2012, 18:12
Posts: 39
Location: S.E. Coast ~ England
guru wrote:
Nice and to the point :)


guru wrote:
Nice and to the point :)


guru wrote:
Nice and to the point :)


Someone take a look at guru I think he's suffering with stiction. :mrgreen:

S

_________________
It's always somethin, and if it ain't somethin, it's somethin else - Cptn. Paul Watson.
Image


Top
 Profile  
 
 Post subject: Re: HDDScan - Issue
PostPosted: March 31st, 2012, 6:46 
Offline
User avatar

Joined: May 13th, 2010, 11:17
Posts: 2821
Location: Kuwait
PM Sent.... with details guys

_________________
Kuwait Data Recovery - UNIX GTC
The only reason for time is so that everything doesn't happen at once. By: Albert Einstein


Top
 Profile  
 
 Post subject: Re: HDDScan - Issue
PostPosted: March 31st, 2012, 14:18 
Offline
User avatar

Joined: May 5th, 2004, 20:06
Posts: 2782
Location: England
Yep, my smartphone decided to keep posting.!!




STeALtH wrote:
guru wrote:
Nice and to the point :)


guru wrote:
Nice and to the point :)


guru wrote:
Nice and to the point :)


Someone take a look at guru I think he's suffering with stiction. :mrgreen:

S

_________________
All went well until I plugged the drive in.


Top
 Profile  
 
 Post subject: Re: HDDScan - Issue
PostPosted: April 1st, 2012, 7:33 
Offline
User avatar

Joined: May 13th, 2010, 11:17
Posts: 2821
Location: Kuwait
For some reason i guess that all comments/replies makes sense here
i have 1 more last test to try (not related) hope solves my problem with those

Many thnx guys

_________________
Kuwait Data Recovery - UNIX GTC
The only reason for time is so that everything doesn't happen at once. By: Albert Einstein


Top
 Profile  
 
 Post subject: Re: HDDScan - Issue
PostPosted: April 1st, 2012, 8:35 
Offline

Joined: October 21st, 2007, 8:48
Posts: 1712
Doomer wrote:
Here is the fields of ATA ID command buffer used by HDDScan


Word 21 - cache

pNode.Attributes['Name'] :='Cache size';
if IDEID.RETIRED_21<>0 then
pNode.Attributes['Value'] := IntToStr(IDEID.RETIRED_21 div 2)+' KB'
else pNode.Attributes['Value'] := 'Not Reported';


Word 168 - form factor

pNode := iNode.AddChild('Main');
pNode.Attributes['Name'] :='Nominal Form factor';
case (IDEID.DEVICE_FORM_FACTOR_168 and $F) of
0: pNode.Attributes['Value'] := 'Not Reported';
1: pNode.Attributes['Value'] := '5.25"';
2: pNode.Attributes['Value'] := '3.25"';
3: pNode.Attributes['Value'] := '2.5"';
4: pNode.Attributes['Value'] := '1.8"';
5: pNode.Attributes['Value'] := '<1.8"';
else pNode.Attributes['Value'] := 'Not Reported';
end;

Word 217 - RPM

pNode := iNode.AddChild('Main');
pNode.Attributes['Name'] :='RPM';
case (IDEID.RPM_217) of
//0: pNode.Attributes['Value'] := 'Not Reported';
1: pNode.Attributes['Value'] := 'Solid State Media';
$401..$FFFF:pNode.Attributes['Value'] := IntToStr(IDEID.RPM_217);
else pNode.Attributes['Value'] := 'Not Reported';
end;


I want to get RPM for SSD drives :mrgreen:
Very nice Mr.Doomer.


Top
 Profile  
 
 Post subject: Re: HDDScan - Issue
PostPosted: April 1st, 2012, 15:59 
Offline
User avatar

Joined: September 8th, 2009, 18:21
Posts: 16960
Location: Australia
unknown wrote:
I want to get RPM for SSD drives :mrgreen:

As is already explained by Doomer's code, the ATA standard does distinguish between SSDs and HDDs. See Table 37 in section 7.16.7.77 of the following document:

Working Draft AT Attachment 8 - ATA/ATAPI Command Set (ATA8-ACS):
http://www.t13.org/documents/UploadedDo ... A8-ACS.pdf

Code:
Word 217 indicates the nominal media rotation rate of the device and is defined in table 37.

Value  Description
0001h  Non-rotating media (e.g., solid state device)

At the risk of being accused of spoonfeeding, here is a method by which an end user can determine the RPM of his drive:
http://groups.google.com/group/comp.sys ... 36d4afc140

_________________
A backup a day keeps DR away.


Top
 Profile  
 
 Post subject: Re: HDDScan - Issue
PostPosted: April 2nd, 2012, 8:57 
Offline

Joined: October 21st, 2007, 8:48
Posts: 1712
fzabkar wrote:
As is already explained by Doomer's code, the ATA standard does distinguish between SSDs and HDDs. See Table 37 in section 7.16.7.77 of the following document:Working Draft AT Attachment 8 - ATA/ATAPI Command Set (ATA8-ACS):http://www.t13.org/documents/UploadedDo ... A8-ACS.pdfCode:Word 217 indicates the nominal media rotation rate of the device and is defined in table 37.Value  Description0001h  Non-rotating media (e.g., solid state device)At the risk of being accused of spoonfeeding, here is a method by which an end user can determine the RPM of his drive:http://groups.google.com/group/comp.sys ... 36d4afc140

Hello Mr.Franc. Thanks for your input. But I am just joking. :)


Top
 Profile  
 
 Post subject: Re: HDDScan - Issue
PostPosted: April 2nd, 2012, 9:10 
Offline
User avatar

Joined: August 15th, 2006, 3:01
Posts: 3522
Location: CDRLabs @ Chandigarh [ India ]
unknown wrote:
fzabkar wrote:
As is already explained by Doomer's code, the ATA standard does distinguish between SSDs and HDDs. See Table 37 in section 7.16.7.77 of the following document:Working Draft AT Attachment 8 - ATA/ATAPI Command Set (ATA8-ACS):http://www.t13.org/documents/UploadedDo ... A8-ACS.pdfCode:Word 217 indicates the nominal media rotation rate of the device and is defined in table 37.Value  Description0001h  Non-rotating media (e.g., solid state device)At the risk of being accused of spoonfeeding, here is a method by which an end user can determine the RPM of his drive:http://groups.google.com/group/comp.sys ... 36d4afc140

Hello Mr.Franc. Thanks for your input. But I am just joking. :)


Well,
He did Not Notice the Mr Green Icon lol

_________________
Regards
Amarbir S Dhillon , Chandigarh Data Recovery Labs [India]
Logical,Semi Physical And Physical Data Recovery
Website-> http://www.chandigarhdatarecovery.com


Top
 Profile  
 
 Post subject: Re: HDDScan - Issue
PostPosted: April 4th, 2012, 4:46 
Offline
User avatar

Joined: May 13th, 2010, 11:17
Posts: 2821
Location: Kuwait
@ All

i found the problem/solution after all and why its too damn slow

subject closed

and thnx for the replies/comments

_________________
Kuwait Data Recovery - UNIX GTC
The only reason for time is so that everything doesn't happen at once. By: Albert Einstein


Top
 Profile  
 
 Post subject: Re: HDDScan - Issue
PostPosted: April 9th, 2012, 12:28 
Offline

Joined: April 5th, 2012, 3:48
Posts: 13
Location: Spain
Would be great to read how did you solved your problem einstein9 :wink:


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 31 posts ]  Go to page Previous  1, 2

All times are UTC - 5 hours [ DST ]


Who is online

Users browsing this forum: Google [Bot], shamimdhali and 45 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group