LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 03-06-2013, 11:37 PM   #1
kmbarlow
LQ Newbie
 
Registered: Mar 2013
Posts: 11

Rep: Reputation: Disabled
Partitioning questions...


Hi all,

I am new to this and was wondering if someone could help me out. I have Ubuntu 12.04 installed on a custom built computer. I have a RAID 0 setup across 2 160 GB disks (512 sector size). I have been thinking that my system is not performing as well as it should be lately. When I apply the system updates, they are now taking an extended length of time to complete (up to 20-30 mins).

I am thinking the problem is I/O related as it's things like updates which give me the most grief (slowing the system to a crawl and top is not showing high levels of memory/CPU utilization).

I have done some digging and found some curious items in my partition tables. sfdisk is showing two empty partions (gparted complains about partitions not on the disk):

Code:
kbarlow@atlantia:/home/kbarlow$ sudo sfdisk -d /dev/mapper/isw_cacihdigbh_Volume0
Warning: extended partition does not start at a cylinder boundary.
DOS and Linux will interpret the contents differently.
# partition table of /dev/mapper/isw_cacihdigbh_Volume0
unit: sectors

/dev/mapper/isw_cacihdigbh_Volume0p1 : start=      512, size=599995392, Id=83, bootable
/dev/mapper/isw_cacihdigbh_Volume0p2 : start=599996416, size= 25157632, Id= 5
/dev/mapper/isw_cacihdigbh_Volume0p3 : start=        0, size=        0, Id= 0
/dev/mapper/isw_cacihdigbh_Volume0p4 : start=        0, size=        0, Id= 0
/dev/mapper/isw_cacihdigbh_Volume0p5 : start=599998464, size= 25155584, Id=82
also, fdisk doesn't show these partitions but shows some weird values for I/O size:

Code:
kbarlow@atlantia:/home/kbarlow$ sudo fdisk -l /dev/mapper/isw_cacihdigbh_Volume0

Disk /dev/mapper/isw_cacihdigbh_Volume0: 320.1 GB, 320079134720 bytes
255 heads, 63 sectors/track, 38914 cylinders, total 625154560 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 131072 bytes / 262144 bytes
Disk identifier: 0x0007c90a

                              Device Boot      Start         End      Blocks   Id  System
/dev/mapper/isw_cacihdigbh_Volume0p1   *         512   599995903   299997696   83  Linux
/dev/mapper/isw_cacihdigbh_Volume0p2       599996416   625154047    12578816    5  Extended
/dev/mapper/isw_cacihdigbh_Volume0p5       599998464   625154047    12577792   82  Linux swap / Solaris
Looking at this link http://www.linuxquestions.org/questi...e-disk-865616/

I think I should be able to simply delete the two empty partitions (I think the installer had some difficulties when setting up the partitioning structure). However, I am wondering if I have a misconfiguration with respect to the I/O size values... most of the samples I see that people have posted appear to have I/O sizes set to 512 or 4096 (advanced formatting). I don't know if these values are to be expected because of the RAID 0 configuration or what... Can anyone shed some light on this?

Thanks.

Keith
 
Old 03-07-2013, 02:54 AM   #2
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,800

Rep: Reputation: 7306Reputation: 7306Reputation: 7306Reputation: 7306Reputation: 7306Reputation: 7306Reputation: 7306Reputation: 7306Reputation: 7306Reputation: 7306Reputation: 7306
as far as I know p3 and p4 are not real partitions but spaces (or slots) for two primary partitions. By default 4 partition entries exist and you use only two. p1 is a primary bootable linux partition, p4 is an extension. It may contain 4 additional entry, but it has only one (p5 which is a swap).
You cannot remove p3 and p4, they do not exist, they are just placeholder for two additional primary partition.
 
Old 03-07-2013, 04:59 AM   #3
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
pan64 is right, this is just a weird display format used by sfdisk, actually the partitions you see as empty just don't exist, which is why fdisk doesn't show them.

To your actual problem, have you tried a disk benchmark or just a simple test with
Code:
hdparm -Tt /dev/mapper/isw_cacihdigbh_Volume0p1
to see if disk performance is in fact your problem?
 
Old 03-07-2013, 01:16 PM   #4
kmbarlow
LQ Newbie
 
Registered: Mar 2013
Posts: 11

Original Poster
Rep: Reputation: Disabled
I installed iotop and have tried to look at that to see what it says. Unfortunately, I haven't done it during the system updates yet. I need to examine that a bit more closely. I can say that the activity indicator on my system appears to be a constant red instead of a flurry of activity like it usually is. Maybe this is more indicative of pending hard drive failures? I ran an fsck on the partition and it reported it as clean but I am curious of the result as it completed immediately - took almost no time. I should check the SMART status of the drives though I believe the BIOS would warn me on boots if there was a message.

