This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ====================================================== | |
| SMART Report | |
| Device : /dev/sda | |
| Serial : 53Q0A027FX0G | |
| Date : Wed 11 Mar 18:04:08 GMT 2026 | |
| ====================================================== | |
| --- Device Info --- | |
| === START OF INFORMATION SECTION === | |
| Model Family: Toshiba N300/MN NAS HDD |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Fail quickly | |
| set -e | |
| # Check that a folder argument was supplied | |
| if [ "$#" -ne 1 ]; then | |
| echo "Usage: $0 <ghost-install-directory>" >&2 | |
| exit 1 | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # This script is used to monitor the RX bytes on | |
| # a given network interface by using a temporary | |
| # file in /tmp. | |
| # | |
| # The script will return exit code 1 if the current | |
| # interface counter is DIFFERENT from the value | |
| # on the previous run. | |
| # |