Reply
 
Thread Tools Display Modes
  #1  
Old 05-14-2006, 12:12 PM
antik's Avatar
antik antik is offline
Super Moderator
 
Join Date: Jul 2005
Location: Estonia
Posts: 3,610
Thanks: 0
Thanked 0 Times in 0 Posts
Default Post Your HDD performance info
Code:
# diskinfo -t /dev/ad0
/dev/ad0
        512             # sectorsize
        160041885696    # mediasize in bytes (149G)
        312581808       # mediasize in sectors
        310101          # Cylinders according to firmware.
        16              # Heads according to firmware.
        63              # Sectors according to firmware.

Seek times:
        Full stroke:      250 iter in   5.666521 sec =   22.666 msec
        Half stroke:      250 iter in   4.371893 sec =   17.488 msec
        Quarter stroke:   500 iter in   6.955999 sec =   13.912 msec
        Short forward:    400 iter in   2.223611 sec =    5.559 msec
        Short backward:   400 iter in   1.178749 sec =    2.947 msec
        Seq outer:       2048 iter in   0.209462 sec =    0.102 msec
        Seq inner:       2048 iter in   0.187843 sec =    0.092 msec
Transfer rates:
        outside:       102400 kbytes in   1.844597 sec =    55513 kbytes/sec
        middle:        102400 kbytes in   2.167990 sec =    47233 kbytes/sec
        inside:        102400 kbytes in   3.464977 sec =    29553 kbytes/sec
Code:
# dmesg | grep ad0
ad0: 152627MB <Seagate ST3160023A 8.01> at ata0-master UDMA100
__________________
"All parts should go together without forcing. Therefore, if you can't get them together again, there must be a reason. By all means, do not use a hammer." -- IBM maintenance manual, 1975
Reply With Quote
  #2  
Old 05-14-2006, 01:04 PM
madman madman is offline
Senior Member
 
Join Date: Jan 2006
Posts: 211
Thanks: 0
Thanked 0 Times in 0 Posts
Default
Code:
/dev/ad0
        512             # sectorsize
        164696555520    # mediasize in bytes (153G)
        321672960       # mediasize in sectors
        5105920         # Cylinders according to firmware.
        1               # Heads according to firmware.
        63              # Sectors according to firmware.

Seek times:
        Full stroke:      250 iter in   4.928724 sec =   19.715 msec
        Half stroke:      250 iter in   3.628733 sec =   14.515 msec
        Quarter stroke:   500 iter in   5.959027 sec =   11.918 msec
        Short forward:    400 iter in   2.799953 sec =    7.000 msec
        Short backward:   400 iter in   1.797054 sec =    4.493 msec
        Seq outer:       2048 iter in   0.274963 sec =    0.134 msec
        Seq inner:       2048 iter in   0.270974 sec =    0.132 msec
Transfer rates:
        outside:       102400 kbytes in   1.728793 sec =    59232 kbytes/sec
        middle:        102400 kbytes in   2.076237 sec =    49320 kbytes/sec
        inside:        102400 kbytes in   3.553362 sec =    28818 kbytes/sec
Reply With Quote
  #3  
Old 05-14-2006, 06:23 PM
DrJ DrJ is offline
Senior Member
 
Join Date: May 2005
Location: Gold Country, CA
Posts: 419
Thanks: 0
Thanked 0 Times in 0 Posts
Default
OK, I'll play...
Code:
diskinfo -t /dev/da0
        512             # sectorsize
        36703934464     # mediasize in bytes (34G)
        71687372        # mediasize in sectors
        4462            # Cylinders according to firmware.
        255             # Heads according to firmware.
        63              # Sectors according to firmware.

Seek times:
        Full stroke:      250 iter in   2.168836 sec =    8.675 msec
        Half stroke:      250 iter in   1.735579 sec =    6.942 msec
        Quarter stroke:   500 iter in   2.827450 sec =    5.655 msec
        Short forward:    400 iter in   1.745069 sec =    4.363 msec
        Short backward:   400 iter in   0.826289 sec =    2.066 msec
        Seq outer:       2048 iter in   0.372151 sec =    0.182 msec
        Seq inner:       2048 iter in   0.363974 sec =    0.178 msec
