Compare commits

...

No commits in common. "master" and "nixos" have entirely different histories.

174 changed files with 359 additions and 12036 deletions

2
.idea/.gitignore vendored
View File

@ -1,2 +0,0 @@
# Default ignored files
/workspace.xml

View File

@ -1,9 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

View File

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="JavaScriptSettings">
<option name="languageLevel" value="ES6" />
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_6" />
</project>

View File

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/hpc-cluster.iml" filepath="$PROJECT_DIR$/.idea/hpc-cluster.iml" />
</modules>
</component>
</project>

View File

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>

View File

@ -1,40 +0,0 @@
# HPC-Cluster #
ADD general Info for Cluster here
## Smart-data ##
Enthält die Smart-Daten für die Festplatten in den Storage Servern, kann aber auch noch um weitere Daten erweitert werden. Die Daten können mit dem Skript blastor.sh, welches automatisch auf das einstecken neuer Platten reagiert, automatisch generiert und abgelegt werden.
Die Daten können anschließend mit dem Skript smartGUI.py durchsucht werden. Dafür muss "python3" und "python-support" installiert sein. Möglich ist sowohl eine Suche nach konkreten Seriennummern, als auch nach Mehreren Festplatten, die eine bestimmte Eigenschaft erfüllen.
## network
master server enp0s8 is WAN with DHCP-Client, it forwards traffic from LAN to WAN and does currently no NAT.
nodes network (LAN) (10.10.0.0/23) is on enp0s9
Nodes are configured from 10.10.0.100 and above
dhcp range is 10.10.0.20-10.10.0.80
## useful commands
```bash
for i in `seq 136 142`; do echo $i; ssh root@10.10.0.$i reboot; done
for i in `seq 100 142`; do echo $i; ssh root@10.10.0.$i "sh -c 'nohup stress -c 8 > /dev/null 2>&1 &'"; done
for i in `seq 100 105`; do echo $i; ssh root@10.10.0.$i "sh -c 'nohup killall stress > /dev/null 2>&1 &'"; done
for i in `seq 100 143`; do echo $i; ssh root@10.10.0.$i "sh -c 'nohup poweroff > /dev/null 2>&1 &'"; done
# install required roles from ansible-galaxy:
ansible-galaxy install -r requirements.yml
# run ansible-playbook only on node42 with only tagged roles hostname and telegraf
ansible-playbook -i inventory site.yml --limit "node42" --tags "hostname,telegraf" -K --ask-pass
```

View File

@ -1 +0,0 @@
*.retry

View File

@ -1,15 +0,0 @@
---
cron_apt_mailto: hostmaster@ctdo.de
ssmtp_rewrite_domain: "{{ansible_hostname}}.cluster.ctdo.de"
additional_packages:
- build-essential
- curl
- unzip
- findutils
- dos2unix
- gawk
- sed
- stress

View File

@ -1,39 +0,0 @@
network_interfaces:
- device: enp3s0f0
auto: true
family: inet
method: static
address: "{{ ansible_host }}"
netmask: 23
gateway: 10.10.0.1
nameservers:
- 1.1.1.1
- 1.0.0.1
telegraf_agent_version: 1.13.1
telegraf_agent_output:
- type: influxdb
config:
- urls = ["http://10.10.0.1:8086"]
- database = "telegraf"
- precision = "s"
- retention_policy = ""
- write_consistency = "any"
- timeout = "5s"
telegraf_plugins_default:
- plugin: cpu
config:
- percpu = true
- totalcpu = true
- fielddrop = [ "time_*" ]
- plugin: disk
config:
- ignore_fs = ["tmpfs", "devtmpfs", "cifs", "nfs"]
- plugin: diskio
- plugin: kernel
- plugin: mem
- plugin: processes
- plugin: swap
- plugin: system
- plugin: netstat
- plugin: net

View File

@ -1,30 +0,0 @@
telegraf_agent_version: 1.13.1
telegraf_agent_output:
- type: influxdb
config:
- urls = ["http://127.0.0.1:8086"]
- database = "telegraf"
- precision = "s"
- retention_policy = ""
- write_consistency = "any"
- timeout = "5s"
telegraf_plugins_default:
- plugin: cpu
config:
- percpu = true
- totalcpu = true
- fielddrop = [ "time_*" ]
- plugin: disk
config:
- ignore_fs = ["tmpfs", "devtmpfs", "cifs", "nfs"]
- plugin: diskio
- plugin: kernel
- plugin: mem
- plugin: processes
- plugin: swap
- plugin: system
- plugin: netstat
- plugin: net
- plugin: ping
config:
- urls = ["{{ groups['nodes'] | map('extract', hostvars, ['ansible_host']) | join('","') }}"]

View File

@ -1,54 +0,0 @@
[all]
master ansible_host=10.10.0.1 ipmi_host=10.10.1.1
[all:children]
nodes
[nodes]
node00 ansible_host=10.10.0.100 ipmi_host=10.10.1.100
node01 ansible_host=10.10.0.101 ipmi_host=10.10.1.101
node02 ansible_host=10.10.0.102 ipmi_host=10.10.1.102
node03 ansible_host=10.10.0.103 ipmi_host=10.10.1.103
node04 ansible_host=10.10.0.104 ipmi_host=10.10.1.104
node05 ansible_host=10.10.0.105 ipmi_host=10.10.1.105
node06 ansible_host=10.10.0.106 ipmi_host=10.10.1.106
node07 ansible_host=10.10.0.107 ipmi_host=10.10.1.107
node08 ansible_host=10.10.0.108 ipmi_host=10.10.1.108
node09 ansible_host=10.10.0.109 ipmi_host=10.10.1.109
node10 ansible_host=10.10.0.110 ipmi_host=10.10.1.110
node11 ansible_host=10.10.0.111 ipmi_host=10.10.1.111
node12 ansible_host=10.10.0.112 ipmi_host=10.10.1.112
node13 ansible_host=10.10.0.113 ipmi_host=10.10.1.113
node14 ansible_host=10.10.0.114 ipmi_host=10.10.1.114
node15 ansible_host=10.10.0.115 ipmi_host=10.10.1.115
node16 ansible_host=10.10.0.116 ipmi_host=10.10.1.116
node17 ansible_host=10.10.0.117 ipmi_host=10.10.1.117
node18 ansible_host=10.10.0.118 ipmi_host=10.10.1.118
node19 ansible_host=10.10.0.119 ipmi_host=10.10.1.119
node20 ansible_host=10.10.0.120 ipmi_host=10.10.1.120
node21 ansible_host=10.10.0.121 ipmi_host=10.10.1.121
node22 ansible_host=10.10.0.122 ipmi_host=10.10.1.122
node23 ansible_host=10.10.0.123 ipmi_host=10.10.1.123
node24 ansible_host=10.10.0.124 ipmi_host=10.10.1.124
node25 ansible_host=10.10.0.125 ipmi_host=10.10.1.125
node26 ansible_host=10.10.0.126 ipmi_host=10.10.1.126
node27 ansible_host=10.10.0.127 ipmi_host=10.10.1.127
node28 ansible_host=10.10.0.128 ipmi_host=10.10.1.128
node29 ansible_host=10.10.0.129 ipmi_host=10.10.1.129
node30 ansible_host=10.10.0.130 ipmi_host=10.10.1.130
node31 ansible_host=10.10.0.131 ipmi_host=10.10.1.131
node32 ansible_host=10.10.0.132 ipmi_host=10.10.1.132
node33 ansible_host=10.10.0.133 ipmi_host=10.10.1.133
node34 ansible_host=10.10.0.134 ipmi_host=10.10.1.134
node35 ansible_host=10.10.0.135 ipmi_host=10.10.1.135
node36 ansible_host=10.10.0.136 ipmi_host=10.10.1.136
node37 ansible_host=10.10.0.137 ipmi_host=10.10.1.137
node38 ansible_host=10.10.0.138 ipmi_host=10.10.1.138
node39 ansible_host=10.10.0.139 ipmi_host=10.10.1.139
node40 ansible_host=10.10.0.140 ipmi_host=10.10.1.140
node41 ansible_host=10.10.0.141 ipmi_host=10.10.1.141
node42 ansible_host=10.10.0.142 ipmi_host=10.10.1.142
node43 ansible_host=10.10.0.143 ipmi_host=10.10.1.143

View File

@ -1,7 +0,0 @@
# install some required roles with
# ansible-galaxy install -r requirements.yml
- src: dresden-weekly.network-interfaces
- src: dj-wasabi.telegraf

View File

@ -1,27 +0,0 @@
---
- name: add authorized keys for user root (for {{group}})
tags:
- authkeys
authorized_key:
user: root
state: present
key: "{{ sshkeys[group]|map(attribute='publish_ssh_key')|join('\n') }}"
- name: add authorized keys for user debian
tags:
- authkeys
authorized_key:
user: debian
state: present
key: "{{ sshkeys[group]|map(attribute='publish_ssh_key')|join('\n') }}"
#- name: remove authorized keys for user root
# tags:
# - authkeys
# authorized_key:
# user: root
# state: absent
# key: "{{removed|map(attribute='publish_ssh_key')|join('\n') }}"

View File

@ -1,12 +0,0 @@
---
sshkeys:
admins:
- name: lucas
publish_ssh_key: ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAvyZgx/+b0YU+CqDXLPbgOoRmpiyKYDkAsfXMpZ+aKVCtGZzmg8OeIVUDv1lbq+qQwNl+fOi7/V+U8w7BpyVUSf5Pn+ld/+eQK1IgkjsDyfdsFiXr4stzCDjpOzRTs/fludZ4WXEtBRJ0IsfX6VJWU2xXBZKrgw62XnbUv/I0hzpckf9Ug9RsCOdS70FfrmRxh2rCEpVdukS4KNyq8MHkwIQM381k26wvsAH6fhNJucICeBIDzfcP61bg4zWLiKQ+q+5c4U7cRoz/N0G2FNOWwQHooQueVC7+SY3Vh2o9AGG2H+Lbrg03e5NSSUBJa2ixZM933evno1yniv/NiTYbGw== lucas@luwo
- name: blastor
publish_ssh_key: ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFNMlzpRFjkANy1tVafcLpkidbu1GF8cmmJK8dTwMZY4 fabian@fabian-T460s
- name: rootmaster
publish_ssh_key: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCzB14Kgqtq38jwO5xGpYEzbFnPVNNM16G782rGsM2hPNGBxgCIaQ5wTyLl5GCCGR7yQESmSphTpnTnh+pcw0QqvBvbxHrLe691lvkdUhXBnz3Y22sFu294D99+X8gZgm/cS6yXkb/Bq5upzKrUCFpKoMkiPT560OduxiyN+922fyVCUNcVsYyd+6YCZGj1kdzK/dsax99L9aOeYsCCe5s1717xIIK+MakT7o8nqv/mVuMrWiuhE6fJ6lgv1TXNhhJhxxd8aXIQlr0jXHCS89Lt7qNW/FnyTY5OqHHTqd02O/l82XRnnI9ASZqUfGD27EhWovB6cjibNbooYpwIfCbz root@master
- name: fionera
publish_ssh_key: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDNCmn7zefioeRXtO5pfWuW/J0/cJwYu6KmrJ2rjvk/cWgasyHVur4QriKmQLIUjabXn4gFhsVTwe1vDsgeWgvVbWYxxkgUq0No1/x9D50uuV3oUF1RiysCmUOkZMwRcSgG1A9jw4LxhInw6LgIkgJEG4v1qCK8JOnNZ/T0gknpLHpUMrBEVNgij31lZXwA9CGGhCsM2ZxLmz7pZ2PsYGt+VroJZ8IVscr3BtjRgAIg/I7q0eiuY/MB2aPKw/2gunul3t0iLAHTK1CUvHbTmjpSU5M0ebQc4qbJIoKD0g1Ygq4kxXU1eB6IsQx2Sr+CRr4OH3mwOyVCfgrb7NErzMyb

View File

@ -1 +0,0 @@
ntp_server: ptbtime1.ptb.de ptbtime2.ptb.de ptbtime3.ptb.de

View File

@ -1,4 +0,0 @@
---
- name: enable timesyncd
command: timedatectl set-ntp true

View File

@ -1,7 +0,0 @@
---
- name: configure timesyncd
template:
src: etc/systemd/timesyncd.conf.j2
dest: /etc/systemd/timesyncd.conf
notify: enable timesyncd
when: ansible_service_mgr == "systemd"

View File

@ -1,16 +0,0 @@
# This file is part of systemd.
#
# systemd is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
#
# Entries in this file show the compile time defaults.
# You can change settings by editing this file.
# Defaults can be restored by simply deleting this file.
#
# See timesyncd.conf(5) for details.
[Time]
NTP={{ ntp_server }}
FallbackNTP=ptbtime1.ptb.de

