Dave Russell
8 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
15 additions and
9 deletions
-
2025_plus_models.md
|
|
|
@ -47,7 +47,12 @@ #### Via SSH |
|
|
|
|
|
|
|
#### Via a scheduled task |
|
|
|
|
|
|
|
|
|
|
|
1. Go to **Control Panel** > **Task Scheduler** > click **Create** > **Scheduled Task** > **User-defined script**. |
|
|
|
2. Enter a task name. |
|
|
|
3. Select **root** as the user (The script needs to run as root). |
|
|
|
4. Untick **Enable**. |
|
|
|
5. Click **Task Settings**. |
|
|
|
6. In the box under **User-defined script** paste the following: |
|
|
|
``` |
|
|
|
mkdir -m775 /opt |
|
|
|
cd /opt || (echo "Failed to CD to /opt"; exit 1) |
|
|
|
@ -56,6 +61,7 @@ #### Via a scheduled task |
|
|
|
chmod 750 /opt/syno_hdd_db.sh |
|
|
|
/opt/syno_hdd_db.sh |
|
|
|
``` |
|
|
|
7. Click **OK** to save the settings. |
|
|
|
|
|
|
|
You can now create your storage pool from Storage Manager |
|
|
|
|
|
|
|
|