Search found 8 matches
- 17 Jan 2026, 09:05
- Forum: Storage
- Topic: The storage pool has been expanded, but the volume cannot be expanded?
- Replies: 20
- Views: 16891

Re: The storage pool has been expanded, but the volume cannot be expanded?
I'm on an F4-210 trying to expand a 9 TB array to 27 TB, and I followed the instructions above and have got to the resize2fs /dev/mapper/vg0-lv0 step. The instructions say I should see it expand over a few tens of seconds, but it's been more than half an hour and it hasn't advanced passed the very f...
- 14 Nov 2025, 07:39
- Forum: CloudSync
- Topic: [Help] Google Drive Sync not deleting files from Drive
- Replies: 8
- Views: 502

Re: [Help] Google Drive Sync not deleting files from Drive
I tried two-way sync again and got the same result, when I create a new file on the NAS that isn't in GDrive instead of uploading it to GDrive it deletes it from the NAS.
- 13 Nov 2025, 21:02
- Forum: CloudSync
- Topic: [Help] Google Drive Sync not deleting files from Drive
- Replies: 8
- Views: 502

Re: [Help] Google Drive Sync not deleting files from Drive
Thank you, when I tried two-way synchronization instead of uploading new files from the NAS to Google Drive it just deleted anything that wasn't already in Drive from the NAS
- 13 Nov 2025, 09:49
- Forum: CloudSync
- Topic: [Help] Google Drive Sync not deleting files from Drive
- Replies: 8
- Views: 502

Re: [Help] Google Drive Sync not deleting files from Drive
It's an F4-210 NAS, running TOS 4.2.43. Google Drive Sync version is 2.1.5, freshly installed from the applications menu, and it doesn't give me any option to update it.
- 11 Nov 2025, 21:32
- Forum: CloudSync
- Topic: [Help] Google Drive Sync not deleting files from Drive
- Replies: 8
- Views: 502

Re: [Help] Google Drive Sync not deleting files from Drive
This is likely related to the cloud drive's task settings. Please uncheck the option "When a file in a source folder is deleted, the files in the destination folder are not deleted" when creating a new task. There's no option like that. https://i.postimg.cc/9DyTQ5sG/Screenshot-2025-11-11-...
- 08 Nov 2025, 23:38
- Forum: CloudSync
- Topic: [Help] Google Drive Sync not deleting files from Drive
- Replies: 8
- Views: 502

[Help] Google Drive Sync not deleting files from Drive
I have Google Drive Sync set up on my NAS to upload files from a security camera directory to the cloud. I have the NAS configured to delete the files after a certain amount of time, to avoid filling up my Drive. Google Drive Sync is configured to upload local changes only. It is successfully upload...
- 05 Nov 2025, 11:43
- Forum: File Services
- Topic: [Help] Delete files beyond a certain age
- Replies: 3
- Views: 279

Re: [Help] Delete files beyond a certain age
Thanks, I tried to find a task scheduler in the control panel but couldn't. I ended up solving it with the help of some people on a couple of discords I'm in. I wrote a shell script and just point cron to run that. So in the shell script I have: #!/bin/bash NOW=`date +%s`; echo "`date`" >>...
- 05 Nov 2025, 03:16
- Forum: File Services
- Topic: [Help] Delete files beyond a certain age
- Replies: 3
- Views: 279

[Help] Delete files beyond a certain age
I have a couple of cameras set to record motion events and save the videos to certain folders on my NAS (F4 210 running TOS v4.2.43), and then delete them past a certain age. I was attempting to use this script run via cron (front door as an example): find /mnt/md0/SecurityVideos/FrontDoor/ -type f ...