Custom Query (1552 matches)
Results (391 - 393 of 1552)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1437 | wontfix | Wording: ATA Error Count, Device Error Count | ||
| Description |
Are the two phrases synonymous? Or do ATA Error Count and Device Error Count have different meanings? I'm comparing what's above:
– with, for example, https://superuser.com/q/746720/84988 where there is:
I assume that the phrase ATA Error Count is somehow deprecated. If so, this is a request for enhancement to the GUI, for wording to be consistent. Thanks |
|||
| #46 | wontfix | With two channels LSI Raid, smartctl check always the first one. | ||
| Description |
uname -a Linux xforce 2.6.26-2-686 #1 SMP Fri Oct 23 23:43:53 UTC 2009 i686 GNU/Linux smartctl -V smartctl 5.39 2009-12-09 r2995 [i686-pc-linux-gnu] (local build) Copyright (C) 2002-9 by Bruce Allen, http://smartmontools.sourceforge.net smartctl comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under the terms of the GNU General Public License Version 2. See http://www.gnu.org for further details. smartmontools release 5.39 dated 2009-12-09 at 21:00:32 UTC smartmontools SVN rev 2995 dated 2009-12-09 at 21:01:43 smartmontools build host: i686-pc-linux-gnu smartmontools build configured: 2010-01-11 23:51:52 UTC smartctl compile dated Jan 11 2010 at 23:52:24 smartmontools configure arguments: '--prefix=/usr' '--sysconfdir=/etc' '--mandir=/usr/share/man' '--with-initscriptdir=/etc/init.d' '--with-docdir=/usr/share/doc/smartmontools' '--with-selinux' 'CXXFLAGS=-g -O2' 'LDFLAGS=' 'CPPFLAGS=' 'CFLAGS=-g -O2 -fsigned-char -Wall -O2' 02:0e.0 RAID bus controller [0104]: Dell PowerEdge Expandable RAID controller 4 [1028:0013] (rev 06)
/usr/sbin/smartctl -a -d megaraid,0 -H /dev/sda : Disk Serial number: 3HW2DAL6 /usr/sbin/smartctl -a -d megaraid,1 -H /dev/sda : Disk Serial number: 3HW2DAP9 /usr/sbin/smartctl -a -d megaraid,0 -H /dev/sdb : Disk Serial number: 3HW2DAL6 /usr/sbin/smartctl -a -d megaraid,1 -H /dev/sdb : Disk Serial number: 3HW2DAP9 /usr/sbin/megactl -v a0 PERC 4e/Di bios:H418 fw:513O chan:2 ldrv:2 rbld:30% batt:good a0d0 68GiB RAID 1 1x2 optimal
a0d1 136GiB RAID 5 1x3 optimal
a0c0t0 SEAGATE ST373453LC 68GiB a0d0 online a0c0t1 SEAGATE ST373453LC 68GiB a0d0 online a0c1t2 SEAGATE ST373453LC 68GiB a0d1 online a0c1t3 SEAGATE ST373453LC 68GiB a0d1 online a0c1t4 SEAGATE ST373453LC 68GiB a0d1 online /usr/sbin/smartctl -d megaraid,2 -H /dev/sdb smartctl 5.39 2009-12-09 r2995 [i686-pc-linux-gnu] (local build) Copyright (C) 2002-9 by Bruce Allen, http://smartmontools.sourceforge.net Smartctl open device: /dev/sdb [megaraid_disk_02] failed: INQUIRY failed |
|||
| #677 | fixed | Windows sometimes spins up a disk even when “-n standby” is used | ||
| Description |
I observed that when smartd is polling for SMART data, Windows sometimes spins up a disk that is powered down even when “-n standby” is used in smartd.conf. The log will report that the disk is in standby mode and checks are suspended. Still you can hear that the disk is starting. I found that this behavior is caused by smartd when opening the (physical) disk device. Smartd opens the disk asking for full read and write permissions by default. (Only when it does not have admin rights, it opens the disk with ‘0’ permissions.) But opening with full read and write permissions sometimes results in Windows spinning up the disk, most likely to consolidate Windows’ internal state with the disk. However, to query the disk’s power state, you only need a handle to query the drive’s metadata, without any read or write permissions. The attached patch adds a new function to the base class ‘smart_device’: ‘check_os_powermode()’. The generic default implementation returns true to indicate power up or undetermined. The Win32 implementation uses Windows’ GetDevicePowerState API, and returns false when the OS indicates that the device is in low-power state. However, the point is when the ‘smart_device’ is not already opened, ‘check_os_powermode()’ opens the device temporarily using ‘0’ permissions to open only a handle for querying device metadata, and so prevents the disk from spinning up. (Even when admin rights would be available.) |
|||

