Compare commits

...

2 Commits

Author SHA1 Message Date
Dave Russell 6e755a0864
Fix version reference and add Mac Terminal note 7 days ago
Dave Russell c9d4a447e3
Update 2025_plus_models.md 7 days ago
  1. 12
      2025_plus_models.md

12
2025_plus_models.md

@ -36,7 +36,7 @@ ### Setting up a new 2025 or later plus model with only unverified HDDs in DSM 7
Credit to Alex_of_Chaos on reddit
DSM won't install on a 2025 or later series plus model if you only have unverified HDDs. But we can get around that.
DSM 7.2.2 won't install on a 2025 or later series plus model if you only have unverified HDDs. But we can get around that.
1. Get the Synology's IP address from Synology Assistant.
2. Start DSM's telnet server by entering `http://<NAS-IP>:5000/webman/start_telnet.cgi` into your browser's address bar.
@ -46,10 +46,16 @@ ### Setting up a new 2025 or later plus model with only unverified HDDs in DSM 7
telnet <NAS-IP>
```
- Replace `<NAS-IP>` with the IP address of the Synology NAS.
4. Log into telnet with:
- **Note:** If using a Mac you may need to install Terminal.
4. When it asks you to log in use:
- `root` for the login
- `101-0101` for the password
5. Execute the following command: (using a while loop in case DSM is running in a VM)
- **Note:** When you type the password you may not see what you are typing.
5. Execute the following command:
```
touch /tmp/installable_check_pass
```
- If DSM is running in a virtual machine use this command instead:
```
while true; do touch /tmp/installable_check_pass; sleep 1; done
```

Loading…
Cancel
Save