Custom Query (1405 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (16 - 18 of 1405)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Ticket
#186
Description

Hello, the drivedb.h contains string to detect regular OWC Mercury Extreme Pro SSDs, but not the OWC Mercury Extreme Pro RE SSD (RAID edition) models. Attached is a patch to add the "RE" string to the match string. Thanks.

#191
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

#199
Description

Attached is a patch containing some trivial man page syntax fixes.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.