April 16th, 2023, 6:43
April 16th, 2023, 7:38
April 16th, 2023, 8:22
Lardman wrote:Why not just tell us what the second dr lab have told you, on track wasn't it.
April 16th, 2023, 13:31
April 17th, 2023, 2:08
fzabkar wrote:The drive writes 100 tracks, say, on head 0, then switches to head 1 and writes 100 more tracks, then 100 tracks on head 2, and back to head 0 for the next 100 tracks, and so on.
This "serpentine" tracking is described here:
https://hddscan.com/doc/HDD_Tracks_and_Zones.html
April 17th, 2023, 8:03
April 17th, 2023, 12:15
terminator2 wrote:1) At start which head out of many reads SA and firmware - If it is damaged then what
terminator2 wrote:2) After how many tracks head switches - if it is 100 tracks for 10TB disk then heads will be violently change so fast they might wear out fast.
terminator2 wrote:3) Any video showing hows heads and platters are synchronised -how single file is divided across many platters and how different heads read same file.
April 19th, 2023, 2:37
Doomer wrote:terminator2 wrote:1) At start which head out of many reads SA and firmware - If it is damaged then what
On Seagate drives SA is on logical heads 0 and 1, and sometimes (rarely) on logical H2 (but not on Barracuda drives).
"Logical head" is important here, if a Seagate drive has the very bottom head present (which is physical H0) then very likely the number(index) of physical and logical heads are the same, otherwise you need to keep in mind that physical and logical head number might not be the sameterminator2 wrote:2) After how many tracks head switches - if it is 100 tracks for 10TB disk then heads will be violently change so fast they might wear out fast.
it really depends on the drive, if you can give us full model number and the PN then some of us here might be able to be more specificterminator2 wrote:3) Any video showing hows heads and platters are synchronised -how single file is divided across many platters and how different heads read same file.
the files are written by the file system driver, and the file system driver has no clue about where in the drive it writes, it has no idea that the drive has heads and how many, or any clue about the serpentine writing, so there is no relation between a file and a physical head.
However, linear file writing will in general follow the serpentine file writing on most of the Seagate drives
April 19th, 2023, 11:48
terminator2 wrote:I still dont know difference between physical and logical heads as all I know that disk has read write heads physically present.
PH LH
0 -> 0
1 -> 1
2 -> 2
3 -> 3
PH LH
1 -> 0
3 -> 1
4 -> 2
5 -> 3
April 20th, 2023, 0:05
Doomer wrote:terminator2 wrote:I still dont know difference between physical and logical heads as all I know that disk has read write heads physically present.
Physical heads are the heads that are physically present on the HSA.
Logical heads always starts from 0 and and are always consecutive. The drive uses logical heads to read any data from tracks.
for example
- Code:
PH LH
0 -> 0
1 -> 1
2 -> 2
3 -> 3
or
- Code:
PH LH
1 -> 0
3 -> 1
4 -> 2
5 -> 3
April 20th, 2023, 0:08
April 21st, 2023, 6:21
terminator2 wrote:Doomer wrote:terminator2 wrote:I still dont know difference between physical and logical heads as all I know that disk has read write heads physically present.
Physical heads are the heads that are physically present on the HSA.
Logical heads always starts from 0 and and are always consecutive. The drive uses logical heads to read any data from tracks.
for example
- Code:
PH LH
0 -> 0
1 -> 1
2 -> 2
3 -> 3
or
- Code:
PH LH
1 -> 0
3 -> 1
4 -> 2
5 -> 3
Thanks .But I haven't understood anything yet.I will dig deeper.
April 21st, 2023, 23:12
labtech wrote:terminator2 wrote:Doomer wrote:terminator2 wrote:I still dont know difference between physical and logical heads as all I know that disk has read write heads physically present.
Physical heads are the heads that are physically present on the HSA.
Logical heads always starts from 0 and and are always consecutive. The drive uses logical heads to read any data from tracks.
for example
- Code:
PH LH
0 -> 0
1 -> 1
2 -> 2
3 -> 3
or
- Code:
PH LH
1 -> 0
3 -> 1
4 -> 2
5 -> 3
Thanks .But I haven't understood anything yet.I will dig deeper.
@terminator2
On drives with no missing/deactivated heads, as on the 4 heads drive example above 0,1, 2, 3, the physical heads map will be consecutive from the bottom: Head 0, Head 1, Head 2 and Head 3. Therefore, the software tool (Data Extractor) will create a logical map that will match the physical heads map exactly.
On drives that have missing/deactivated heads, using the physical head map example above of 1,3,4,5, it means head 0 and head 2 are physically missing/deactivated. As a result, Data Extractor won't reflect those missing heads, so in the logical map, the heads will be shifted. So, logical head 0 will be the first logical head, matching physical head 1, as that is the first active physical head. And so on.
It would be nice if Data Extractor could VISUALLY match the logical map to the physical map exactly even with those odd maps, but they are not programmed that way. Not sure if it is even possible, as programming is not my strength.
April 21st, 2023, 23:19
labtech wrote:terminator2 wrote:Doomer wrote:terminator2 wrote:I still dont know difference between physical and logical heads as all I know that disk has read write heads physically present.
Physical heads are the heads that are physically present on the HSA.
Logical heads always starts from 0 and and are always consecutive. The drive uses logical heads to read any data from tracks.
for example
- Code:
PH LH
0 -> 0
1 -> 1
2 -> 2
3 -> 3
or
- Code:
PH LH
1 -> 0
3 -> 1
4 -> 2
5 -> 3
Thanks .But I haven't understood anything yet.I will dig deeper.
@terminator2
On drives with no missing/deactivated heads, as on the 4 heads drive example above 0,1, 2, 3, the physical heads map will be consecutive from the bottom: Head 0, Head 1, Head 2 and Head 3. Therefore, the software tool (Data Extractor) will create a logical map that will match the physical heads map exactly.
On drives that have missing/deactivated heads, using the physical head map example above of 1,3,4,5, it means head 0 and head 2 are physically missing/deactivated. As a result, Data Extractor won't reflect those missing heads, so in the logical map, the heads will be shifted. So, logical head 0 will be the first logical head, matching physical head 1, as that is the first active physical head. And so on.
It would be nice if Data Extractor could VISUALLY match the logical map to the physical map exactly even with those odd maps, but they are not programmed that way. Not sure if it is even possible, as programming is not my strength.
April 25th, 2023, 19:51
higgsboson wrote:Thanks .Is that Means for normal hard disks (non deactivated disks) Physical Heads should be selected in DE and for missing deactivated cases logical heads ?
April 26th, 2023, 10:23
labtech wrote:higgsboson wrote:Thanks .Is that Means for normal hard disks (non deactivated disks) Physical Heads should be selected in DE and for missing deactivated cases logical heads ?
Please, could you show a photo of this window asking you to select physical or logical? I think you are probably referring to something else, not building a heads map.
Powered by phpBB © phpBB Group.