Skip to content

Instantly share code, notes, and snippets.

0SY2YP4A

bukkit# smartctl -a /dev/sdj
smartctl 7.2 2020-12-30 r5155 [x86_64-linux-5.10.0-21-amd64] (local build)
Copyright (C) 2002-20, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF INFORMATION SECTION ===
Vendor:               IBM-SSG
Product:              HSVJ1P6
@BrianPuccio
BrianPuccio / gist:3e93077cc879e8bfeafe612c96a2242c
Created February 14, 2017 04:27
SMART Data for Some 6TB SATA HDDs
************************
***** WOL240333601 *****
************************
smartctl 6.4 2014-10-07 r4002 [x86_64-linux-3.16.0-4-amd64] (local build)
Copyright (C) 2002-14, Bruce Allen, Christian Franke, www.smartmontools.org
=== START OF INFORMATION SECTION ===
Device Model: WL6000GSA6457
Serial Number: WOL240333601
LU WWN Device Id: 0 000000 000000000
javascript: (function () {
var things = document.querySelectorAll("div.thing");
for (var j = things.length - 1; j > 0; j--) {
var thing = things[j],
entry = thing.querySelectorAll("div.entry")[0],
thumb = thing.querySelectorAll("a.thumbnail")[0],
img = new Image;
img.style.display = 'block';
if (thumb) {
var href = thumb.href;
@BrianPuccio
BrianPuccio / list_cron_jobs.sh
Created June 1, 2013 16:53
List all cron jobs (tested with Debian 7 and Ubuntu 12.04 LTS)
#!/bin/bash
# yukondude via http://stackoverflow.com/questions/134906/how-do-i-list-all-cron-jobs-for-all-users
# System-wide crontab file and cron job directory. Change these for your system.
CRONTAB='/etc/crontab'
CRONDIR='/etc/cron.d'
# Single tab character. Annoyingly necessary.
tab=$(echo -en "\t")