Everything posted by sheldz8
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
https://rclone.org/filtering/
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
when you upload; it will use "--filter" if you set it instead of "--exclude" the mount script works with mergerfs the upload script is optional. All your Apps (Radarr, Sonarr, Plex, etc) should be volume mounted to "/path/to/mergerfs, rw" Mergerfs creates a virtual directory which duplicate of the remote drive and also the local folder (temporary storage), whatever is in the local folder shows in mergerfs but not the remote folder until it uploads.
-
Parity Drive Recovery, I messed up
Doesn't it just remove the array config instead of formatting? Everytime I reset my array config my data stays intact in the Cache and Array (I don't have parity drives)
-
Parity Drive Recovery, I messed up
Can't this be fixed by removing the array settings? Sent from my SM-A305F using Tapatalk
-
Plex Media Server - "not authorised" screen.
It looks like you didn't claim the server within the time limit If this is the first boot of Plex it will show a welcome screen. Maybe try removing the docker and force remove the Plex folder to clear the settings and try again. Sent from my SM-A305F using Tapatalk
-
Plex Media Server - "not authorised" screen.
That critical error message is nothing to worry about. Sent from my SM-A305F using Tapatalk
-
Cannot connect to unRaid shares from Windows 10
Do you get any error message? Check if SMB is installed on Windows and try connecting on another device Sent from my SM-A305F using Tapatalk
-
Parity Drive Recovery, I messed up
When I first used unraid I accidentally chose the wrong disk for parity and I was unable to recover the 6tb data Sent from my SM-A305F using Tapatalk
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
You can use radarr or sonarr to download the metadata Sent from my SM-A305F using Tapatalk
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
The exclusions are on the upload script but I think it deletes the whole folder afterwards. Whatever is in the local folder will be copied over unless it is excluded.
-
Plex Server unhealthy and can't access webui
Plex directory has thousands of files so you need to wait for it to finish
-
Plex Server unhealthy and can't access webui
chmod 755 -R /mnt/user/appdata/Plex-Media-Server
-
Plex Server unhealthy and can't access webui
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Your remote name is what you set with rclone config Your remote share should be in it's own folder example /mnt/user/remote and mergerfs /mnt/user/mergerfs and local /mnt/user/local The cache share can be any folder but just leave it like mine if you want to
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
I have rclone setup along with mergerfs and I don't use the upload script I prefer mergerfs to union My mergerfs mount script https://paste.ofcode.org/Li22XDSVufY46FneMfMk8J (1st half of the original) My unmount script https://paste.ofcode.org/ZYazHbS2rf8EKRwSiVV9ff
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
You can create a union mount https://forums.unraid.net/topic/75436-guide-how-to-use-rclone-to-mount-cloud-drives-and-play-files/?do=findComment&comment=909328
-
Plex Server unhealthy and can't access webui
Usually due to long time to startup restart the Container and perhaps change the restart parameter restart always
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
He posted the first part of the script an hour ago
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
my unmount script looks like this https://paste.ofcode.org/ZYazHbS2rf8EKRwSiVV9ff
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
make sure the cloud drive and merger fs isn't connected then try rm -R /mnt/user/GDrive/* && rm -R /mnt/user/GMerged/* this is what my mount script looks like https://paste.ofcode.org/Li22XDSVufY46FneMfMk8J The reason for that error is because you already have the folder so it can't mount and by using --allow-non-empty is actually bad
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
In your unmount script add this fusermount -uz /mnt/user/mergerfs/gdrive fusermount -uz /mnt/user/remote/gdrive kill -9 $(lsof -t -i:5572)
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Yes it looks correct
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
No I meant for the path to the local and mergerfs folders
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
I was looking at this earlier. I dont think you need to worry about your files just change whatever you have shared change it to private instead of public
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
In your unmount script add pkill (port) sometimes it doesn't remove the rclone web GUI port by itself