Transfer rates:
        outside:       102400 kbytes in   1.383251 sec =    74029 kbytes/sec
        middle:        102400 kbytes in   1.556284 sec =    65798 kbytes/sec
        inside:        102400 kbytes in   2.113208 sec =    48457 kbytes/sec

pinot# dmesg | grep da0
da0 at sym0 bus 0 target 1 lun 0
da0: <SEAGATE ST336753LW 0005> Fixed Direct Access SCSI-3 device
da0: 160.000MB/s transfers (80.000MHz, offset 62, 16bit), Tagged Queueing Enabled

diskinfo -t /dev/da1
/dev/da1
        512             # sectorsize
        146815737856    # mediasize in bytes (137G)
        286749488       # mediasize in sectors
        17849           # Cylinders according to firmware.
        255             # Heads according to firmware.
        63              # Sectors according to firmware.

Seek times:
        Full stroke:      250 iter in   3.100419 sec =   12.402 msec
        Half stroke:      250 iter in   2.289167 sec =    9.157 msec
        Quarter stroke:   500 iter in   3.875068 sec =    7.750 msec
        Short forward:    400 iter in   1.309084 sec =    3.273 msec
        Short backward:   400 iter in   1.287727 sec =    3.219 msec
        Seq outer:       2048 iter in   0.375318 sec =    0.183 msec
        Seq inner:       2048 iter in   0.371993 sec =    0.182 msec
Transfer rates:
        outside:       102400 kbytes in   1.513601 sec =    67653 kbytes/sec
        middle:        102400 kbytes in   1.838785 sec =    55689 kbytes/sec
        inside:        102400 kbytes in   2.727111 sec =    37549 kbytes/sec

pinot# dmesg | grep da1
da1 at sym0 bus 0 target 2 lun 0
da1: <SEAGATE ST3146807LW 0006> Fixed Direct Access SCSI-3 device
da1: 160.000MB/s transfers (80.000MHz, offset 62, 16bit), Tagged Queueing Enabled
da1: 140014MB (286749488 512 byte sectors: 255H 63S/T 17849C)
DrJ
Reply With Quote
  #4  
Old 05-14-2006, 08:00 PM
Puffball Puffball is offline
Member
 
Join Date: Oct 2005
Location: Springfield, Missouri
Posts: 33
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via AIM to Puffball Send a message via MSN to Puffball Send a message via Yahoo to Puffball
Default
Quote:
%diskinfo -t /dev/ad0
/dev/ad0
512 # sectorsize
80026361856 # mediasize in bytes (75G)
156301488 # mediasize in sectors
155061 # Cylinders according to firmware.
16 # Heads according to firmware.
63 # Sectors according to firmware.

Seek times:
Full stroke: 250 iter in 5.696677 sec = 22.787 msec
Half stroke: 250 iter in 4.150914 sec = 16.604 msec
Quarter stroke: 500 iter in 7.032293 sec = 14.065 msec
Short forward: 400 iter in 3.514182 sec = 8.785 msec
Short backward: 400 iter in 2.055613 sec = 5.139 msec
Seq outer: 2048 iter in 0.314303 sec = 0.153 msec
Seq inner: 2048 iter in 0.304994 sec = 0.149 msec
Transfer rates:
outside: 102400 kbytes in 2.134657 sec = 47970 kbytes/sec
middle: 102400 kbytes in 2.279191 sec = 44928 kbytes/sec
inside: 102400 kbytes in 3.168058 sec = 32323 kbytes/sec
I think the transfer rate is lower than it should be, I'm sure its not my cable's fault why its in UDMA 33 mode, but I think the lack of a proprietary driver is preventing it from using UDMA 66/100; not sure if any BSD tweak could help this.
Reply With Quote
  #5  
Old 05-14-2006, 08:13 PM
DrJ DrJ is offline
Senior Member
 
Join Date: May 2005
Location: Gold Country, CA
Posts: 419
Thanks: 0
Thanked 0 Times in 0 Posts
Default
It would help if you would post the output from dmesg about your drive. At first blush it looks OK to me if it is a few year old IDE drive. It is already transferring data faster than UDMA33, so I don't think that's the issue.

