Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vnegi10/hdd_test_data_analysis
https://github.com/vnegi10/hdd_test_data_analysis
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/vnegi10/hdd_test_data_analysis
- Owner: vnegi10
- Created: 2023-01-31T21:25:33.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-02-12T21:14:20.000Z (almost 2 years ago)
- Last Synced: 2024-11-29T03:13:03.287Z (about 1 month ago)
- Language: Julia
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## HDD_test_data_analysis
In this Pluto notebook, we will analyze hard drive S.M.A.R.T. data graciously provided by
Backblaze. The quaterly CSV data are bundled together into a zipped file, which
can be downloaded from [here.](https://www.backblaze.com/b2/hard-drive-test-data.html)## Data
HDD S.M.A.R.T. data has been made available by Backblaze for free and non-profit use. Due to
the large size of each quarterly dataset (~ 7.1 GB), they are not added here. Make sure to
first download and extract them into a "data" folder within the root of this cloned repository.
Definition of various S.M.A.R.T. attributes can be found [here.](http://ntfs.com/disk-monitor-smart-attributes.htm)## How to use?
Install Pluto.jl (if not done already) by executing the following commands in your Julia REPL:
using Pkg
Pkg.add("Pluto")
using Pluto
Pluto.run()Clone this repository and open **HDD_test_data_analysis** in your Pluto browser window. That's it!
You are good to go.