3.1 KiB
2025 series or later Plus models
Setting up a new 2025 or later plus model with only unverified HDDs
DSM won't install on a 2025 or later series plus model if you only have unverified HDDs. But we can get around that.
- Start telnet via http://:5000/webman/start_telnet.cgi
- Replace with the IP address of the Synology NAS.
- Open a telnet client on your computer and log in to telnet with
user = root pass = 101-0101 - Execute the following command:
while true; do touch /tmp/installable_check_pass; sleep 1; done - Refresh the web installation page and install DSM.
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
-
Create and cd to /opt
sudo mkdir /opt && sudo chmod 775 /opt -
Create /opt
sudo mkdir -m775 /opt -
cd to /opt
cd /opt || (echo "Failed to CD to /opt"; exit 1) -
Download syno_hdd_db.sh to /opt
sudo curl -O "https://raw.githubusercontent.com/007revad/Synology_HDD_db/refs/heads/main/syno_hdd_db.sh" -
Download syno_hdd_vendor_ids.txt to /opt
sudo curl -O "https://raw.githubusercontent.com/007revad/Synology_HDD_db/refs/heads/main/syno_hdd_vendor_ids.txt" -
Then set permissions on /opt/syno_hdd_db.sh
sudo chmod 750 /opt/syno_hdd_db.sh -
Finally run syno_hdd_db. You don't need any options at this point.
sudo -s /opt/syno_hdd_db.sh -
If Storage Manager is already open close then open it, or refresh the web page.
-
You can now create your storage pool from Storage Manager.
Via a scheduled task
First setup email notifications (if you haven't already):
- Go to Control Panel > Notification > Email > click Setup.
Then create the scheduled task:
- Go to Control Panel > Task Scheduler > click Create > Scheduled Task > User-defined script.
- Enter a task name.
- Select root as the user (The script needs to run as root).
- Untick Enable.
- Click Task Settings.
- Tick Send run details by email and enter your email address.
- In the box under User-defined script paste the following:
mkdir -m775 /opt cd /opt || (echo "Failed to CD to /opt"; exit 1) curl -O "https://raw.githubusercontent.com/007revad/Synology_HDD_db/refs/heads/main/syno_hdd_db.sh" curl -O "https://raw.githubusercontent.com/007revad/Synology_HDD_db/refs/heads/main/syno_hdd_vendor_ids.txt" chmod 750 /opt/syno_hdd_db.sh /opt/syno_hdd_db.sh -e - Click OK > OK > type your password > Submit to save the scheduled task.
- Now select the scheduld task and click Run > OK.
- Check your emails to make sure the scheduled task ran without any error.
- If Storage Manager is already open close then open it, or refresh the web page.
- You can now create your storage pool from Storage Manager.