amiga.org
     
iconAll times are GMT -6. The time now is 04:31 PM. | Welcome to Forum, please register to access all of our features.

» Amiga.org » Amiga computer related discussion » Amiga Hardware Issues and discussion » HDD questioN

Amiga Hardware Issues and discussion This forum is dedicated to the discussion and resolution of issues related to Classic and Next Generation Amiga hardware. Got a problem with a piece of hardware? Click to speak.

Reply
 
Thread Tools Display Modes
Old 08-06-2010, 10:21 PM   #1
Marcb
Technoid
Points: 5,868, Level: 49 Points: 5,868, Level: 49 Points: 5,868, Level: 49
Activity: 2% Activity: 2% Activity: 2%
 
Marcb's Avatar
 
Join Date: Nov 2007
Location: Sydney, Australia
Posts: 407
Blog Entries: 1
Default HDD questioN

Hi,

I'm trying to set up a 40gb HDD but have no idea how to work out blocks per track etc?

Can someone help?
__________________
"...but some animals are more equal than others."
Marcb is offline   Reply With Quote
Old 08-06-2010, 10:37 PM   #2
Franko
Banned
Points: 22,799, Level: 93 Points: 22,799, Level: 93 Points: 22,799, Level: 93
Activity: 8% Activity: 8% Activity: 8%
 
Join Date: Jun 2010
Posts: 5,707
Blog Entries: 33
Default Re: HDD questioN

Quote:
Originally Posted by Marcb View Post
Hi,

I'm trying to set up a 40gb HDD but have no idea how to work out blocks per track etc?

Can someone help?
Hi Marcb

Depends on which machine and type of HD interface board and filesystem your trying to set it up on, need more info...
Franko is offline   Reply With Quote
Old 08-06-2010, 10:54 PM   #3
Marcb
Technoid
Points: 5,868, Level: 49 Points: 5,868, Level: 49 Points: 5,868, Level: 49
Activity: 2% Activity: 2% Activity: 2%
 
Marcb's Avatar
 
Join Date: Nov 2007
Location: Sydney, Australia
Posts: 407
Blog Entries: 1
Default Re: HDD questioN

Hi,

Well, trying to set it up on my 4000D, will use SFS or PFS3 eventually but at the moment I can't get Hdinstools to recognize it properly...

When it queries the drive, the wrong size is returned so I'm wanting to input the blocks per track etc manually but I cant work it out
__________________
"...but some animals are more equal than others."
Marcb is offline   Reply With Quote
Old 08-06-2010, 10:59 PM   #4
Franko
Banned
Points: 22,799, Level: 93 Points: 22,799, Level: 93 Points: 22,799, Level: 93
Activity: 8% Activity: 8% Activity: 8%
 
Join Date: Jun 2010
Posts: 5,707
Blog Entries: 33
Default Re: HDD questioN

On my A1200 I use SFS with 2 500Gb HDs, They are partitioned into various sizes but most use blocksize of 512 and a couple of partitions that use block sizes of 2048 bytes. I've never had to do the calculating myself though HDToolbox sets them up fine on my set up.

I'll nip over to my Amiga and copy some of my dos drivers and post them here, maybe that will give you an idea of what your looking for I'm on a mac just now, so I'll have to copy them to a memory card and transfer to the mac to post them...

Last edited by Franko; 08-06-2010 at 11:07 PM.. Reason: Typo
Franko is offline   Reply With Quote
Old 08-06-2010, 11:19 PM   #5
Franko
Banned
Points: 22,799, Level: 93 Points: 22,799, Level: 93 Points: 22,799, Level: 93
Activity: 8% Activity: 8% Activity: 8%
 
Join Date: Jun 2010
Posts: 5,707
Blog Entries: 33
Default Re: HDD questioN

Dunno if any of this will help...

Example 1: A Basic FastFileSystem Dos.Driver

