Skip to content

Instantly share code, notes, and snippets.

@billyjbryant
Forked from ludoo0d0a/gist:8d0cfd1cab22598cb5d8
Last active December 27, 2023 22:13
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billyjbryant/993b4e8669659444006823a68f1bd509 to your computer and use it in GitHub Desktop.
Save billyjbryant/993b4e8669659444006823a68f1bd509 to your computer and use it in GitHub Desktop.
Synology boot locked
#!/bin/bash
echo "Setting boot done"
sudo synobootseq --set-boot-done
echo "Marking Synology as Ready"
sudo synobootseq --is-ready

Description:

Sometimes after a hard reboot (power cut), if your synology cannot be logged in with DSM and it shows "System is getting ready. Please log in later" , please do these steps :

Steps

  1. Install the syno-ready script to /usr/local/bin (You must be able to SSH to the NAS via an Admin user account)
wget https://gist.github.com/billyjbryant/993b4e8669659444006823a68f1bd509/raw/e728bfb2e9968f4c5a8ab7f7a9d316172267dc84/syno-ready
sudo mv syno-ready /usr/local/bin
sudo chmod +x /usr/local/bin/syno-ready
  1. Execute syno-ready whenever you need to fix the System is getting ready bug.

Credit

Credit to ludoo0d0a for the original commmands to fix this issue

@samsong
Copy link

samsong commented Nov 15, 2023

works well. important to mention I had this issue because my storage space on HDD was low.
after using this script to login to DSM I deleted files to clear nearly 200GB empty space. only then did synology seem to function properly again!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment