Custom Query (1383 matches)
Results (7 - 9 of 1383)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#144 | fixed | "smartctl -l xerror -l xselftest" does not report errors in exit status | ||
Description |
The command " |
|||
#735 | invalid | "smartctl -o on sdX" disables spindown | ||
Description |
Having turned smartctl -o on (and then off again) my WD passport 2TB usb drive no longer spins down when idle. Something similar is noted here: http://www.thinkwiki.org/wiki/Problem_with_hard_drive_clicking#Samsung_MP0804H_80GB However, in my case it is not desired behaviour. It now runs rather hot. Can anything be done? |
|||
#659 | fixed | "update-smart-drivedb" uses old sourceforge HTTP link | ||
Description |
When curl is used in the drivedb update script it does not follow the redirect as given by sourceforge for http to https Curl can be told to follow redirects with the -L option Here is a simple patch that seems to solve this issue: @@ -77,7 +77,7 @@ for t in $os_dltools; do if which $t >/dev/null 2>/dev/null; then case $t in - curl) DOWNLOAD="curl ${q:+-s }"'-f -o "$DEST.new" "$SRC"' ;; + curl) DOWNLOAD="curl -L ${q:+-s }"'-f -o "$DEST.new" "$SRC"' ;; lynx) DOWNLOAD='lynx -source "$SRC" >"$DEST.new"' ;; wget) DOWNLOAD="wget $q"'-O "$DEST.new" "$SRC"' ;; fetch) DOWNLOAD='fetch -o "$DEST.new" "$SRC"' ;; # FreeBSD As an alternative the URL for the updates could be modified to look to https instead of http: @@ -40,7 +40,7 @@ SMARTCTL="$sbindir/smartctl" # Download URL for sourceforge code browser -SRCEXPR='http://sourceforge.net/p/smartmontools/code/HEAD/tree/$location/smartmontools/drivedb.h?format=raw' +SRCEXPR='https://sourceforge.net/p/smartmontools/code/HEAD/tree/$location/smartmontools/drivedb.h?format=raw' # Parse options q="-q " |