View File

@ -1,9 +0,0 @@
---
- name: configure hosts file
template:
src: hosts.j2
dest: /etc/hosts
- name: configure hostname
hostname:
name: "{{ inventory_hostname }}"

View File

@ -1,8 +0,0 @@
# {{ ansible_managed }}
127.0.0.1 {{ inventory_hostname }} localhost
::1 localhost
# The following lines are desirable for IPv6 capable hosts
::1 localhost ip6-localhost ip6-loopback
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

View File

@ -1,117 +0,0 @@
-m Show IP and MAC.
-m IP Set IP (format: ###.###.###.###).
-a MAC Set MAC (format: ##:##:##:##:##:##).
-k Show Subnet Mask.
-k Mask Set Subnet Mask (format: ###.###.###.###).
-dhcp Get the DHCP status.
-dhcp on Enable the DHCP.
-dhcp off Disable the DHCP.
-g Show Gateway IP.
-g IP Set Gateway IP (format: ###.###.###.###).
-r BMC cold reset.
option: -d | Detected IPMI device for BMC reset.
-garp on Enable the Gratuitous ARP.
-garp off Disable the Gratuitous ARP.
-fd Reset to the factory default.
option: -d | Detected IPMI device for BMC reset.
-fdl Reset to the factory default. (Clean LAN)
option: -d | Detected IPMI device for BMC reset.
-fde Reset to the factory default. (Clean FRU & LAN)
option: -d | Detected IPMI device for BMC reset.
-ver Get Firmware revision.
-vlan Get VLAN status.
-vlan on <vlan tag> Enable the VLAN and set the VLAN tag.
If VLANtag is not given it uses previously saved value.
-vlan off Disable the VLAN.
-selftest Checking and reporting on the basic health of BMC.
-raw Send a RAW IPMI request and print response.
Format: NetFn Cmd [Data1 ... DataN]
-fru info Show FRU inventory area Info.
-fru list Show all FRU values.
-fru cthelp Show chassis type code.
-fru help Show help of FRU Write.
-fru <field> Show FRU field value.
-fru <field> <value> Write FRU.
-fru 1m Update Product-Manufacturer from DMITable to IPMI FRU.
-fru 1p Update Product-Product Name from DMITable to IPMI FRU.
-fru 1s Update Product-S/N from DMITable to IPMI FRU.
-fru 2m Update Board-Manufacturer from DMITable to IPMI FRU.
-fru 2p Update Board-Product Name from DMITable to IPMI FRU.
-fru 2s Update Board-S/N from DMITable to IPMI FRU.
-fru 3s Update Chassis-S/N from DMITable to IPMI FRU.
-fru backup <file> Backup FRU to file <Binary format>.
-fru restore <file> Restore FRU from file <Binary format>.
-fru tbackup <file> Backup FRU to file <Text format>.
-fru trestore <file> Restore FRU from file <Text format>.
-fru ver <v1> <v2> Get/Set FRU version. (v1 v2 are BCD format)
-sel info Show SEL info.
-sel list Show SEL records.
-sel del Delete all SEL records.
-sel raw Show SEL raw data.
-sdr [full] Show SDR records and reading.
-sdr del <sdr id> Delete SDR record.
-sdr ver <v1> <v2> Get/Set SDR version. (v1 v2 are BCD format)
-nm nmsdr Display NM SDR.
-nm seltime Get SEL time.
-nm deviceid Get ME Device ID.
-nm reset Reboots ME.
-nm reset2default Force ME reset to Default.
-nm updatemode Force ME to Update Mode.
-nm selftest Get Self Test Results.
-nm listimagesinfo List ME Images information.
-nm oemgetpower OEM Power command for ME.
-nm oemgettemp OEM Temp. command for ME.
-nm pstate Get Max allowed CPU P-State.
-nm tstate Get Max allowed CPU T-State.
-nm cpumemtemp Get CPU/Memory temperature.
-nm hostcpudata Get host CPU data.
-fan Get Fan Mode.
-fan <mode> Set Fan Mode.
-pminfo [full] Power supply PMBus health.
-psfruinfo Power supply FRU health.
-psbbpinfo Battery backup power status.
-autodischarge Set auto discharge by days.
<module> <day>
-discharge <module> Manually discharge battery.
-user list List user privilege information.
-user help Show user privilege code.
-user add <user id> Add user.
<name> <password>
<privilege>
-user del <user id> Delete user.
-user level <user id> Update user privilege.
<privilege>
-user setpwd Update user password.
<user id> <password>
-conf upload <file> Upload IPMI configuration form binary file.
<option> option: -p | Bypass warning message.
-conf download <file> Download IPMI configuration to binary file.
-conf tupload <file> Upload IPMI configuration from text file.
<option> option: -p | Bypass warning message.
-conf tdownload Download IPMI configuration to text file.
<file>
-clrint Clear chassis intrusion.
-reset <index> Reset System and force to boot from device.
-soft <index> Initiate a soft-shutdown for OS and force to boot from
device.
-ipv6 mode Show IPv6 mode.
-ipv6 mode <mode> Set IPv6 mode.
-ipv6 autoconfig Show IPv6 auto configuration.
-ipv6 autoconfig on Enable IPv6 auto configuration.
-ipv6 autoconfig off Disable IPv6 auto configuration.
-ipv6 list List IPv6 static address.
-ipv6 duid Show IPv6 DUID.
-ipv6 dns [IPv6 addr] Get/Set IPv6 DNS server.
-ipv6 add <id> Add IPv6 static address.
<IPv6 addr> <prefix>
-ipv6 remove <id> Remove IPv6 static address.
-ipv6 route Display IPv6 static route.
-ipv6 route on Enable IPv6 static route.
-ipv6 route off Disable IPv6 static route.
-ipv6 route list List IPv6 static router info.
-ipv6 route <id> Set IPv6 static router information.
<prefix value>
<prefix length>
<IPv6 addr>
-ipv6 route clear Clear IPv6 static router information.
<id>

View File

@ -1,30 +0,0 @@
---
- name: Copy IPMIcfg
copy:
src: files/IPMICFG_1.30.0_build.190710/Linux/64bit
dest: /opt/
owner: root
group: root
mode: '0700'
- name: install ipmi
apt:
pkg:
- ipmitool
- name: configure ipmi disable dhcp
command: /opt/64bit/IPMICFG-Linux.x86_64 -dhcp off
- name: configure ipmi ip
command: /opt/64bit/IPMICFG-Linux.x86_64 -m {{ipmi_host}}
- name: configure ipmi netmask
command: /opt/64bit/IPMICFG-Linux.x86_64 -k 255.255.254.0
- name: configure ipmi gw
command: /opt/64bit/IPMICFG-Linux.x86_64 -g 10.10.0.1

View File

@ -1,104 +0,0 @@
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
genpasswd() {
local l=$1
[ "$l" == "" ] && l=16
tr -dc A-Za-z0-9_ < /dev/urandom | head -c ${l} | xargs
}
[ -z "$PS1" ] && return
export HISTCONTROL=ignoreboth:erasedups
export HISTSIZE=10000
shopt -s histappend
shopt -s checkwinsize
if [ "$TERM" != "dumb" ]; then
eval "`dircolors -b`"
alias ls='ls --color=auto'
fi
#PS1='\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
#case "$TERM" in
#xterm*|rxvt*)
# PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}\007"'
# ;;
#*)
# ;;
#esac
# set variable identifying the chroot you work in (used in the prompt below)
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
debian_chroot=$(cat /etc/debian_chroot)
fi
# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
xterm-color) color_prompt=yes;;
esac
# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
force_color_prompt=yes
if [ -n "$force_color_prompt" ]; then
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.)
color_prompt=yes
else
color_prompt=
fi
fi
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt
# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
;;
*)
;;
esac
# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls --color=auto'
#alias dir='dir --color=auto'
#alias vdir='vdir --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
fi
alias ll='ls -lAh'
alias l='ls -lh'
alias la='ls -a'
alias screen='screen -RD'
alias lemonupdate='apt autoremove -y && apt update -y && apt upgrade && apt autoremove -y'
stty stop undef
stty start undef

View File

@ -1,17 +0,0 @@
# disable the blinky terminal on audible bell
vbell off
autodetach on
startup_message off
crlf off
defscrollback 3000
silencewait 15
hardstatus alwayslastline "%{= kg}[%H %l] [%c] [%w]"
#so wird auch das bell zeichen ans terminal geschickt
bell_msg 'Bell in window %n ^G'
# Default Buffers
#screen -t Shell 1
#screen -t Shell 2
#select 0

View File

@ -1,23 +0,0 @@
syntax enable
set background=dark
set tabstop=2
set shiftwidth=2
set ruler
set nobackup
set nowb
set noswapfile
set smarttab
set ai "Auto indent
set si "Smart indent
set showcmd " Show (partial) command in status line.
set showmatch " Show matching brackets.
set ignorecase " Do case insensitive matching
set smartcase " Do smart case matching
set incsearch " Incremental search
set autowrite " Automatically save before commands like :next and :make
set hidden " Hide buffers when they are abandoned
"set autoindent
"set smartindent
set mouse=

View File

@ -1,55 +0,0 @@
---
- name: install default packages
tags:
- packages
apt: name={{item}} state=present update_cache=yes
with_items:
- vim
- sudo
- bash-completion
- rsync
- apt-transport-https
- curl
- git
- htop
- screen
- iptraf-ng
- psmisc
- name: remove packages
tags:
- packages
apt: name={{item}} state=absent purge=yes
with_items:
- command-not-found
- command-not-found-data
- name: remove additional packages
tags:
- packages
apt: name={{item}} state=absent purge=yes
with_items: "{{ additional_remove_packages }}"
when: additional_remove_packages is defined and additional_remove_packages
- name: install additional packages
tags:
- packages
apt: name={{item}} state=present update_cache=yes
with_items: "{{ additional_packages }}"
when: additional_packages is defined and additional_packages
- name: configure dotfiles
tags:
- packages
copy: src=files/{{ item }} dest=/home/{{ansible_user}}/{{ item }}
with_items:
- .bashrc
- .screenrc
- .vimrc
- name: set default editor
tags:
- packages
alternatives:
name: editor
path: /usr/bin/vim

View File

@ -1,19 +0,0 @@
- hosts: all
roles:
- { role: packages, tags: 'packages' }
- { role: base, tags: 'base' }
- { role: authkeys, tags: 'authkeys', group: 'admins' }
- { role: dj-wasabi.telegraf, tags: 'telegraf', become: yes }
- { role: ipmi, tags: 'ipmi' }
remote_user: debian
become_method: su
become: true
- hosts: nodes
roles:
- { role: dresden-weekly.network-interfaces, tags: 'interfaces' }
- { role: hostname, tags: 'hostname' }
remote_user: debian
become_method: su
become: true

20
bin/tw_cli.nix Normal file
View File

@ -0,0 +1,20 @@
with import <nixpkgs> {};
stdenv.mkDerivation rec {
name = "tw_cli-${version}";
version = "2.00.11.022";
executable = /root/bin/tw_cli.x86_64;
phases = [ "installPhase" ];
installPhase = ''
install -m755 -D $executable $out/bin/tw_cli
'';
meta = with stdenv.lib; {
homepage = "";
description = "TW_CLI";
platforms = platforms.linux;
maintainers = with maintainers; [ fionera ];
};
}

BIN
bin/tw_cli.x86_64 Executable file

Binary file not shown.

9
cluster.nix Normal file
View File

@ -0,0 +1,9 @@
{
nodes = (import ./nodes.nix);
keys = [
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCzB14Kgqtq38jwO5xGpYEzbFnPVNNM16G782rGsM2hPNGBxgCIaQ5wTyLl5GCCGR7yQESmSphTpnTnh+pcw0QqvBvbxHrLe691lvkdUhXBnz3Y22sFu294D99+X8gZgm/cS6yXkb/Bq5upzKrUCFpKoMkiPT560OduxiyN+922fyVCUNcVsYyd+6YCZGj1kdzK/dsax99L9aOeYsCCe5s1717xIIK+MakT7o8nqv/mVuMrWiuhE6fJ6lgv1TXNhhJhxxd8aXIQlr0jXHCS89Lt7qNW/FnyTY5OqHHTqd02O/l82XRnnI9ASZqUfGD27EhWovB6cjibNbooYpwIfCbz root@master"
"ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAvyZgx/+b0YU+CqDXLPbgOoRmpiyKYDkAsfXMpZ+aKVCtGZzmg8OeIVUDv1lbq+qQwNl+fOi7/V+U8w7BpyVUSf5Pn+ld/+eQK1IgkjsDyfdsFiXr4stzCDjpOzRTs/fludZ4WXEtBRJ0IsfX6VJWU2xXBZKrgw62XnbUv/I0hzpckf9Ug9RsCOdS70FfrmRxh2rCEpVdukS4KNyq8MHkwIQM381k26wvsAH6fhNJucICeBIDzfcP61bg4zWLiKQ+q+5c4U7cRoz/N0G2FNOWwQHooQueVC7+SY3Vh2o9AGG2H+Lbrg03e5NSSUBJa2ixZM933evno1yniv/NiTYbGw== lucas@luwo"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFNMlzpRFjkANy1tVafcLpkidbu1GF8cmmJK8dTwMZY4 fabian@fabian-T460s"
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDNCmn7zefioeRXtO5pfWuW/J0/cJwYu6KmrJ2rjvk/cWgasyHVur4QriKmQLIUjabXn4gFhsVTwe1vDsgeWgvVbWYxxkgUq0No1/x9D50uuV3oUF1RiysCmUOkZMwRcSgG1A9jw4LxhInw6LgIkgJEG4v1qCK8JOnNZ/T0gknpLHpUMrBEVNgij31lZXwA9CGGhCsM2ZxLmz7pZ2PsYGt+VroJZ8IVscr3BtjRgAIg/I7q0eiuY/MB2aPKw/2gunul3t0iLAHTK1CUvHbTmjpSU5M0ebQc4qbJIoKD0g1Ygq4kxXU1eB6IsQx2Sr+CRr4OH3mwOyVCfgrb7NErzMyb"
];
}

View File

@ -1,24 +0,0 @@
# isc-dhcp-server
install the debian package, check out the hpc-cluster repo to /home/debian/hpc-cluster/
configure /etc/dhcp/dhcpd.conf to
```
include "/home/debian/hpc-cluster/dhcp/ctdo.conf";
```
configure dhcp server to only serve on second interface:
/etc/default/isc-dhcp-server
```
INTERFACESv4="enp0s9"
```
there is a node-js tool "Glass ISC-DHCP" available:
http://10.10.0.1:3000/

View File

@ -1,196 +0,0 @@
option domain-name "cluster.ctdo.de";
option domain-name-servers 1.1.1.1;
default-lease-time 600;
max-lease-time 7200;
ddns-update-style none;
authoritative;
#filename "pxelinux.0";
subnet 10.10.0.0 netmask 255.255.254.0 {
range 10.10.0.20 10.10.0.80;
option routers 10.10.0.1;
host node00 {
hardware ethernet 00:30:48:bc:84:56;
fixed-address 10.10.0.100;
}
host node01 {
hardware ethernet 00:30:48:bc:84:7a;
fixed-address 10.10.0.101;
}
host node02 {
hardware ethernet 00:30:48:bc:85:5e;
fixed-address 10.10.0.102;
}
host node03 {
hardware ethernet 00:30:48:bc:84:32;
fixed-address 10.10.0.103;
}
host node04 {
hardware ethernet 00:30:48:bc:86:2e;
fixed-address 10.10.0.104;
}
host node05 {
hardware ethernet 00:30:48:bc:84:0a;
fixed-address 10.10.0.105;
}
host node06 {
hardware ethernet 00:30:48:bc:83:4e;
fixed-address 10.10.0.106;
}
host node07 {
hardware ethernet 00:30:48:bc:34:24;
fixed-address 10.10.0.107;
}
host node08 {
hardware ethernet 00:30:48:bc:85:d2;
fixed-address 10.10.0.108;
}
host node09 {
hardware ethernet 00:30:48:bc:84:de;
fixed-address 10.10.0.109;
}
host node10 {
hardware ethernet 00:30:48:bc:83:6a;
fixed-address 10.10.0.110;
}
host node11 {
hardware ethernet 00:30:48:bc:83:82;
fixed-address 10.10.0.111;
}
host node12 {
hardware ethernet 00:30:48:bc:86:1a;
fixed-address 10.10.0.112;
}
host node13 {
hardware ethernet 00:30:48:bc:66:32;
fixed-address 10.10.0.113;
}
host node14 {
hardware ethernet 00:30:48:bc:86:56;
fixed-address 10.10.0.114;
}
host node15 {
hardware ethernet 00:30:48:bc:36:5c;
fixed-address 10.10.0.115;
}
host node16 {
hardware ethernet 00:30:48:bc:85:e6;
fixed-address 10.10.0.116;
}
host node17 {
hardware ethernet 00:30:48:bc:86:4e;
fixed-address 10.10.0.117;
}
host node18 {
hardware ethernet 00:30:48:bc:85:aa;
fixed-address 10.10.0.118;
}
host node19 {
hardware ethernet 00:30:48:bc:85:ce;
fixed-address 10.10.0.119;
}
host node20 {
hardware ethernet 00:30:48:bc:36:8c;
fixed-address 10.10.0.120;
}
host node21 {
hardware ethernet 00:30:48:bc:36:94;
fixed-address 10.10.0.121;
}
host node22 {
hardware ethernet 00:30:48:bc:86:5a;
fixed-address 10.10.0.122;
}
host node23 {
hardware ethernet 00:30:48:bc:86:36;
fixed-address 10.10.0.123;
}
host node24 {
hardware ethernet 00:30:48:bc:83:9e;
fixed-address 10.10.0.124;
}
host node25 {
hardware ethernet 00:30:48:bc:85:1e;
fixed-address 10.10.0.125;
}
host node26 {
hardware ethernet 00:30:48:bc:86:16;
fixed-address 10.10.0.126;
}
host node27 {
hardware ethernet 00:30:48:bc:34:94;
fixed-address 10.10.0.127;
}
host node28 {
hardware ethernet 00:30:48:bc:86:62;
fixed-address 10.10.0.128;
}
host node29 {
hardware ethernet 00:30:48:bc:86:46;
fixed-address 10.10.0.129;
}
host node30 {
hardware ethernet 00:30:48:bc:85:da;
fixed-address 10.10.0.130;
}
host node31 {
hardware ethernet 00:30:48:bc:85:de;
fixed-address 10.10.0.131;
}
host node32 {
hardware ethernet 00:30:48:bc:85:72;
fixed-address 10.10.0.132;
}
host node33 {
hardware ethernet 00:30:48:bc:84:4e;
fixed-address 10.10.0.133;
}
host node34 {
hardware ethernet 00:30:48:bc:86:26;
fixed-address 10.10.0.134;
}
host node35 {
hardware ethernet 00:30:48:bc:86:2a;
fixed-address 10.10.0.135;
}
host node36 {
hardware ethernet 00:30:48:bc:34:80;
fixed-address 10.10.0.136;
}
host node37 {
hardware ethernet 00:30:48:bc:33:9c;
fixed-address 10.10.0.137;
}
# hat zusaetzliche Karte mit 1 Nic
host node38 {
hardware ethernet 00:30:48:bc:84:86;
fixed-address 10.10.0.138;
}
# hat zusaetzliche Karte mit 2 Nic
host node39 {
hardware ethernet 00:30:48:bc:84:16;
fixed-address 10.10.0.139;
}
host node40 {
hardware ethernet 00:30:48:bc:83:ce;
fixed-address 10.10.0.140;
}
host node41 {
hardware ethernet 00:30:48:bc:83:d2;
fixed-address 10.10.0.141;
}
host node42 {
hardware ethernet 00:30:48:bc:83:d6;
fixed-address 10.10.0.142;
}
host node43 {
hardware ethernet 00:30:48:bc:84:be;
fixed-address 10.10.0.143;
}
}

40
ipxe.nix Normal file
View File

@ -0,0 +1,40 @@
let
nixpkgs = <nixpkgs>;
pkgs = import nixpkgs {};
cluster = (import ./cluster.nix);
configuration = { config, pkgs, lib, ... }: with lib; {
imports = [
"${nixpkgs}/nixos/modules/installer/netboot/netboot-minimal.nix"
];
systemd.services.sshd.wantedBy = mkOverride 0 [ "multi-user.target" ];
networking.hostName = "";
users.users.root = {
openssh.authorizedKeys.keys = cluster.keys;
initialPassword = "root";
};
virtualisation.docker.enable = true;
i18n.consoleKeyMap = "de";
environment.systemPackages = with pkgs; [
(import ./bin/tw_cli.nix)
];
};
nixos = import "${nixpkgs}/nixos" {
inherit configuration;
# system = ...;
};
in
pkgs.symlinkJoin {
name = "netboot";
paths = with nixos.config.system.build; [
netbootRamdisk
kernel
netbootIpxeScript
];
preferLocalBuild = true;
}

View File

@ -1,28 +0,0 @@
# Logbuch
## 2020-01-15 blast0r
* no 5 hat jetzt das Mainboard welches Fisch ausgebaut hat.
* cpus und Ram scheint noch intakt zu sein, da es mit dem anderen board nun geht..
## 2020-01-14 blast0r
* ansible auf master eingerichtet (user debian)
* storage server versucht zu installieren
* no 4 und 5 haben scheinbar beide schwierigkeiten mit RAM und oder CPU
* no 4:
* 128 GB SSD intern angeschlossen..
* zunächst seeehr langsam, Dmesg eine Zeile pro Sekunde dazu...
* hälfte vom RAM rausgenommen, seitdem besser...
* RAM muss noch genauer ausgeschlossen werden.
* Ubuntu 19.10 server installiert..
* no 5:
* CPU2 und RAM geht garnicht... Post nur OK, wenn CPU2 ohne Ram, sonst bleibt der POST einfach beim ersten Speicher von CPU2 stehen (CPU1 hat 32 GB -> bei ca 34000 MB gehts nicht weiter)
* CPU1, wenn auf CPU1/DIMM4 auf A und B ein Riegel steckt reduziert sich die Frequenz des RAM auf 533 MHz, sonst 800, je ein Riegel auf A oder B und der andere frei geht..
* genug für heute..
## 2020-01-13 blast0r
* Vlan auf Switch 3 hinzugefügt, einfach nur um Uplink verfügbar zu haben
* Storage server umgestapelt, ready to install morgen oder so?
* ER-6 abgebaut
* ER-X-SFP eingerichtet..
* Kabel Raum 3 <-> 4 vom Boden weg

Binary file not shown.

View File

@ -1,9 +0,0 @@
# Netzwerk
verwendete Switches: Dell PowerConnect 6224
im Ring als Stack verbunden
die switches sind per ssh erreichbar unter 10.10.0.2/23, zugangsdaten wie wlan
auf Switch No 3, sind Ports 1-4 als AccessPorts für VLAN 100 eingerichtet, um den Uplink auf dem Switch verfügbar zu haben

View File

@ -1,38 +0,0 @@
!Current Configuration:
!System Description "PowerConnect 6224, 3.3.18.1, VxWorks 6.5"
!System Software Version 3.3.18.1
!Cut-through mode is configured as disabled
!
configure
vlan database
vlan 100
exit
ip telnet server disable
stack
member 1 1
member 2 1
member 3 1
member 4 1
exit
ip address 10.10.0.2 255.255.254.0
ip default-gateway 10.10.0.1
username "ctdo" password ea8362b0f30dfe0de1f9c5f9b73fbde4 level 15 encrypted
ip ssh server
no spanning-tree
!
interface ethernet 3/g1
switchport access vlan 100
exit
!
interface ethernet 3/g2
switchport access vlan 100
exit
!
interface ethernet 3/g3
switchport access vlan 100
exit
!
interface ethernet 3/g4
switchport access vlan 100
exit
exit

View File

@ -1,49 +0,0 @@
# Usage of Dell PowerConnect 6224 Switch
Ein Teil der Hardware die wir bekommen haben waren eben diese Dell PowerConnect 6224 switches.
Ausgestattet jeweils mit einem 2-fach Stacking-Modul und einem 2x10Gbe CX4 Modul.
## Verbinden mit serieller Schnittstelle /Wartung/Zurücksetzen/Firmwareupdate/
### Reset to default configuration
Um den Switch zurückzusetzen muss ein Null-Modem-Kabel mit einem Seriell-Adapter verwendet werden.
Ich habe hier im Treff noch einen gefunden. (RS232)
Als Terminalemulator habe ich Minicom verwendet, das war einfach die erste Anleitung die ich gefunden habe.
Es soll auch mit screen gehen.. hab ich aber noch nie gemacht.
Einstecken des USB-Seriel moppeds, wenn das der einzige ist, sollte der unter
/dev/ttyUSB0 vorhanden sein
```bash
sudo apt install minicom
sudo minicom -s #ruft minicom im Configurations modus auf
```
Hier muss nun die Configuration angepasst werden d.h.:
* Richtiges device auswählen, im zweifeil mal mit 'ls /dev/tty* | grep -i usb' suchen
* Baud 8600 1N0 einstellen
* speichern als "dfl" (speichert die konfiguration wohl im System ab.. persistent)
* verlassen (verlässt die Einstellungen)
wenn man das Nullmodemkabel nun an den switch anschließt und den dann mit Strom versorgt sollte nach einer Weile
Ausgaben vom Switch während des bootvorgangs erscheinen..
Hier erhält man nun die Möglichkeit ins "Bootmenü" zu wechseln, indem man 2 <enter> drückt
Im bootmenü kann eben unter anderem die Konfiguration zurückgesetzt werden.
Danach den switch neustarten oder "reset", 9 war das glaub ich ...
### Firmware upgrade
Ich habe alle Switches auf die Firmware version 3.3.18.1 hochgezogen ;-D
da gabs von äh hier Dell sogar ne aktuelle PDF Anleitung, einfach mal googlen...
## Konfiguration
### Enable HTTPS service
Habe ich nach dieser Anleitung durchgeführt:
anleitung einrichtung https und SSH, deaktivieren telnet http siehe https://www.dell.com/support/article/de/de/debsdt1/how10442/anleitung-zum-aktivieren-von-http-ssh-und-deaktivieren-von-http-telnet-f%C3%BCr-die-switch-verwaltung-auf-switches-der-serie-powerconnect-5500?lang=de

14
nixops/nixops.nix Normal file
View File

@ -0,0 +1,14 @@
let
cluster = (import ./cluster.nix);
in {
nodes = map (x: {
{ config, pkgs, ... }:
{
deployment = {
targetHost = x.ip;
}
}) cluster.nodes;
}

12
nixops/trivial.nix Normal file
View File

@ -0,0 +1,12 @@
let
nodes = (import ../nodes.nix);
nameValuePair = name: value: { inherit name value; };
hosts = map (x: [
{ name = x.name; value = [ { name = "deployment.targetHost"; value = x.ip; } ]; }
]) nodes;
test = builtins.listToAttrs hosts;
in
test

245
nodes.nix Normal file
View File

@ -0,0 +1,245 @@
[
{
name = "node00";
mac = "00:30:48:bc:84:56";
ip = "10.10.0.100";
}
{
name = "node01";
mac = "00:30:48:bc:84:7a";
ip = "10.10.0.101";
}
{
name = "node02";
mac = "00:30:48:bc:85:5e";
ip = "10.10.0.102";
}
{
name = "node03";
mac = "00:30:48:bc:84:32";
ip = "10.10.0.103";
}
{
name = "node04";
mac = "00:30:48:bc:86:2e";
ip = "10.10.0.104";
}
{
name = "node05";
mac = "00:30:48:bc:84:0a";
ip = "10.10.0.105";
}
{
name = "node06";
mac = "00:30:48:bc:83:4e";
ip = "10.10.0.106";
}
{
name = "node07";
mac = "00:30:48:bc:34:24";
ip = "10.10.0.107";
}
{
name = "node08";
mac = "00:30:48:bc:85:d2";
ip = "10.10.0.108";
}
{
name = "node09";
mac = "00:30:48:bc:84:de";
ip = "10.10.0.109";
}
{
name = "node10";
mac = "00:30:48:bc:83:6a";
ip = "10.10.0.110";
}
{
name = "node11";
mac = "00:30:48:bc:83:82";
ip = "10.10.0.111";
}
{
name = "node12";
mac = "00:30:48:bc:86:1a";
ip = "10.10.0.112";
}
{
name = "node13";
mac = "00:30:48:bc:66:32";
ip = "10.10.0.113";
}
{
name = "node14";
mac = "00:30:48:bc:86:56";
ip = "10.10.0.114";
}
{
name = "node15";
mac = "00:30:48:bc:36:5c";
ip = "10.10.0.115";
}
{
name = "node16";
mac = "00:30:48:bc:85:e6";
ip = "10.10.0.116";
}
{
name = "node17";
mac = "00:30:48:bc:86:4e";
ip = "10.10.0.117";
}
{
name = "node18";
mac = "00:30:48:bc:85:aa";
ip = "10.10.0.118";
}
{
name = "node19";
mac = "00:30:48:bc:85:ce";
ip = "10.10.0.119";
}
{
name = "node20";
mac = "00:30:48:bc:36:8c";
ip = "10.10.0.120";
}
{
name = "node21";
mac = "00:30:48:bc:36:94";
ip = "10.10.0.121";
}
{
name = "node22";
mac = "00:30:48:bc:86:5a";
ip = "10.10.0.122";
}
{
name = "node23";
mac = "00:30:48:bc:86:36";
ip = "10.10.0.123";
}
{
name = "node24";
mac = "00:30:48:bc:83:9e";
ip = "10.10.0.124";
}
{
name = "node25";
mac = "00:30:48:bc:85:1e";
ip = "10.10.0.125";
}
{
name = "node26";
mac = "00:30:48:bc:86:16";
ip = "10.10.0.126";
}
{
name = "node27";
mac = "00:30:48:bc:34:94";
ip = "10.10.0.127";
}
{
name = "node28";
mac = "00:30:48:bc:86:62";
ip = "10.10.0.128";
}
{
name = "node29";
mac = "00:30:48:bc:86:46";
ip = "10.10.0.129";
}
{
name = "node30";
mac = "00:30:48:bc:85:da";
ip = "10.10.0.130";
}
{
name = "node31";
mac = "00:30:48:bc:85:de";
ip = "10.10.0.131";
}
{
name = "node32";
mac = "00:30:48:bc:85:72";
ip = "10.10.0.132";
}
{
name = "node33";
mac = "00:30:48:bc:84:4e";
ip = "10.10.0.133";
}
{
name = "node34";
mac = "00:30:48:bc:86:26";
ip = "10.10.0.134";
}
{
name = "node35";
mac = "00:30:48:bc:86:2a";
ip = "10.10.0.135";
}
{
name = "node36";
mac = "00:30:48:bc:34:80";
ip = "10.10.0.136";
}
{
name = "node37";
mac = "00:30:48:bc:33:9c";
ip = "10.10.0.137";
}
# hat zusaetzliche Karte mit 1 Nic
{
name = "node38";
mac = "00:30:48:bc:84:86";
ip = "10.10.0.138";
}
# hat zusaetzliche Karte mit 2 Nic
{
name = "node39";
mac = "00:30:48:bc:84:16";
ip = "10.10.0.139";
}
{
name = "node40";
mac = "00:30:48:bc:83:ce";
ip = "10.10.0.140";
}
{
name = "node41";
mac = "00:30:48:bc:83:d2";
ip = "10.10.0.141";
}
{
name = "node42";
mac = "00:30:48:bc:83:d6";
ip = "10.10.0.142";
}
{
name = "node43";
mac = "00:30:48:bc:84:be";
ip = "10.10.0.143";
}
{
name = "storage0";
mac = "00:30:48:ce:83:3a";
ip = "10.10.0.10";
}
{
name = "storage1";
mac = "";
ip = "10.10.0.11";
}
{
name = "storage2";
mac = "";
ip = "10.10.1.12";
}
{
name = "storage3";
mac = "";
ip = "10.10.1.13";
}
]

19
pixiecore.sh Normal file
View File

@ -0,0 +1,19 @@
#!/usr/bin/env bash -e
nix-build --out-link /tmp/netboot ./ipxe.nix
n=$(realpath /tmp/netboot)
init=$(grep -ohP 'init=\S+' $n/netboot.ipxe)
# Start the PXE server.
# These ports need to be open in your firewall:
# UDP: 67, 69
# TCP: 64172
docker run --rm \
-v /etc/ssl/certs:/etc/ssl/certs:ro \
-v /nix/store:/nix/store:ro \
--net=host \
pixiecore/pixiecore:master \
boot $n/bzImage $n/initrd \
--cmdline "$init loglevel=4" \
-d --dhcp-no-bind --port 64172 --status-port 64172

View File

@ -1 +0,0 @@
ACTION=="add", SUBSYSTEM=="block", ENV{DEVTYPE}=="disk" RUN+="/home/mamu/blast0r.sh '%E{DEVNAME}'"

View File

@ -1,70 +0,0 @@
# Smart-Data
Man kann doch mit den 3Ware-9650SE Raid-Controllern die Smart werte auslesen.
z.b.:
```bash
smartctl -a -d 3ware,<vportID> /dev/twa0
```
Die <vportID> (hier 0-15) kann man über die tw_cli nachschauen, hier mit beispielausgabe:
```bash
# get controller identifier (may change after reboot)
$ sudo tw_cli show
Ctl Model (V)Ports Drives Units NotOpt RRate VRate BBU
------------------------------------------------------------------------
c6 9650SE-16ML 16 16 16 0 4 1 OK
Encls Slots Drives Fans TSUnits PSUnits
-----------------------------------------------------
e0 16 16 8 4 0
# c6 is the controller ID
# lets show all of this controller
$ sudo tw_cli /c6 show
Unit UnitType Status %RCmpl %V/I/M Stripe Size(GB) Cache AVrfy
------------------------------------------------------------------------------
u0 JBOD OK - - - 1863.02 Ri OFF
u1 JBOD OK - - - 1863.02 Ri OFF
u2 JBOD OK - - - 1863.02 Ri OFF
u3 JBOD OK - - - 1863.02 Ri OFF
u4 JBOD OK - - - 1863.02 Ri OFF
u5 JBOD OK - - - 1863.02 Ri OFF
u6 JBOD OK - - - 1863.02 Ri OFF
u7 JBOD OK - - - 1863.02 Ri OFF
u8 JBOD OK - - - 1863.02 Ri OFF
u9 JBOD OK - - - 1863.02 Ri OFF
u10 JBOD OK - - - 1863.02 Ri OFF
u11 JBOD OK - - - 1863.02 Ri OFF
u12 JBOD OK - - - 1863.02 Ri OFF
u13 JBOD OK - - - 1863.02 Ri OFF
u14 JBOD OK - - - 1863.02 Ri OFF
u15 JBOD OK - - - 1863.02 Ri OFF
VPort Status Unit Size Type Phy Encl-Slot Model
------------------------------------------------------------------------------
p0 OK u0 1.82 TB SATA 0 - WDC WD2002FYPS-01U1
p1 OK u1 1.82 TB SATA 1 - WDC WD2003FYYS-02W0
p2 OK u2 1.82 TB SATA 2 - WDC WD2002FYPS-01U1
p3 OK u3 1.82 TB SATA 3 - WDC WD2002FYPS-01U1
p4 OK u4 1.82 TB SATA 4 - WDC WD2002FYPS-01U1
p5 OK u5 1.82 TB SATA 5 - WDC WD2002FYPS-01U1
p6 OK u6 1.82 TB SATA 6 - WDC WD2002FYPS-01U1
p7 OK u7 1.82 TB SATA 7 - WDC WD2002FYPS-01U1
p8 OK u8 1.82 TB SATA 8 - WDC WD2002FYPS-01U1
p9 OK u9 1.82 TB SATA 9 - WDC WD2002FYPS-01U1
p10 OK u10 1.82 TB SATA 10 - WDC WD2002FYPS-01U1
p11 OK u11 1.82 TB SATA 11 - WDC WD2002FYPS-01U1
p12 OK u12 1.82 TB SATA 12 - WDC WD2002FYPS-01U1
p13 OK u13 1.82 TB SATA 13 - WDC WD2002FYPS-01U1
p14 OK u14 1.82 TB SATA 14 - WDC WD2002FYPS-01U1
p15 OK u15 1.82 TB SATA 15 - WDC WD2000FYYZ-01UL
Name OnlineState BBUReady Status Volt Temp Hours LastCapTest
---------------------------------------------------------------------------
bbu On Yes OK OK OK 0 xx-xxx-xxxx
```
die erste Tabelle zeigt alle konfigurierten "Units" an, hier sind alle platten als jbod konfiguriert. \\
In der Zweiten Tabelle ist steht vorne die Vport, davon ist nur die Zahl als <vportID> zu verwenden.\\

View File

@ -1,20 +0,0 @@
#!/bin/bash
SERIAL=$(cat /home/ctdo/serial)
LOG=/home/ctdo/blast0r.txt
DEV=$1
SN=$(/usr/bin/udevadm info $DEV|/usr/bin/grep ID_SERIAL_SHORT| /usr/bin/cut -f 2 -d '=')
STOREPATH=/home/ctdo/smart-4
echo "abgefragt am $(date)" > $STOREPATH/$SERIAL-$SN.txt
/usr/sbin/smartctl -a $DEV >> $STOREPATH/$SERIAL-$SN.txt
echo -n "New Disk registered (Serial $SN), smartfoo written, returned with $?. ">> $LOG
PREDECESSOR=$(ls -lah $STOREPATH |grep $SN -B 1| head -n 1|cut -d ' ' -f 10|sed 's/\.txt$//')
if [ ".." == $PREDECESSOR ]
then
echo "Sortier die Platte gaaaanz vorne ein.">> $LOG
else
echo "Sortier die Platte hinter $PREDECESSOR ein">> $LOG
fi
SERIAL=$((SERIAL+1))
echo $SERIAL > /home/ctdo/serial

View File

@ -1,107 +0,0 @@
New Disk registered (Serial WD-WCAVY0669016), smartfoo written, returned withi 127. Sortier die Platte gaaaanz vorne ein.
New Disk registered (Serial WD-WCAVY0669016), smartfoo written, returned withi 127. Sortier die Platte gaaaanz vorne ein.
New Disk registered (Serial WD-WCAVY0669016), smartfoo written, returned withi 127. Sortier die Platte gaaaanz vorne ein.
New Disk registered (Serial WD-WCAVY0669016), smartfoo written, returned withi 0. Sortier die Platte gaaaanz vorne ein.
New Disk registered (Serial WD-WCAVY0702676), smartfoo written, returned withi 0. Sortier die Platte gaaaanz vorne ein.
New Disk registered (Serial WD-WCAVY0608682), smartfoo written, returned withi 0. Sortier die Platte gaaaanz vorne ein.
New Disk registered (Serial WD-WCAVY4825044), smartfoo written, returned withi 64. Sortier die Platte gaaaanz vorne ein.
New Disk registered (Serial WD-WCAY01273118), smartfoo written, returned withi 0. Sortier die Platte gaaaanz vorne ein.
New Disk registered (Serial WD-WCAVY0676990), smartfoo written, returned withi 0. Sortier die Platte gaaaanz vorne ein.
New Disk registered (Serial WD-WCAVY3826425), smartfoo written, returned withi 0. Sortier die Platte gaaaanz vorne ein.
New Disk registered (Serial WD-WCAVY0701522), smartfoo written, returned withi 0. Sortier die Platte gaaaanz vorne ein.
New Disk registered (Serial WD-WCAVY0699782), smartfoo written, returned withi 0. Sortier die Platte gaaaanz vorne ein.
New Disk registered (Serial WD-WCAVY0699799), smartfoo written, returned withi 0. Sortier die Platte gaaaanz vorne ein.
New Disk registered (Serial WD-WCAVY0700017), smartfoo written, returned withi 0. Sortier die Platte gaaaanz vorne ein.
New Disk registered (Serial WD-WCAVY0653852), smartfoo written, returned withi 0. Sortier die Platte gaaaanz vorne ein.
New Disk registered (Serial WD-WCAVY4129684), smartfoo written, returned withi 0. Sortier die Platte hinter WD-WCAVY3826425 ein
New Disk registered (Serial WD-WCC1P0922527), smartfoo written, returned withi 0. Sortier die Platte hinter WD-WCAY01273118 ein
New Disk registered (Serial WD-WCAVY0666737), smartfoo written, returned withi 0. Sortier die Platte hinter WD-WCAVY0653852 ein
New Disk registered (Serial WD-WCAVY0681000), smartfoo written, returned withi 0. Sortier die Platte hinter WD-WCAVY0676990 ein
New Disk registered (Serial WD-WCAVY0680954), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0676990 ein
New Disk registered (Serial WD-WCAVY0638790), smartfoo written, returned with 0. Sortier die Platte hinter .. ein
New Disk registered (Serial WD-WCAY00824567), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0638790 ein
New Disk registered (Serial WD-WCAVY0591530), smartfoo written, returned with 0. Sortier die Platte hinter .. ein
New Disk registered (Serial WD-WCAT1H381474), smartfoo written, returned with 0. Sortier die Platte hinter .. ein
New Disk registered (Serial WD-WCAVY0666732), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0638790 ein
New Disk registered (Serial WD-WCAVY0338189), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAT1H381474 ein
New Disk registered (Serial WD-WCAVY0676530), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0666732 ein
New Disk registered (Serial WD-WCAVY0571467), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0338189 ein
New Disk registered (Serial WD-WCAVY2828160), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0676530 ein
New Disk registered (Serial WD-WCAVY0682921), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0676530 ein
New Disk registered (Serial WD-WCAVY0525179), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0338189 ein
New Disk registered (Serial WD-WCAY01275965), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAY00824567 ein
New Disk registered (Serial WD-WCAVY0673162), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0666732 ein
New Disk registered (Serial WD-WCAVY5125292), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY2828160 ein
New Disk registered (Serial PK2134P5GBYKSX), smartfoo written, returned with 0. Sortier die Platte gaaaanz vorne ein.
New Disk registered (Serial WD-WCAVY2693687), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0682921 ein
New Disk registered (Serial WD-WCAVY0666778), smartfoo written, returned with 0. Sortier die Platte gaaaanz vorne ein.
New Disk registered (Serial WD-WCAVY2991730), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0666778 ein
New Disk registered (Serial WD-WCAVY0676430), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0666778 ein
New Disk registered (Serial WD-WCAVY3665674), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY2991730 ein
New Disk registered (Serial WD-WCAVY0680117), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0676430 ein
New Disk registered (Serial WD-WCAVY0699279), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0680117 ein
New Disk registered (Serial WD-WCAVY0682655), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0680117 ein
New Disk registered (Serial WD-WCAVY1230145), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0699279 ein
New Disk registered (Serial WD-WCAVY0978559), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0699279 ein
New Disk registered (Serial WD-WCAVY0590004), smartfoo written, returned with 0. Sortier die Platte gaaaanz vorne ein.
New Disk registered (Serial WD-WCAVY0676475), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0676430 ein
New Disk registered (Serial WD-WCAVY0677383), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0676475 ein
New Disk registered (Serial WD-WCAVY0547640), smartfoo written, returned with 0. Sortier die Platte gaaaanz vorne ein.
New Disk registered (Serial WD-WCAVY0683987), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0682655 ein
New Disk registered (Serial ), smartfoo written, returned with 1. New Disk registered (Serial ), smartfoo written, returned with 1. New Disk registered (Serial ), smartfoo written, returned with 1. New Disk registered (Serial ), smartfoo written, returned with 1. New Disk registered (Serial ), smartfoo written, returned with 1. New Disk registered (Serial ), smartfoo written, returned with 1. New Disk registered (Serial ), smartfoo written, returned with 1. New Disk registered (Serial ), smartfoo written, returned with 1. New Disk registered (Serial ), smartfoo written, returned with 1. New Disk registered (Serial ), smartfoo written, returned with 1. Sortier die Platte hinter ein
Sortier die Platte hinter ein
Sortier die Platte hinter ein
Sortier die Platte hinter ein
Sortier die Platte hinter ein
Sortier die Platte hinter ein
Sortier die Platte hinter ein
Sortier die Platte hinter ein
Sortier die Platte hinter ein
Sortier die Platte hinter ein
New Disk registered (Serial WD-WCAT1D985352), smartfoo written, returned with 0. Sortier die Platte hinter ein
New Disk registered (Serial WD-WMAYP6684443), smartfoo written, returned with 0. Sortier die Platte hinter ein
New Disk registered (Serial WD-WCAVY0588538), smartfoo written, returned with 0. Sortier die Platte hinter ein
New Disk registered (Serial WD-WCAVY0679766), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0588538 ein
New Disk registered (Serial PK2134P5GBMEDX), smartfoo written, returned with 0. Sortier die Platte hinter ein
New Disk registered (Serial WD-WCAY00731245), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0679766 ein
New Disk registered (Serial WD-WCAVY0699933), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0679766 ein
New Disk registered (Serial WD-WCAVY0676695), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0588538 ein
New Disk registered (Serial WD-WCAVY0666808), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0588538 ein
New Disk registered (Serial WD-WCAVY0666744), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0588538 ein
New Disk registered (Serial WD-WCAVY0681080), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0679766 ein
New Disk registered (Serial WD-WCAVY0381257), smartfoo written, returned with 0. Sortier die Platte hinter PK2134P5GBMEDX ein
New Disk registered (Serial WD-WCAVY0668963), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0666808 ein
New Disk registered (Serial WD-WCAVY0683479), smartfoo written, returned with 0. Sortier die Platte hinter WD-WCAVY0681080 ein
New Disk registered (Serial WD-WCAVY0532420), smartfoo written, returned with 64. Sortier die Platte hinter WD-WCAVY0381257 ein
New Disk registered (Serial WD-WCAVY0699945), smartfoo written, returned with 0. Sortier die Platte hinter ein
New Disk registered (Serial WD-WCAVY0701899), smartfoo written, returned with 0. Sortier die Platte hinter 0-WD-WCAVY0699945 ein
New Disk registered (Serial WD-WCAVY0668921), smartfoo written, returned with 0. Sortier die Platte hinter 1-WD-WCAVY0701899 ein
New Disk registered (Serial WD-WCAVY0638732), smartfoo written, returned with 0. Sortier die Platte hinter 2-WD-WCAVY0668921 ein
New Disk registered (Serial WD-WCAVY0581061), smartfoo written, returned with 0. Sortier die Platte hinter 3-WD-WCAVY0638732 ein
New Disk registered (Serial WD-WCAVY0551407), smartfoo written, returned with 0. Sortier die Platte hinter 4-WD-WCAVY0581061 ein
New Disk registered (Serial WD-WCAVY7383773), smartfoo written, returned with 0. Sortier die Platte hinter 5-WD-WCAVY0551407 ein
New Disk registered (Serial WD-WCAVY0626269), smartfoo written, returned with 0. Sortier die Platte hinter 6-WD-WCAVY7383773 ein
New Disk registered (Serial WD-WCAVY4128363), smartfoo written, returned with 0. Sortier die Platte hinter 7-WD-WCAVY0626269 ein
New Disk registered (Serial WD-WCAVY0668916), smartfoo written, returned with 0. Sortier die Platte hinter 8-WD-WCAVY4128363 ein
New Disk registered (Serial WD-WCAVY7383909), smartfoo written, returned with 0. Sortier die Platte hinter 1-WD-WCAVY0701899 ein
New Disk registered (Serial WD-WCAVY0679761), smartfoo written, returned with 0. Sortier die Platte hinter 10-WD-WCAVY7383909 ein
New Disk registered (Serial WD-WCAY00882360), smartfoo written, returned with 0. Sortier die Platte hinter 11-WD-WCAVY0679761 ein
New Disk registered (Serial WD-WCAVY0666848), smartfoo written, returned with 0. Sortier die Platte hinter 12-WD-WCAY00882360 ein
New Disk registered (Serial WD-WCAVY0638104), smartfoo written, returned with 0. Sortier die Platte hinter 13-WD-WCAVY0666848 ein
New Disk registered (Serial WD-WCAVY0606756), smartfoo written, returned with 0. Sortier die Platte hinter 14-WD-WCAVY0638104 ein
New Disk registered (Serial WD-WCAVY0668913), smartfoo written, returned with 0. Sortier die Platte hinter ein
New Disk registered (Serial WD-WCAVY0604847), smartfoo written, returned with 0. Sortier die Platte hinter 0-WD-WCAVY0668913 ein
New Disk registered (Serial PK1131P6GAXMEU), smartfoo written, returned with 0. Sortier die Platte hinter 1-WD-WCAVY0604847 ein
New Disk registered (Serial WD-WCAVY0526585), smartfoo written, returned with 0. Sortier die Platte hinter 2-PK1131P6GAXMEU ein
New Disk registered (Serial WD-WCAVY0668975), smartfoo written, returned with 0. Sortier die Platte hinter 3-WD-WCAVY0526585 ein
New Disk registered (Serial WD-WCAVY0666746), smartfoo written, returned with 0. Sortier die Platte hinter 4-WD-WCAVY0668975 ein
New Disk registered (Serial WD-WCAVY0614165), smartfoo written, returned with 0. Sortier die Platte hinter 5-WD-WCAVY0666746 ein
New Disk registered (Serial WD-WCAVY0682861), smartfoo written, returned with 0. Sortier die Platte hinter 6-WD-WCAVY0614165 ein
New Disk registered (Serial WD-WCAVY0678439), smartfoo written, returned with 0. Sortier die Platte hinter 7-WD-WCAVY0682861 ein
New Disk registered (Serial WD-WCAVY0679907), smartfoo written, returned with 0. Sortier die Platte hinter 8-WD-WCAVY0678439 ein
New Disk registered (Serial WD-WCAVY0679884), smartfoo written, returned with 0. Sortier die Platte hinter 1-WD-WCAVY0604847 ein
New Disk registered (Serial WD-WCAVY0624962), smartfoo written, returned with 0. Sortier die Platte hinter 10-WD-WCAVY0679884 ein
New Disk registered (Serial WD-WCAVY0701411), smartfoo written, returned with 0. Sortier die Platte hinter 11-WD-WCAVY0624962 ein
New Disk registered (Serial WD-WCAVY2766594), smartfoo written, returned with 0. Sortier die Platte hinter 12-WD-WCAVY0701411 ein
New Disk registered (Serial WD-WCAVY0699365), smartfoo written, returned with 0. Sortier die Platte hinter 13-WD-WCAVY2766594 ein
New Disk registered (Serial WD-WCAVY4435879), smartfoo written, returned with 0. Sortier die Platte hinter 14-WD-WCAVY0699365 ein

View File

@ -1,94 +0,0 @@
abgefragt am Thu Jan 9 23:26:06 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Hitachi/HGST Ultrastar 7K4000
Device Model: HGST HUS724020ALE640
Serial Number: PK2134P5GBYKSX
LU WWN Device Id: 5 000cca 24ec56f18
Firmware Version: MJ6OA580
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Sizes: 512 bytes logical, 4096 bytes physical
Rotation Rate: 7200 rpm
Form Factor: 3.5 inches
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS T13/1699-D revision 4
SATA Version is: SATA 3.0, 6.0 Gb/s (current: 3.0 Gb/s)
Local Time is: Thu Jan 9 23:26:06 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x80) Offline data collection activity
was never started.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: ( 28) seconds.
Offline data collection
capabilities: (0x5b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
No Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 1) minutes.
Extended self-test routine
recommended polling time: ( 331) minutes.
SCT capabilities: (0x003d) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x000b 100 100 016 Pre-fail Always - 0
2 Throughput_Performance 0x0005 135 135 054 Pre-fail Offline - 85
3 Spin_Up_Time 0x0007 123 123 024 Pre-fail Always - 503 (Average 506)
4 Start_Stop_Count 0x0012 100 100 000 Old_age Always - 21
5 Reallocated_Sector_Ct 0x0033 100 100 005 Pre-fail Always - 0
7 Seek_Error_Rate 0x000b 100 100 067 Pre-fail Always - 0
8 Seek_Time_Performance 0x0005 124 124 020 Pre-fail Offline - 33
9 Power_On_Hours 0x0012 098 098 000 Old_age Always - 16583
10 Spin_Retry_Count 0x0013 100 100 060 Pre-fail Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 21
192 Power-Off_Retract_Count 0x0032 100 100 000 Old_age Always - 675
193 Load_Cycle_Count 0x0012 100 100 000 Old_age Always - 675
194 Temperature_Celsius 0x0002 253 253 000 Old_age Always - 20 (Min/Max 17/51)
196 Reallocated_Event_Count 0x0032 100 100 000 Old_age Always - 0
197 Current_Pending_Sector 0x0022 100 100 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0008 100 100 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x000a 200 200 000 Old_age Always - 0
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,116 +0,0 @@
abgefragt am Thu Jan 9 23:17:40 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE3 Serial ATA
Device Model: WDC WD3202ABYS-02B7A0
Serial Number: WD-WCAT1H381474
LU WWN Device Id: 5 0014ee 158af1201
Firmware Version: 02.03B03
User Capacity: 320,072,933,376 bytes [320 GB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 7200 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.5, 3.0 Gb/s
Local Time is: Thu Jan 9 23:17:40 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x84) Offline data collection activity
was suspended by an interrupting command from host.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: ( 6000) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 73) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 0
3 Spin_Up_Time 0x0027 200 195 021 Pre-fail Always - 991
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 61
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 045 045 000 Old_age Always - 40206
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 58
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 40
193 Load_Cycle_Count 0x0032 200 200 000 Old_age Always - 20
194 Temperature_Celsius 0x0022 124 091 000 Old_age Always - 19
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 0
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
Num Test_Description Status Remaining LifeTime(hours) LBA_of_first_error
# 1 Short offline Completed without error 00% 27074 -
# 2 Short offline Completed without error 00% 26906 -
# 3 Short offline Completed without error 00% 26738 -
# 4 Short offline Completed without error 00% 26570 -
# 5 Short offline Completed without error 00% 26402 -
# 6 Short offline Completed without error 00% 26235 -
# 7 Short offline Completed without error 00% 26067 -
# 8 Short offline Completed without error 00% 25899 -
# 9 Short offline Completed without error 00% 25731 -
#10 Short offline Completed without error 00% 25564 -
#11 Short offline Completed without error 00% 25396 -
#12 Short offline Completed without error 00% 25228 -
#13 Short offline Completed without error 00% 25060 -
#14 Short offline Completed without error 00% 24892 -
#15 Short offline Completed without error 00% 24724 -
#16 Short offline Completed without error 00% 24557 -
#17 Short offline Completed without error 00% 24389 -
#18 Short offline Completed without error 00% 24221 -
#19 Short offline Completed without error 00% 24053 -
#20 Short offline Completed without error 00% 23885 -
#21 Short offline Completed without error 00% 23718 -
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:19:20 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B0
Serial Number: WD-WCAVY0338189
LU WWN Device Id: 5 0014ee 2585d8e4d
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:19:20 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x84) Offline data collection activity
was suspended by an interrupting command from host.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (43200) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 491) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 2018
3 Spin_Up_Time 0x0027 142 142 021 Pre-fail Always - 9891
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 63
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 002 002 000 Old_age Always - 71984
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 63
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 56
193 Load_Cycle_Count 0x0032 080 080 000 Old_age Always - 360033
194 Temperature_Celsius 0x0022 133 090 000 Old_age Always - 19
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 199 199 000 Old_age Always - 330
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 10
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 68
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:23:31 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B0
Serial Number: WD-WCAVY0525179
LU WWN Device Id: 5 0014ee 2586aef97
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:23:31 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x82) Offline data collection activity
was completed without error.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (42000) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 478) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 11
3 Spin_Up_Time 0x0027 147 146 021 Pre-fail Always - 9650
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 125
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 001 001 000 Old_age Always - 73391
10 Spin_Retry_Count 0x0032 100 100 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 100 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 124
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 110
193 Load_Cycle_Count 0x0032 083 083 000 Old_age Always - 353039
194 Temperature_Celsius 0x0022 133 084 000 Old_age Always - 19
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 0
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:21:16 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B0
Serial Number: WD-WCAVY0571467
LU WWN Device Id: 5 0014ee 25873b3db
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:21:16 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x82) Offline data collection activity
was completed without error.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (42180) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 480) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 2516
3 Spin_Up_Time 0x0027 147 147 021 Pre-fail Always - 9650
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 68
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 001 001 000 Old_age Always - 73389
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 68
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 56
193 Load_Cycle_Count 0x0032 098 098 000 Old_age Always - 306935
194 Temperature_Celsius 0x0022 132 084 000 Old_age Always - 20
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 8
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:16:55 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B0
Serial Number: WD-WCAVY0591530
LU WWN Device Id: 5 0014ee 2add11def
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:16:55 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x82) Offline data collection activity
was completed without error.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (41460) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 472) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 84
3 Spin_Up_Time 0x0027 152 149 021 Pre-fail Always - 9400
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 55
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 014 014 000 Old_age Always - 63241
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 55
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 49
193 Load_Cycle_Count 0x0032 119 119 000 Old_age Always - 245810
194 Temperature_Celsius 0x0022 133 097 000 Old_age Always - 19
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 0
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:15:27 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B0
Serial Number: WD-WCAVY0638790
LU WWN Device Id: 5 0014ee 2adde46fb
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:15:27 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x84) Offline data collection activity
was suspended by an interrupting command from host.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (40080) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 456) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 105
3 Spin_Up_Time 0x0027 153 152 021 Pre-fail Always - 9350
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 62
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 002 002 000 Old_age Always - 71993
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 62
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 54
193 Load_Cycle_Count 0x0032 081 081 000 Old_age Always - 359271
194 Temperature_Celsius 0x0022 133 095 000 Old_age Always - 19
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 0
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:18:22 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B0
Serial Number: WD-WCAVY0666732
LU WWN Device Id: 5 0014ee 2addc7ded
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:18:22 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x84) Offline data collection activity
was suspended by an interrupting command from host.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (41280) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 470) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 19
3 Spin_Up_Time 0x0027 139 137 021 Pre-fail Always - 10016
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 67
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 029 029 000 Old_age Always - 52167
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 67
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 62
193 Load_Cycle_Count 0x0032 126 126 000 Old_age Always - 222361
194 Temperature_Celsius 0x0022 133 084 000 Old_age Always - 19
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 0
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:24:39 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B1
Serial Number: WD-WCAVY0673162
LU WWN Device Id: 5 0014ee 25886e4e1
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:24:39 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x84) Offline data collection activity
was suspended by an interrupting command from host.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (41460) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 472) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 195 182 051 Pre-fail Always - 821147
3 Spin_Up_Time 0x0027 147 145 021 Pre-fail Always - 9625
4 Start_Stop_Count 0x0032 094 094 000 Old_age Always - 6157
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 022 022 000 Old_age Always - 57167
10 Spin_Retry_Count 0x0032 100 100 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 100 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 186
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 131
193 Load_Cycle_Count 0x0032 123 123 000 Old_age Always - 231467
194 Temperature_Celsius 0x0022 133 091 000 Old_age Always - 19
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 12
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 198 001 000 Old_age Offline - 458
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:20:35 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B0
Serial Number: WD-WCAVY0676530
LU WWN Device Id: 5 0014ee 2adddb1a8
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:20:35 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x84) Offline data collection activity
was suspended by an interrupting command from host.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (40200) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 457) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 881
3 Spin_Up_Time 0x0027 145 145 021 Pre-fail Always - 9708
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 62
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 002 002 000 Old_age Always - 71985
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 62
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 55
193 Load_Cycle_Count 0x0032 080 080 000 Old_age Always - 360203
194 Temperature_Celsius 0x0022 133 095 000 Old_age Always - 19
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 0
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:22:54 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B0
Serial Number: WD-WCAVY0682921
LU WWN Device Id: 5 0014ee 203349307
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:22:55 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x84) Offline data collection activity
was suspended by an interrupting command from host.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (39780) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 453) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 109
3 Spin_Up_Time 0x0027 145 144 021 Pre-fail Always - 9733
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 63
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 001 001 000 Old_age Always - 76842
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 63
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 52
193 Load_Cycle_Count 0x0032 074 074 000 Old_age Always - 378533
194 Temperature_Celsius 0x0022 133 084 000 Old_age Always - 19
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 1
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 182 182 000 Old_age Offline - 3618
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:26:44 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B1
Serial Number: WD-WCAVY2693687
LU WWN Device Id: 5 0014ee 259752c3b
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:26:44 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x84) Offline data collection activity
was suspended by an interrupting command from host.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (39660) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 452) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 466
3 Spin_Up_Time 0x0027 151 149 021 Pre-fail Always - 9433
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 33
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 021 021 000 Old_age Always - 57708
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 33
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 28
193 Load_Cycle_Count 0x0032 118 118 000 Old_age Always - 246536
194 Temperature_Celsius 0x0022 133 090 000 Old_age Always - 19
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 188 000 Old_age Offline - 0
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:22:16 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B1
Serial Number: WD-WCAVY2828160
LU WWN Device Id: 5 0014ee 2aeda4590
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:22:16 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x84) Offline data collection activity
was suspended by an interrupting command from host.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (41760) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 475) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 7
3 Spin_Up_Time 0x0027 149 149 021 Pre-fail Always - 9533
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 49
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 001 001 000 Old_age Always - 72532
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 49
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 46
193 Load_Cycle_Count 0x0032 075 075 000 Old_age Always - 376986
194 Temperature_Celsius 0x0022 133 083 000 Old_age Always - 19
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 22
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 187 187 000 Old_age Offline - 2800
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:25:13 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B1
Serial Number: WD-WCAVY5125292
LU WWN Device Id: 5 0014ee 2af86acba
Firmware Version: 04.05K05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:25:13 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x84) Offline data collection activity
was suspended by an interrupting command from host.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (40800) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 464) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 12
3 Spin_Up_Time 0x0027 148 144 021 Pre-fail Always - 9591
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 99
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 042 042 000 Old_age Always - 42726
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 99
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 72
193 Load_Cycle_Count 0x0032 092 092 000 Old_age Always - 326260
194 Temperature_Celsius 0x0022 134 099 000 Old_age Always - 18
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 0
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:16:19 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4
Device Model: WDC WD2003FYYS-02W0B1
Serial Number: WD-WCAY00824567
LU WWN Device Id: 5 0014ee 207cc0977
Firmware Version: 01.01D02
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 7200 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 3.0, 3.0 Gb/s (current: 3.0 Gb/s)
Local Time is: Thu Jan 9 23:16:19 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x82) Offline data collection activity
was completed without error.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (29580) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 286) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 0
3 Spin_Up_Time 0x0027 253 253 021 Pre-fail Always - 9166
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 45
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 100 253 000 Old_age Always - 0
9 Power_On_Hours 0x0032 072 071 000 Old_age Always - 20989
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 43
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 42
193 Load_Cycle_Count 0x0032 200 200 000 Old_age Always - 2
194 Temperature_Celsius 0x0022 133 086 000 Old_age Always - 19
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 0
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:24:05 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4
Device Model: WDC WD2003FYYS-02W0B1
Serial Number: WD-WCAY01275965
LU WWN Device Id: 5 0014ee 2b2c87a8b
Firmware Version: 01.01D02
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 7200 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 3.0, 3.0 Gb/s (current: 3.0 Gb/s)
Local Time is: Thu Jan 9 23:24:05 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x82) Offline data collection activity
was completed without error.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (30480) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 295) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 0
3 Spin_Up_Time 0x0027 253 253 021 Pre-fail Always - 8675
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 36
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 071 070 000 Old_age Always - 21615
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 33
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 32
193 Load_Cycle_Count 0x0032 200 200 000 Old_age Always - 3
194 Temperature_Celsius 0x0022 132 084 000 Old_age Always - 20
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 0
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:39:31 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B0
Serial Number: WD-WCAVY0547640
LU WWN Device Id: 5 0014ee 2586c1332
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:39:31 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x82) Offline data collection activity
was completed without error.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (41580) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 473) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 8
3 Spin_Up_Time 0x0027 145 145 021 Pre-fail Always - 9716
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 41
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 001 001 000 Old_age Always - 80871
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 41
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 38
193 Load_Cycle_Count 0x0032 058 058 000 Old_age Always - 428066
194 Temperature_Celsius 0x0022 133 094 000 Old_age Always - 19
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 0
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:37:24 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B0
Serial Number: WD-WCAVY0590004
LU WWN Device Id: 5 0014ee 2adc8c395
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:37:24 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x84) Offline data collection activity
was suspended by an interrupting command from host.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (41580) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 473) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 2
3 Spin_Up_Time 0x0027 148 148 021 Pre-fail Always - 9600
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 63
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 036 036 000 Old_age Always - 47161
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 62
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 57
193 Load_Cycle_Count 0x0032 125 125 000 Old_age Always - 225545
194 Temperature_Celsius 0x0022 133 083 000 Old_age Always - 19
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 0
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:31:43 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B0
Serial Number: WD-WCAVY0666778
LU WWN Device Id: 5 0014ee 2033175c6
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:31:43 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x84) Offline data collection activity
was suspended by an interrupting command from host.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (40560) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 462) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 135
3 Spin_Up_Time 0x0027 140 140 021 Pre-fail Always - 10000
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 90
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 001 001 000 Old_age Always - 73399
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 90
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 71
193 Load_Cycle_Count 0x0032 099 099 000 Old_age Always - 305872
194 Temperature_Celsius 0x0022 133 084 000 Old_age Always - 19
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 1
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:32:58 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B0
Serial Number: WD-WCAVY0676430
LU WWN Device Id: 5 0014ee 2adddd6bd
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:32:58 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x82) Offline data collection activity
was completed without error.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (39480) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 450) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 821
3 Spin_Up_Time 0x0027 143 143 021 Pre-fail Always - 9816
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 56
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 001 001 000 Old_age Always - 82138
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 56
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 47
193 Load_Cycle_Count 0x0032 057 057 000 Old_age Always - 429080
194 Temperature_Celsius 0x0022 134 095 000 Old_age Always - 18
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 4
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:38:16 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B0
Serial Number: WD-WCAVY0676475
LU WWN Device Id: 5 0014ee 25888666b
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:38:16 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x82) Offline data collection activity
was completed without error.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (40080) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 456) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 1408
3 Spin_Up_Time 0x0027 149 149 021 Pre-fail Always - 9525
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 57
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 001 001 000 Old_age Always - 82154
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 57
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 49
193 Load_Cycle_Count 0x0032 060 060 000 Old_age Always - 420205
194 Temperature_Celsius 0x0022 133 096 000 Old_age Always - 19
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 37
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:38:48 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B0
Serial Number: WD-WCAVY0677383
LU WWN Device Id: 5 0014ee 258882560
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:38:48 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x84) Offline data collection activity
was suspended by an interrupting command from host.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (40500) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 461) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 72
3 Spin_Up_Time 0x0027 141 141 021 Pre-fail Always - 9925
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 58
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 008 008 000 Old_age Always - 67750
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 57
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 51
193 Load_Cycle_Count 0x0032 067 067 000 Old_age Always - 401811
194 Temperature_Celsius 0x0022 133 093 000 Old_age Always - 19
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 0
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:34:12 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B0
Serial Number: WD-WCAVY0680117
LU WWN Device Id: 5 0014ee 25888abcb
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:34:12 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x84) Offline data collection activity
was suspended by an interrupting command from host.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (40860) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 465) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 79
3 Spin_Up_Time 0x0027 143 143 021 Pre-fail Always - 9841
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 56
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 019 019 000 Old_age Always - 59571
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 55
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 50
193 Load_Cycle_Count 0x0032 067 067 000 Old_age Always - 400026
194 Temperature_Celsius 0x0022 133 092 000 Old_age Always - 19
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 1
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:35:31 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B0
Serial Number: WD-WCAVY0682655
LU WWN Device Id: 5 0014ee 2033501c0
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:35:31 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x82) Offline data collection activity
was completed without error.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (40800) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 464) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 5
3 Spin_Up_Time 0x0027 141 141 021 Pre-fail Always - 9925
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 56
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 001 001 000 Old_age Always - 77509
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 56
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 44
193 Load_Cycle_Count 0x0032 074 074 000 Old_age Always - 378038
194 Temperature_Celsius 0x0022 133 083 000 Old_age Always - 19
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 0
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:40:07 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B0
Serial Number: WD-WCAVY0683987
LU WWN Device Id: 5 0014ee 258883a5d
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:40:08 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x84) Offline data collection activity
was suspended by an interrupting command from host.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (41400) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 471) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 11
3 Spin_Up_Time 0x0027 140 140 021 Pre-fail Always - 10000
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 53
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 002 002 000 Old_age Always - 71950
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 53
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 47
193 Load_Cycle_Count 0x0032 099 099 000 Old_age Always - 304998
194 Temperature_Celsius 0x0022 133 096 000 Old_age Always - 19
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 0
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:34:50 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B0
Serial Number: WD-WCAVY0699279
LU WWN Device Id: 5 0014ee 2588af0f8
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:34:50 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x84) Offline data collection activity
was suspended by an interrupting command from host.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (40500) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 461) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 71
3 Spin_Up_Time 0x0027 140 140 021 Pre-fail Always - 9983
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 65
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 001 001 000 Old_age Always - 77313
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 65
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 52
193 Load_Cycle_Count 0x0032 075 075 000 Old_age Always - 377570
194 Temperature_Celsius 0x0022 134 083 000 Old_age Always - 18
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 0
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:36:46 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B0
Serial Number: WD-WCAVY0978559
LU WWN Device Id: 5 0014ee 2ae272a71
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:36:46 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x82) Offline data collection activity
was completed without error.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (41580) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 473) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 17
3 Spin_Up_Time 0x0027 152 152 021 Pre-fail Always - 9375
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 44
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 016 016 000 Old_age Always - 61880
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 43
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 38
193 Load_Cycle_Count 0x0032 125 125 000 Old_age Always - 227368
194 Temperature_Celsius 0x0022 133 096 000 Old_age Always - 19
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 0
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:36:07 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B1
Serial Number: WD-WCAVY1230145
LU WWN Device Id: 5 0014ee 258ec8684
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:36:07 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x82) Offline data collection activity
was completed without error.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (40260) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 459) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 0
3 Spin_Up_Time 0x0027 143 143 021 Pre-fail Always - 9825
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 48
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 073 073 000 Old_age Always - 19970
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 48
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 34
193 Load_Cycle_Count 0x0032 118 118 000 Old_age Always - 246413
194 Temperature_Celsius 0x0022 134 093 000 Old_age Always - 18
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 0
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:32:22 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B1
Serial Number: WD-WCAVY2991730
LU WWN Device Id: 5 0014ee 259935131
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:32:22 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x82) Offline data collection activity
was completed without error.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (41580) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 473) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 196 196 051 Pre-fail Always - 2168163
3 Spin_Up_Time 0x0027 158 155 021 Pre-fail Always - 9058
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 42
5 Reallocated_Sector_Ct 0x0033 167 167 140 Pre-fail Always - 262
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 001 001 000 Old_age Always - 79415
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 41
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 38
193 Load_Cycle_Count 0x0032 029 029 000 Old_age Always - 513474
194 Temperature_Celsius 0x0022 134 099 000 Old_age Always - 18
196 Reallocated_Event_Count 0x0032 001 001 000 Old_age Always - 246
197 Current_Pending_Sector 0x0032 197 196 000 Old_age Always - 1103
198 Offline_Uncorrectable 0x0030 198 197 000 Old_age Offline - 880
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 020 020 000 Old_age Offline - 36204
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:33:35 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-02W3B0
Serial Number: WD-WCAVY3665674
LU WWN Device Id: 5 0014ee 259ce2aa0
Firmware Version: 04.01G01
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:33:35 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x82) Offline data collection activity
was completed without error.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (42060) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 479) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 671
3 Spin_Up_Time 0x0027 227 227 021 Pre-fail Always - 10625
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 24
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 019 019 000 Old_age Always - 59467
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 23
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 22
193 Load_Cycle_Count 0x0032 200 200 000 Old_age Always - 1
194 Temperature_Celsius 0x0022 134 101 000 Old_age Always - 18
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 16
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,54 +0,0 @@
abgefragt am Thu Jan 9 23:45:46 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
/dev/loop3: Unable to detect device type
/dev/loop0: Unable to detect device type
Please specify device type with the -d option.
Please specify device type with the -d option.
Use smartctl -h to get a usage summary
/dev/dm-1: Unable to detect device type
Use smartctl -h to get a usage summary
Please specify device type with the -d option.
Use smartctl -h to get a usage summary
/dev/loop2: Unable to detect device type
Please specify device type with the -d option.
Use smartctl -h to get a usage summary
/dev/loop1: Unable to detect device type
Please specify device type with the -d option.
Use smartctl -h to get a usage summary
/dev/dm-0: Unable to detect device type
Please specify device type with the -d option.
Use smartctl -h to get a usage summary
/dev/loop6: Unable to detect device type
Please specify device type with the -d option.
Use smartctl -h to get a usage summary
/dev/loop5: Unable to detect device type
Please specify device type with the -d option.
Use smartctl -h to get a usage summary
/dev/loop7: Unable to detect device type
Please specify device type with the -d option.
Use smartctl -h to get a usage summary
/dev/loop4: Unable to detect device type
Please specify device type with the -d option.
Use smartctl -h to get a usage summary