/* DH0: */
device = scsi.device
Unit = 0
Flags = 0
FileSystem = "L:FastFileSystem"
GlobVec = -1
Surfaces = 3
BlockSize = 512
BlocksPerTrack = 16
Reserved = 2
Interleave = 0
SectorsPerBlock = 1
LowCyl = 43
HighCyl = 43712
PreAlloc = 0
Buffers = 30
BufMemType = 1
DOSType = 0x444f5303
MaxTransfer = 16776704
Mask = 0xfffffffe
BootPri = 0
Mount = 1
#

Example 2: A SFS Dos.Driver

/* HD0: */

device = scsi.device
Unit = 1
Flags = 0
FileSystem = L:SmartFileSystem
StackSize = 16384
GlobVec = -1
Surfaces = 1
BlockSize = 512
BlocksPerTrack = 264
Reserved = 2
Interleave = 0
SectorsPerBlock = 1
LowCyl = 2
HighCyl = 1184021
PreAlloc = 0
Buffers = 100
BufMemType = 1
DOSType = 0x53465302
MaxTransfer = 16776704
Mask = 0x7fffffff
BootPri = 0
Mount = 1
/*# BootBlocks = 0 */

#

Hope this is of some use to you...

Franko
Franko is offline   Reply With Quote
Old 08-07-2010, 12:35 AM   #6
Thomas
Kindred of Babble-on
Points: 14,028, Level: 76 Points: 14,028, Level: 76 Points: 14,028, Level: 76
Activity: 15% Activity: 15% Activity: 15%
 
Thomas's Avatar
 
Join Date: Jun 2002
Posts: 2,936
Default Re: HDD questioN

What HDInstTool tells you is correct. The IDE driver cannot see more than 8GB of which you cannot use more than 4GB anyway. You need to install updated drivers like OS 3.9 or IDEfix first.
__________________
Email: thomas-rapp@web.de
Home: thomas-rapp.homepage.t-online.de/
Thomas is offline   Reply With Quote
Old 08-07-2010, 04:41 AM   #7
Marcb
Technoid
Points: 5,868, Level: 49 Points: 5,868, Level: 49 Points: 5,868, Level: 49
Activity: 2% Activity: 2% Activity: 2%
 
Marcb's Avatar
 
Join Date: Nov 2007
Location: Sydney, Australia
Posts: 407
Blog Entries: 1
Default Re: HDD questioN

Thanks Franko for going to the trouble of getting those settings for me!

Reading Thomas' reply, I think I missed the most important step though...

I haven't patched the scsi device, I thought because I was using a Buddha controller I'd be ok..

So what is my next step, acquire idefix from somewhere ?
__________________
"...but some animals are more equal than others."
Marcb is offline   Reply With Quote
Old 08-07-2010, 04:47 AM   #8
Franko
Banned
Points: 22,799, Level: 93 Points: 22,799, Level: 93 Points: 22,799, Level: 93
Activity: 8% Activity: 8% Activity: 8%
 
Join Date: Jun 2010
Posts: 5,707
Blog Entries: 33
Default Re: HDD questioN

I've never used the Buddha before, all my Amiga's use either the 4xEIDE or FASTATA MKII controllers, been that long since I've read anything about the Buddha that it will take me a bit of digging around to find some info on it (always thought the Buddha was for floppies...)

Last edited by Franko; 08-07-2010 at 04:48 AM.. Reason: Typo
Franko is offline   Reply With Quote
Old 08-07-2010, 04:55 AM   #9
Franko
Banned
Points: 22,799, Level: 93 Points: 22,799, Level: 93 Points: 22,799, Level: 93
Activity: 8% Activity: 8% Activity: 8%
 
Join Date: Jun 2010
Posts: 5,707
Blog Entries: 33
Default Re: HDD questioN

Just had a quick look around the net, I don't know if you've already got this installer or if you need it for your Buddha, but have a quick look here...

http://amiga.resource.cx/exp/buddha
Franko is offline   Reply With Quote
Old 08-07-2010, 05:58 AM   #10
Thomas
Kindred of Babble-on
Points: 14,028, Level: 76 Points: 14,028, Level: 76 Points: 14,028, Level: 76
Activity: 15% Activity: 15% Activity: 15%
 
