Browse Source

Update 2025_plus_models.md

pull/455/head
Dave Russell 8 months ago
committed by GitHub
parent
commit
a6231f86c6
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 16
      2025_plus_models.md

16
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

Loading…
Cancel
Save