diff --git a/2025_plus_models.md b/2025_plus_models.md index b614492..05b9eac 100644 --- a/2025_plus_models.md +++ b/2025_plus_models.md @@ -4,6 +4,8 @@ ### Deleting and recreating your storage pool on unverified HDDs You can't download Synology HDD db to a volume because you've just deleted your storage pool. So you'd first need to download Synology HDD db to a system folder and run it from there. +You can do this via SSH or via a scheduled task. + #### Via SSH 1. Create and cd to /opt @@ -43,3 +45,17 @@ #### Via SSH 8. You can now create your storage pool from Storage Manager +#### Via a scheduled task + + +``` +sudo mkdir -m775 /opt +cd /opt || (echo "Failed to CD to /opt"; exit 1) +sudo curl -O "https://raw.githubusercontent.com/007revad/Synology_HDD_db/refs/heads/main/syno_hdd_db.sh" +sudo curl -O "https://raw.githubusercontent.com/007revad/Synology_HDD_db/refs/heads/main/syno_hdd_vendor_ids.txt" +sudo chmod 750 /opt/syno_hdd_db.sh +sudo -s /opt/syno_hdd_db.sh +``` + +You can now create your storage pool from Storage Manager +