Thomas's Avatar
 
Join Date: Jun 2002
Posts: 2,936
Default Re: HDD questioN

Quote:
Originally Posted by Marcb View Post
I haven't patched the scsi device, I thought because I was using a Buddha controller I'd be ok..
You didn't mention Buddha before. The Buddha controller is ok, it should be able to recognise the size of the drive correctly.

But you still need a file system like SFS or PFS3 to use more than 4Gb.

You also didn't mention any other details. What makes you think that the partitioning tool does something wrong?
__________________
Email: thomas-rapp@web.de
Home: thomas-rapp.homepage.t-online.de/
Thomas is offline   Reply With Quote
Old 08-07-2010, 07:16 PM   #11
Marcb
Technoid
Points: 5,868, Level: 49 Points: 5,868, Level: 49 Points: 5,868, Level: 49
Activity: 2% Activity: 2% Activity: 2%
 
Marcb's Avatar
 
Join Date: Nov 2007
Location: Sydney, Australia
Posts: 407
Blog Entries: 1
Default Re: HDD questioN

@ Franko

Yep, I've used the Install disk that came with my Buddha, I think I'm just getting confused with what I expect HdInst to display ?

@Thomas

True, I was a bit vague with my first post... Basically it is a 40gb IDE HD that I salvaged from an old PC at work, I have hooked it up to both the onboard A4000 IDE and the Buddha's IDE.
When I use HDToolbox or HDInstools and I ask them to read the config from the drive, they both report the wrong number of heads etc.
If I try to Partition, the slider "rolls over" to 0 numerous times, eg I create a partition with 500mb for wb then try to create a second partition but when I move the slider along it reverts back to 0... is this normal behaviour?

I've tried your check4gb and it reports that the 2nd.scsi.device (Buddha) is ready for NSD & TD64 commands... scsi.device is not.

I have both SFS & PFS3 ready to go but I'm not comfortable that the initial partitioning will be correct...
__________________
"...but some animals are more equal than others."
Marcb is offline   Reply With Quote
Old 08-08-2010, 12:29 AM   #12
Thomas
Kindred of Babble-on
Points: 14,028, Level: 76 Points: 14,028, Level: 76 Points: 14,028, Level: 76
Activity: 15% Activity: 15% Activity: 15%
 
Thomas's Avatar
 
Join Date: Jun 2002
Posts: 2,936
Default Re: HDD questioN

Quote:
Originally Posted by Marcb View Post
When I use HDToolbox or HDInstools and I ask them to read the config from the drive, they both report the wrong number of heads etc.
What makes you think so? Modern drives only report the highest LBA (total number of blocks). The tool then calculates cyls, heads and sectors by best guess. Different tools give different results, that's nothing to worry about. Only cyls * heads * sectors should be equal to or slightly smaller than the total number of blocks.


Quote:
If I try to Partition, the slider "rolls over" to 0 numerous times, eg I create a partition with 500mb for wb then try to create a second partition but when I move the slider along it reverts back to 0... is this normal behaviour?
HDToolbox does this. It cannot display values bigger than 4096 MB. But it's only the display. Partitions will be correct anyway.

HDInsttool should not do this. If in doubt get the latest version of it from Aminet.


Quote:
I've tried your check4gb and it reports that the 2nd.scsi.device (Buddha) is ready for NSD & TD64 commands... scsi.device is not.
As I wrote above, with the internal IDE controller you cannot use more than 4 GB and not "see" more than 8 GB. The Buddha should be ok.


Quote:
I have both SFS & PFS3 ready to go but I'm not comfortable that the initial partitioning will be correct...
You should use the custom file system already for the first installation. If you change it later, you have to backup all files and format the changed partition.
__________________
Email: thomas-rapp@web.de
Home: thomas-rapp.homepage.t-online.de/
Thomas is offline   Reply With Quote
Reply

Bookmarks

Tags
hdd , question

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump