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 | |
| # Check if at least one parameter is provided | |
| if [ $# -eq 0 ]; then | |
| file_name="temp_threshold.txt" | |
| else | |
| # first command line par is the filnemae to read from/write to | |
| file_name="$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
| # Create the SD using PI Imager and specifying the OS Lite version (the one WITHOUT Desktop) | |
| # Stuff the SD in the Pi and boot it up, confirm it is reachable at the configured IP address | |
| # SSH into it and run the following commands at the command prompt (this will install OMV7) | |
| wget https://github.com/OpenMediaVault-Plugin-Developers/installScript/raw/master/install | |
| chmod +x install | |
| sudo ./install -n | |
| # On succesful completion run: |