1
0
mirror of https://github.com/byReqz/stocheck.git synced 2024-09-28 19:43:14 +00:00
stocheck/README.md
2021-04-01 11:41:29 +02:00

88 lines
2.6 KiB
Markdown

# stocheck
quick and dirty smart value checker
### features:
- sata/nvme support
- show smart info and self-check results
<br>
supports most common raid-controller brands (but not all models): <br>
- 3ware (series 6000, 7000, 8000, 9000 and 9750) <br>
- adaptec (smartraid/aacraid not yet implemented) <br>
- lsi/dell <br>
# contributing
As different drives have different arguments, there are always ones which im gonna miss out on. Please submit smart arguments that you think to be missing as issue or merge request.
# usage
Usage: stocheck (options) <br>
Options: <br>
-h/--help -- show help <br>
-u/--update -- update the script <br>
### **running it on a remote machine:**
**running from the local file (can be automated with cron):**
```bash
ssh root@remote 'bash -s' < stocheck.sh
```
or
**running directly from github**
```bash
ssh root@remote "curl -s "https://raw.githubusercontent.com/byReqz/stocheck/main/stocheck.sh" | bash"
```
**proper alias:**
```bash
echo "function stocheck_remote { ssh root@'$'1 'bash -s' < ~/stocheck.sh; }" >> ~/.bashrc
echo "alias stocheck=stocheck_remote" >> ~/.bashrc
```
# installation
1. download the script: <br>
```bash
wget https://git.byreqz.de/byreqz/stocheck/raw/branch/main/stocheck.sh
```
2. run it with <br>
```bash
bash stocheck.sh
```
or <br>
```bash
chmod +x stockheck.sh && ./stocheck.sh
```
3. optionally alias it <br>
```bash
alias stocheck="~/stocheck.sh"
```
# sample output
```bash
=== sata drive check: ===
-------------------------
1 Drives found
-------------------------
------------------- /dev/sda --------------------
=== START OF INFORMATION SECTION ===
Device Model: INTEL XXXXXX
Serial Number: XXXXXXXXXXXX
Firmware Version: LT2i
User Capacity: 240.057.409.536 bytes [240 GB]
Sector Size: 512 bytes logical/physical
Rotation Rate: Solid State Device
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
=== START OF SELF-ASSESSMENT TEST RESULT ===
SMART overall-health self-assessment test result: PASSED
=== START OF READ SMART DATA SECTION ===
5 Reallocated_Sector_Ct 0x0032 100 100 000 Old_age Always - 0
9 Power_On_Hours 0x0032 100 100 000 Old_age Always - 1922
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 2115
187 Reported_Uncorrect 0x0032 100 100 000 Old_age Always - 1
194 Temperature_Celsius 0x0032 033 100 000 Old_age Always - 33 (Min/Max -20/75)
233 Media_Wearout_Indicator 0x0032 081 100 000 Old_age Always - 0
-------------------------------------------------
```