Custom Query (1434 matches)
Results (178 - 180 of 1434)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#189 | fixed | Whitelist non-MA07 firmware for Dell Seagate Barracuda ES.2 drives | ||
Description |
We recently received a support call because a customer noted that one of the drives installed in a machine was reporting potential problems with a version of firmware. After doing some digging on the Dell site, it appears that only the MA07 firmware is affected. The attached patch whitelists all non-MA07 firmware so the message doesn't appear with unaffected drives. |
|||
#190 | worksforme | request to provide source code | ||
Description |
HI there , I request you to please share me the source code of smartmon tools that works only on Windows XP /Windows 2003 server. and if possible dedicated only for SCSI / SAS . Also please suggest me an IDE with I can actually modify and compile the code, Visual studio 2003,2005,2006 solution files wil be highly appreciated, I was actually confused to find the exact code flow from main->main worker->device . If it is not possible to share any of the above information kindly provide me information of how to pass SCSI commands using SAS interface and the associated IOCTL control codes and structure, I will promise a clear contribution from end after reciving solution I will try to share the knowledge that I have gained |
|||
#191 | fixed | improve the example to examine smartctl's return code | ||
Description |
Hello! Thank you for this brilliant piece of software. I just want to suggest a minor improvement to the man page of smartctl. At section "RETURN VALUES" near the end of the man page for smartctl[8], you state an example to examine the error code returned by smartctl: To test within the shell for whether or not the different bits are turned on or off, you can use the following type of con‐ struction (this is bash syntax): smartstat=$(($? & 8)) This looks at only at bit 3 of the exit status $? (since 8=2^3). The shell variable $smartstat will be nonzero if SMART status check returned "disk failing" and zero otherwise. Why not show the user a way to examine all error codes by including something like this: E=$?; for ((i=0; i<8;i++)); do echo "Bit $i: $(($E & 2**$i && 1))"; done This would produce output like the following: Bit 0: 0 Bit 1: 0 Bit 2: 0 Bit 3: 0 Bit 4: 0 Bit 5: 0 Bit 6: 1 Bit 7: 0 With kind regards, Robert Kehl |