DrJ
Reply With Quote
  #6  
Old 05-14-2006, 08:14 PM
antik's Avatar
antik antik is offline
Super Moderator
 
Join Date: Jul 2005
Location: Estonia
Posts: 3,610
Thanks: 0
Thanked 0 Times in 0 Posts
Default
Originally Posted by Puffball
I think the transfer rate is lower than it should be, I'm sure its not my cable's fault why its in UDMA 33 mode, but I think the lack of a proprietary driver is preventing it from using UDMA 66/100; not sure if any BSD tweak could help this.
Today I found that my CoolerMaster 133Mbit rounded cable is faulty and I forced to change it to 80pin flat one.
Before:
Code:
ad0: DMA limited to UDMA33, device found non-ATA66 cable
ad0: 152627MB <Seagate ST3160023A 8.01> at ata0-master UDMA33
After:
Code:
ad0: 152627MB <Seagate ST3160023A 8.01> at ata0-master UDMA100
__________________
"All parts should go together without forcing. Therefore, if you can't get them together again, there must be a reason. By all means, do not use a hammer." -- IBM maintenance manual, 1975
Reply With Quote
  #7  
Old 05-14-2006, 08:16 PM
Puffball Puffball is offline
Member
 
Join Date: Oct 2005
Location: Springfield, Missouri
Posts: 33
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via AIM to Puffball Send a message via MSN to Puffball Send a message via Yahoo to Puffball
Default
I guess I was primarily looking at transfer rate.

Quote:
%dmesg | grep ad0
ad0: 76319MB <WDC WD800JB-00FMA0 13.03G13> at ata0-master UDMA100
Trying to mount root from ufs:/dev/ad0s1a
Yeah, its fine. @_@
Reply With Quote
  #8  
Old 05-14-2006, 08:26 PM
DrJ DrJ is offline
Senior Member
 
Join Date: May 2005
Location: Gold Country, CA
Posts: 419
Thanks: 0
Thanked 0 Times in 0 Posts
Default
They are a tad slow for modern drives, but they should be fine. Don't compare your transfer rates with the ones I posted. Both are SCSI drives; the first one is a 15K RPM and the second one is a 10K. Those are different beasts than a 7.2K RPM ATA drive.

It would also help if you would edit your post and use the "code" delimiter. Using "quote" messes up the formatting (I found this out the hard way).

DrJ
Reply With Quote
  #9  
Old 05-14-2006, 08:30 PM
Puffball Puffball is offline
Member
 
Join Date: Oct 2005
Location: Springfield, Missouri
Posts: 33
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via AIM to Puffball Send a message via MSN to Puffball Send a message via Yahoo to Puffball
Default
Ah, does 'code' come installed by default with phpBB, you think? It sounds kind of niche/tech-centric.
Reply With Quote
  #10  
Old 05-14-2006, 08:35 PM
DrJ DrJ is offline
Senior Member
 
Join Date: May 2005
Location: Gold Country, CA
Posts: 419
Thanks: 0
Thanked 0 Times in 0 Posts
Default
"Code" is the button to the right of "quote" in the posting panel. Select your text, and then hit the code button. Give it a try, and have a look at the preview panel (button on the bottom).

DrJ
Reply With Quote
Reply

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

Similar Threads
Thread Thread Starter Forum Replies Last Post
Release dates & some info Lunthar General Questions 0 05-28-2009 06:50 PM
Info about ZFS and PCBSD Oliver Herold The Lounge 1 05-21-2007 04:41 PM
Updating web site info ranran General Questions 3 03-24-2007 03:55 PM
PC-BSD info is outdated on this host Thulemanden General Questions 0 02-24-2007 11:59 PM
info on KDE4 pcbsdusr The Lounge 0 01-13-2006 05:38 PM


All times are GMT. The time now is 09:09 AM.


Powered by vBulletin® Version 3.8.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

Copyright 2005-2010, The PC-BSD Project. PC-BSD and the PC-BSD logo are registered trademarks of iXsystems.
All other content is freely available for sharing under the terms of the Creative Commons Attribution License.