View File

@ -1,94 +0,0 @@
abgefragt am Thu Jan 9 23:51:56 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Hitachi/HGST Ultrastar 7K4000
Device Model: HGST HUS724020ALE640
Serial Number: PK2134P5GBMEDX
LU WWN Device Id: 5 000cca 24ec54907
Firmware Version: MJ6OA580
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Sizes: 512 bytes logical, 4096 bytes physical
Rotation Rate: 7200 rpm
Form Factor: 3.5 inches
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS T13/1699-D revision 4
SATA Version is: SATA 3.0, 6.0 Gb/s (current: 1.5 Gb/s)
Local Time is: Thu Jan 9 23:51:56 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x80) Offline data collection activity
was never started.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: ( 28) seconds.
Offline data collection
capabilities: (0x5b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
No Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 1) minutes.
Extended self-test routine
recommended polling time: ( 343) minutes.
SCT capabilities: (0x003d) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x000b 100 100 016 Pre-fail Always - 0
2 Throughput_Performance 0x0005 135 135 054 Pre-fail Offline - 85
3 Spin_Up_Time 0x0007 121 121 024 Pre-fail Always - 516 (Average 516)
4 Start_Stop_Count 0x0012 100 100 000 Old_age Always - 19
5 Reallocated_Sector_Ct 0x0033 100 100 005 Pre-fail Always - 0
7 Seek_Error_Rate 0x000b 100 100 067 Pre-fail Always - 0
8 Seek_Time_Performance 0x0005 121 121 020 Pre-fail Offline - 34
9 Power_On_Hours 0x0012 098 098 000 Old_age Always - 16584
10 Spin_Retry_Count 0x0013 100 100 060 Pre-fail Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 19
192 Power-Off_Retract_Count 0x0032 100 100 000 Old_age Always - 683
193 Load_Cycle_Count 0x0012 100 100 000 Old_age Always - 683
194 Temperature_Celsius 0x0002 253 253 000 Old_age Always - 18 (Min/Max 16/49)
196 Reallocated_Event_Count 0x0032 100 100 000 Old_age Always - 0
197 Current_Pending_Sector 0x0022 100 100 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0008 100 100 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x000a 200 200 000 Old_age Always - 0
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:57:11 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B0
Serial Number: WD-WCAVY0381257
LU WWN Device Id: 5 0014ee 258412060
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:57:11 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x84) Offline data collection activity
was suspended by an interrupting command from host.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (41160) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 469) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 161
3 Spin_Up_Time 0x0027 146 146 021 Pre-fail Always - 9700
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 89
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 001 001 000 Old_age Always - 73393
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 89
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 71
193 Load_Cycle_Count 0x0032 084 084 000 Old_age Always - 350118
194 Temperature_Celsius 0x0022 133 083 000 Old_age Always - 19
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 4
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 0
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,178 +0,0 @@
abgefragt am Thu Jan 9 23:59:14 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B0
Serial Number: WD-WCAVY0532420
LU WWN Device Id: 5 0014ee 20315cda2
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:59:14 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x84) Offline data collection activity
was suspended by an interrupting command from host.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (41160) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 469) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 9250
3 Spin_Up_Time 0x0027 149 149 021 Pre-fail Always - 9516
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 70
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 001 001 000 Old_age Always - 77024
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 70
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 65
193 Load_Cycle_Count 0x0032 092 092 000 Old_age Always - 325911
194 Temperature_Celsius 0x0022 133 084 000 Old_age Always - 19
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 196 196 000 Old_age Always - 1460
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 199 199 000 Old_age Offline - 264
SMART Error Log Version: 1
Warning: ATA error count 119 inconsistent with error log pointer 3
ATA Error Count: 119 (device log contains only the most recent five errors)
CR = Command Register [HEX]
FR = Features Register [HEX]
SC = Sector Count Register [HEX]
SN = Sector Number Register [HEX]
CL = Cylinder Low Register [HEX]
CH = Cylinder High Register [HEX]
DH = Device/Head Register [HEX]
DC = Device Command Register [HEX]
ER = Error register [HEX]
ST = Status register [HEX]
Powered_Up_Time is measured from power on, and printed as
DDd+hh:mm:SS.sss where DD=days, hh=hours, mm=minutes,
SS=sec, and sss=millisec. It "wraps" after 49.710 days.
Error 119 occurred at disk power-on lifetime: 11487 hours (478 days + 15 hours)
When the command that caused the error occurred, the device was active or idle.
After command completion occurred, registers were:
ER ST SC SN CL CH DH
-- -- -- -- -- -- --
40 51 80 80 20 08 40 Error: UNC at LBA = 0x00082080 = 532608
Commands leading to the command that caused the error were:
CR FR SC SN CL CH DH DC Powered_Up_Time Command/Feature_Name
-- -- -- -- -- -- -- -- ---------------- --------------------
40 00 80 80 20 08 40 00 00:31:24.474 READ VERIFY SECTOR(S)
ef 03 46 00 00 00 00 00 00:31:05.423 SET FEATURES [Set transfer mode]
40 00 80 80 20 08 40 00 00:30:58.321 READ VERIFY SECTOR(S)
ef 03 46 00 00 00 00 00 00:30:43.285 SET FEATURES [Set transfer mode]
40 00 80 00 20 08 40 00 00:30:36.182 READ VERIFY SECTOR(S)
Error 118 occurred at disk power-on lifetime: 11487 hours (478 days + 15 hours)
When the command that caused the error occurred, the device was active or idle.
After command completion occurred, registers were:
ER ST SC SN CL CH DH
-- -- -- -- -- -- --
40 51 80 80 20 08 40 Error: UNC at LBA = 0x00082080 = 532608
Commands leading to the command that caused the error were:
CR FR SC SN CL CH DH DC Powered_Up_Time Command/Feature_Name
-- -- -- -- -- -- -- -- ---------------- --------------------
40 00 80 80 20 08 40 00 00:30:58.321 READ VERIFY SECTOR(S)
ef 03 46 00 00 00 00 00 00:30:43.285 SET FEATURES [Set transfer mode]
40 00 80 00 20 08 40 00 00:30:36.182 READ VERIFY SECTOR(S)
ef 03 46 00 00 00 00 00 00:30:17.131 SET FEATURES [Set transfer mode]
40 00 80 00 20 08 40 00 00:30:10.028 READ VERIFY SECTOR(S)
Error 117 occurred at disk power-on lifetime: 11487 hours (478 days + 15 hours)
When the command that caused the error occurred, the device was active or idle.
After command completion occurred, registers were:
ER ST SC SN CL CH DH
-- -- -- -- -- -- --
40 51 80 00 20 08 40 Error: UNC at LBA = 0x00082000 = 532480
Commands leading to the command that caused the error were:
CR FR SC SN CL CH DH DC Powered_Up_Time Command/Feature_Name
-- -- -- -- -- -- -- -- ---------------- --------------------
40 00 80 00 20 08 40 00 00:30:36.182 READ VERIFY SECTOR(S)
ef 03 46 00 00 00 00 00 00:30:17.131 SET FEATURES [Set transfer mode]
40 00 80 00 20 08 40 00 00:30:10.028 READ VERIFY SECTOR(S)
ef 03 46 00 00 00 00 00 00:29:50.977 SET FEATURES [Set transfer mode]
40 00 80 00 20 08 40 00 00:29:43.874 READ VERIFY SECTOR(S)
Error 116 occurred at disk power-on lifetime: 11487 hours (478 days + 15 hours)
When the command that caused the error occurred, the device was active or idle.
After command completion occurred, registers were:
ER ST SC SN CL CH DH
-- -- -- -- -- -- --
40 51 80 00 20 08 40 Error: UNC at LBA = 0x00082000 = 532480
Commands leading to the command that caused the error were:
CR FR SC SN CL CH DH DC Powered_Up_Time Command/Feature_Name
-- -- -- -- -- -- -- -- ---------------- --------------------
40 00 80 00 20 08 40 00 00:30:10.028 READ VERIFY SECTOR(S)
ef 03 46 00 00 00 00 00 00:29:50.977 SET FEATURES [Set transfer mode]
40 00 80 00 20 08 40 00 00:29:43.874 READ VERIFY SECTOR(S)
ef 03 46 00 00 00 00 00 00:29:24.823 SET FEATURES [Set transfer mode]
40 00 80 00 20 08 40 00 00:29:17.720 READ VERIFY SECTOR(S)
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:50:35 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B0
Serial Number: WD-WCAVY0588538
LU WWN Device Id: 5 0014ee 2adc8ccf5
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:50:35 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x84) Offline data collection activity
was suspended by an interrupting command from host.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (42900) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 488) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 1146
3 Spin_Up_Time 0x0027 151 151 021 Pre-fail Always - 9441
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 66
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 001 001 000 Old_age Always - 73393
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 66
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 55
193 Load_Cycle_Count 0x0032 081 081 000 Old_age Always - 358431
194 Temperature_Celsius 0x0022 133 084 000 Old_age Always - 19
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 99
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 77
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 197 196 000 Old_age Offline - 732
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:55:12 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B0
Serial Number: WD-WCAVY0666744
LU WWN Device Id: 5 0014ee 258870da0
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:55:12 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x84) Offline data collection activity
was suspended by an interrupting command from host.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (40860) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 465) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 25
3 Spin_Up_Time 0x0027 144 144 021 Pre-fail Always - 9758
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 89
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 001 001 000 Old_age Always - 73402
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 88
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 69
193 Load_Cycle_Count 0x0032 081 081 000 Old_age Always - 358160
194 Temperature_Celsius 0x0022 133 084 000 Old_age Always - 19
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 1
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:54:41 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B0
Serial Number: WD-WCAVY0666808
LU WWN Device Id: 5 0014ee 25886a923
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:54:41 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x82) Offline data collection activity
was completed without error.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (39900) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 454) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 1
3 Spin_Up_Time 0x0027 147 147 021 Pre-fail Always - 9616
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 53
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 019 019 000 Old_age Always - 59607
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 53
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 45
193 Load_Cycle_Count 0x0032 067 067 000 Old_age Always - 399694
194 Temperature_Celsius 0x0022 134 090 000 Old_age Always - 18
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 0
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:57:47 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B0
Serial Number: WD-WCAVY0668963
LU WWN Device Id: 5 0014ee 203313eaf
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:57:48 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x84) Offline data collection activity
was suspended by an interrupting command from host.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (40080) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 456) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 96
3 Spin_Up_Time 0x0027 148 146 021 Pre-fail Always - 9591
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 90
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 029 029 000 Old_age Always - 51958
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 90
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 73
193 Load_Cycle_Count 0x0032 122 122 000 Old_age Always - 234506
194 Temperature_Celsius 0x0022 133 084 000 Old_age Always - 19
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 0
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 200 200 000 Old_age Offline - 0
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

