![]() |
HDD support to Synology NAS - Printable Version +- ASK NC (https://ask.nascompares.com) +-- Forum: Q&A (https://ask.nascompares.com/forumdisplay.php?fid=1) +--- Forum: Before you buy Q&A (https://ask.nascompares.com/forumdisplay.php?fid=2) +--- Thread: HDD support to Synology NAS (/showthread.php?tid=12354) |
HDD support to Synology NAS - Enquiries - 10-03-2025 I have already purchased synology DS225+ and accidentally purchased WD *TB HDD. now plz tell me how to use that in my NAS? Appreciated for your help and reply. Thank You RE: HDD support to Synology NAS - ed - 10-03-2025 1. Synology_HDD_db (GitHub) A popular community script that modifies Synology’s internal HDD compatibility database so it will treat unverified drives as “certified.”  • It lets your unsupported HDDs show up in Storage Manager without the “unverified/incompatible” warnings. • Many users run it as a scheduled task so updates or reboots do not undo the change.  2. Editing support_disk_compatibility flag Some guides recommend SSH/terminal access to change a setting in /etc.defaults/synoinfo.conf (or via synosetkeyvalue) to disable the compatibility check: support_disk_compatibility="no" https://linustechtips.com/topic/1371655-synology-dsm-7-drive-lock-bypass/page/2/?utm_source=chatgpt.com 3. Pre-DSM install bypass If you can’t install DSM at all due to unsupported drives, a trick is to enable Telnet at the DSM installation screen and run a loop that always returns the “installable” check as passed: while true; do touch /tmp/installable_check_pass; sleep 1; done Then after DSM is installed, you run the script or flag change to fully enable drives https://nascompares.com/2025/08/06/using-unverified-hdd-ssd-on-a-synology-2025-nas-a-complete-step-by-step-walkthrough/?utm_source=chatgpt.com |