Go to file
Hendrik Schutter 85d3b99d35 log used syscall parameter 2022-05-15 13:05:58 +02:00
doc added update script 2020-09-16 14:42:51 +02:00
include pclose instead fclose 2022-01-26 15:44:32 +01:00
src log used syscall parameter 2022-05-15 13:05:58 +02:00
.gitignore pclose instead fclose 2022-01-26 15:44:32 +01:00
LICENSE Initial commit 2018-11-08 18:31:00 +01:00
README.md updated REDME 2022-01-26 19:38:16 +01:00
astyle.sh define-switch for frozen alert 2020-09-20 22:40:05 +02:00
ignoreDrives.conf updated REDME 2022-01-26 19:38:16 +01:00
makefile define-switch for frozen alert 2020-09-20 22:40:05 +02:00
reHDD_shredder2.log log used syscall parameter 2022-05-15 13:05:58 +02:00
reHDD_workstation.log log used syscall parameter 2022-05-15 13:05:58 +02:00
shred_dummy.sh added custom implementation for shred 2020-08-26 00:12:39 +02:00
vcCodium.code-workspace fixed states if drive is no longer present 2020-08-26 18:38:39 +02:00

README.md

reHDD

Useful for:

  • checking new drives for the first time
  • checking used drives for their next live
  • deleting a drive securely via overwriting

Screenshot

alt text

Debian Build Notes

  • apt-get install ncurses-dev git make g++
  • clone repo
  • make release

Create Standalone with Debian 11

Instructions how to create a standalone machine that boots directly to reHDD. This is aimed for production use, like several drives a day shredding.

Software requirements

  • apt-get install hwinfo smartmontools curl

Start reHDD after boot without login (as a tty shell)

nano /lib/systemd/system/getty@.service

and replace the [Service] with this:

[Service]
WorkingDirectory=/root/reHDD
ExecStart=
ExecStart=-/root/reHDD/reHDD
StandardInput=tty
StandardOutput=tty
Restart=always
RestartSec=1
UtmpIdentifier=tty1
TTYPath=/dev/tty1
TTYReset=yes
TTYVHangup=yes
TTYVTDisallocate=yes
SendSIGHUP=yes

systemctl daemon-reload

nano /etc/systemd/system/reHDDSettings.service

[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/usr/bin/bash /root/reHDDSettings.sh

[Install]
WantedBy=multi-user.target

nano /root/reHDDSettings.sh

#!/bin/bash
dmesg -n 1 #disable overlay if a drive is attached/detached
# remove comment for the following to activate log telemetie
# curl -k -T /root/reHDD/reHDD.log -u "fgggfffgfgfgfg:" -H 'X-Requested-With: XMLHttpRequest' https://schuttercloud.com/public.php/webdav/`echo $(date '+%Y-%m-%d_%H-%M')`_reHDD.log
rm -f /root/reHDD/reHDD.log

chmod +x reHDDSettings.sh

Make sure the binary reHDD is in /root/reHDD/

Add your system drive in /root/reHDD/ignoreDrives.conf like: e102f49d-5ed5-462b-94c5-ef66a4345671 Get your UUID via blkid /dev/sdX

systemctl enable reHDDSettings.service