View File

@ -1,95 +0,0 @@
abgefragt am Thu Jan 9 23:54:03 CET 2020
smartctl 7.0 2018-12-30 r4883 [x86_64-linux-5.3.0-26-generic] (local build)
Copyright (C) 2002-18, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Model Family: Western Digital RE4-GP
Device Model: WDC WD2002FYPS-01U1B0
Serial Number: WD-WCAVY0676695
LU WWN Device Id: 5 0014ee 25888346a
Firmware Version: 04.05G05
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
Sector Size: 512 bytes logical/physical
Rotation Rate: 5400 rpm
Device is: In smartctl database [for details use: -P show]
ATA Version is: ATA8-ACS (minor revision not indicated)
SATA Version is: SATA 2.6, 3.0 Gb/s
Local Time is: Thu Jan 9 23:54:03 2020 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF READ SMART DATA SECTION ===
SMART overall-health self-assessment test result: PASSED
General SMART Values:
Offline data collection status: (0x82) Offline data collection activity
was completed without error.
Auto Offline Data Collection: Enabled.
Self-test execution status: ( 0) The previous self-test routine completed
without error or no self-test has ever
been run.
Total time to complete Offline
data collection: (40860) seconds.
Offline data collection
capabilities: (0x7b) SMART execute Offline immediate.
Auto Offline data collection on/off support.
Suspend Offline collection upon new
command.
Offline surface scan supported.
Self-test supported.
Conveyance Self-test supported.
Selective Self-test supported.
SMART capabilities: (0x0003) Saves SMART data before entering
power-saving mode.
Supports SMART auto save timer.
Error logging capability: (0x01) Error logging supported.
General Purpose Logging supported.
Short self-test routine
recommended polling time: ( 2) minutes.
Extended self-test routine
recommended polling time: ( 465) minutes.
Conveyance self-test routine
recommended polling time: ( 5) minutes.
SCT capabilities: (0x303f) SCT Status supported.
SCT Error Recovery Control supported.
SCT Feature Control supported.
SCT Data Table supported.
SMART Attributes Data Structure revision number: 16
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 23
3 Spin_Up_Time 0x0027 137 137 021 Pre-fail Always - 10108
4 Start_Stop_Count 0x0032 100 100 000 Old_age Always - 63
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
9 Power_On_Hours 0x0032 001 001 000 Old_age Always - 77285
10 Spin_Retry_Count 0x0032 100 253 000 Old_age Always - 0
11 Calibration_Retry_Count 0x0032 100 253 000 Old_age Always - 0
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 63
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 49
193 Load_Cycle_Count 0x0032 075 075 000 Old_age Always - 377367
194 Temperature_Celsius 0x0022 133 082 000 Old_age Always - 19
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 18
198 Offline_Uncorrectable 0x0030 200 200 000 Old_age Offline - 6
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
200 Multi_Zone_Error_Rate 0x0008 189 189 000 Old_age Offline - 2206
SMART Error Log Version: 1
No Errors Logged
SMART Self-test log structure revision number 1
No self-tests have been logged. [To run self-tests, use: smartctl -t]
SMART Selective self-test log data structure revision number 1
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
1 0 0 Not_testing
2 0 0 Not_testing
3 0 0 Not_testing
4 0 0 Not_testing
5 0 0 Not_testing
Selective self-test flags (0x0):
After scanning selected spans, do NOT read-scan remainder of disk.
If Selective self-test is pending on power-up, resume after 0 minute delay.

Some files were not shown because too many files have changed in this diff Show More