I will give the hdparm command you suggested a try and see what it results. I am glad to know the partition structure is normal. Those I/O size numbers not being in sync w/ the section sizes doesn't appear alarming to you guys I take it?

Thanks.

Keith
 
Old 03-08-2013, 07:09 PM   #5
kmbarlow
LQ Newbie
 
Registered: Mar 2013
Posts: 11

Original Poster
Rep: Reputation: Disabled
@TobiSGD - Thanks! I took your suggestion and tried some benchmarks. I think I definitely do have a problem. My read speed turned out OK:

Code:
kbarlow@atlantia:~$ sudo hdparm -Tt /dev/mapper/isw_cacihdigbh_Volume0p1 
/dev/mapper/isw_cacihdigbh_Volume0p1:
 Timing cached reads:   23218 MB in  2.00 seconds = 11621.62 MB/sec
 Timing buffered disk reads: 358 MB in  3.00 seconds = 119.17 MB/sec
but my write speed is abysmal:

Code:
IOzone 3.405:
    pts/iozone-1.8.0 [Record Size: 4Kb - File Size: 512MB - Disk Test: Write Performance]
    Test 1 of 1
    Estimated Trial Run Count:    3
    Estimated Time To Completion: 22 Minutes
        Started Run 1 @ 19:40:01
        Started Run 2 @ 19:47:21
        Started Run 3 @ 19:54:53  [Std. Dev: 1.27%]

    Test Results:
        2.3310546875
        2.2724609375
        2.3037109375

    Average: 2.30 MB/s
I will have to do some diagnosing.

Thanks!
 
Old 03-09-2013, 12:59 AM   #6
kmbarlow
LQ Newbie
 
Registered: Mar 2013
Posts: 11

Original Poster
Rep: Reputation: Disabled
[solved]

Running some diagnostics on my hard drives showed that one is in fact showing some health issues:

Code:
kbarlow@atlantia:~$ sudo ./HDSentinel 
Hard Disk Sentinel for LINUX console 0.08 (c) 2008-2011 info@hdsentinel.com      
Start with -r [reportfile] to save data to report, -h for help                   
                                                                                 
Examining hard disk configuration ...                                            
                                                                                 
HDD Device  0: /dev/sda                                                          
HDD Model ID : WDC WD1600JS-00NCB1                                               
HDD Serial No: WD-WCANM7285475                                                   
HDD Revision : 10.02E02                                                          
HDD Size     : 152628 MB                                                         
Interface    : S-ATA II                                                          
Temperature  : 40 °C                                                             
Highest Temp.: 62 °C                                                             
Health       : 64 %                                                              
Performance  : 100 %                                                             
Power on time: 658 days, 4 hours                                                 
Est. lifetime: 477 days                                                          
                                                                                 
HDD Device  1: /dev/sdb
HDD Model ID : WDC WD1600JS-00NCB1
HDD Serial No: WD-WCANM7285467
HDD Revision : 10.02E02
HDD Size     : 152628 MB
Interface    : S-ATA II
Temperature  : 38 °C
Highest Temp.: 52 °C
Health       : 100 %
Performance  : 100 %
Power on time: 657 days, 21 hours
Est. lifetime: more than 1000 days
Smart status appeared to be OK but badblocks showed that there was, in fact, bad blocks. Will look into replacing the drive.

Marking thread solved. Thanks for your help!
 
Old 03-15-2013, 11:59 PM   #7
kmbarlow
LQ Newbie
 
Registered: Mar 2013
Posts: 11

Original Poster
Rep: Reputation: Disabled
Follow up

Just as a follow up for anyone who might be trying to diagnose similar errors.

More diagnosis confirmed the bad blocks were affecting the systems ability to read partition table information. I received errors indicating the partition table did not exist after removing and recreating the partition. Ultimately, after splitting the raid and removing the bad hard drive, the remaining good hard drive was able to sustain about 55 MB/s using the same test that yielded a 2.5 MB/s throughput in RAID-0 configuration.
 
  


Reply



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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Questions regarding partitioning leupi Linux - Hardware 17 12-16-2009 07:29 AM
Partitioning Questions davidstvz Debian 9 05-27-2009 11:37 AM
Partitioning questions 200mg Linux - Newbie 2 03-27-2008 10:08 AM
Partitioning questions Hampster Mandriva 2 01-12-2005 04:19 AM
partitioning is necessary/okay, but I have a few questions beginnerx Linux - Newbie 2 09-26-2003 06:11 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 01:51 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration