Everything posted by francrouge
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
ok so it with that it should be able to scan my 3000 movies ? thx a lot
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
ok but if i need to do the inital scan the BIG scan what do i do ? thx
-
[Plugin] CA User Scripts
hi all i'm looking to see where are located the logs with krusader. But i'm not able to find them is there a way to see it in ssh otherwise thx
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Hi i notice that plex dosent auto scan unionfs byitself. Is it normal ? You have to do it manualy Thx Envoyé de mon Pixel 2 XL en utilisant Tapatalk
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Does plex autoscan works with youre script thx ? Envoyé de mon Pixel 2 XL en utilisant Tapatalk
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Great thx for info Envoyé de mon Pixel 2 XL en utilisant Tapatalk
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Hi again, Stupid question but if i'm playing a video from gdrive. Does it transcode all the time or direct play in plex If it transcode who handles the transcoding part me or google. Is it really faster to play a video from gdrive. (it take more time then on my server 720p file) Thx
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Yes perfect thanks a lot Envoyé de mon Pixel 2 XL en utilisant Tapatalk
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Ok i will do that thx a lot I will keep you updated Edit: it seem to be uploading but i can see some error Error 403: Rate Limit Exceeded, rateLimitExceeded what it is mean ? Envoyé de mon Pixel 2 XL en utilisant Tapatalk
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Hi so I just follow the steps. The file is on google drive encrypted and nothing in folder upload. Did also the temps command. What should i do next ? thx Edit: Now i see a mountcheck in unionfs and in rclone mount for you information
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Perfect thx Envoyé de mon Pixel 2 XL en utilisant Tapatalk
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Its empty Envoyé de mon Pixel 2 XL en utilisant Tapatalk
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
seem ok in logs It's telling me script is already running But for upload part it seem to be not working. /tmp/user.scripts/tmpScripts/upload/script: line 4: $'\357\273\277': command not found /tmp/user.scripts/tmpScripts/upload/script: line 26: $'\357\273\277': command not found 20.12.2018 05:40:46 INFO: rclone not installed - will try again later. Script Finished Thu, 20 Dec 2018 05:40:46 -0500 Full logs for this script are available at /tmp/user.scripts/tmpScripts/upload/log.txt I already tried to reinstalled the normal version and the beta. What version should i stick too ? thx
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
It's ok lol maybe i made an error somewhere. 1. Password is ok just tested 2. the mouncheck file is encrypted so i suppose its working. 3.yes i can see it Check my picture just in case. Inside mountcheck it should look like this ? touch mountcheck rclone copy mountcheck gdrive_media_vfs: -vv --no-traverse thx
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Mount #!/bin/bash ####### Check if script is already running ########## if [[ -f "/mnt/user/appdata/other/rclone/rclone_mount_running" ]]; then echo "$(date "+%d.%m.%Y %T") INFO: Exiting script already running." exit else touch /mnt/user/appdata/other/rclone/rclone_mount_running fi ####### End Check if script already running ########## ####### Start rclone mounts ########## # create directories for rclone mount and unionfs mount mkdir -p /mnt/user/appdata/other/rclone mkdir -p /mnt/user/mount_rclone/google_vfs mkdir -p /mnt/user/mount_unionfs/google_vfs mkdir -p /mnt/user/rclone_upload/google_vfs ####### Start rclone gdrive mount ########## # check if gdrive mount already created if [[ -f "/mnt/user/mount_rclone/google_vfs/mountcheck" ]]; then echo "$(date "+%d.%m.%Y %T") INFO: Check rclone vfs already mounted." else echo "$(date "+%d.%m.%Y %T") INFO: mounting rclone vfs." rclone mount --allow-other --buffer-size 512M --dir-cache-time 72h --drive-chunk-size 512M --fast-list --log-level INFO --vfs-read-chunk-size 128M --vfs-read-chunk-size-limit off gdrive_media_vfs: /mnt/user/mount_rclone/google_vfs & # check if mount successful # slight pause to give mount time to finalise sleep 5 if [[ -f "/mnt/user/mount_rclone/google_vfs/mountcheck" ]]; then echo "$(date "+%d.%m.%Y %T") INFO: Check rclone gdrive vfs mount success." else echo "$(date "+%d.%m.%Y %T") CRITICAL: rclone gdrive vfs mount failed - please check for problems." rm /mnt/user/appdata/other/rclone/rclone_mount_running exit fi fi ####### End rclone gdrive mount ########## ####### Start unionfs mount ########## if [[ -f "/mnt/user/mount_unionfs/google_vfs/mountcheck" ]]; then echo "$(date "+%d.%m.%Y %T") INFO: Check successful, unionfs already mounted." else # uncomment the unionfs mount below if not using teamdrive and delete the one above unionfs -o cow,allow_other,direct_io,auto_cache,sync_read /mnt/user/rclone_upload/google_vfs=RW:/mnt/user/mount_rclone/google_vfs=RO /mnt/user/mount_unionfs/google_vfs if [[ -f "/mnt/user/mount_unionfs/google_vfs/mountcheck" ]]; then echo "$(date "+%d.%m.%Y %T") INFO: Check successful, unionfs mounted." else echo "$(date "+%d.%m.%Y %T") CRITICAL: unionfs Remount failed." rm /mnt/user/appdata/other/rclone/rclone_mount_running exit fi fi ####### End Mount unionfs ########## ############### starting dockers that need unionfs mount ###################### # only start dockers once if [[ -f "/mnt/user/appdata/other/rclone/dockers_started" ]]; then echo "$(date "+%d.%m.%Y %T") INFO: dockers already started" else touch /mnt/user/appdata/other/rclone/dockers_started echo "$(date "+%d.%m.%Y %T") INFO: Starting dockers." docker start tautulli docker start PlexMediaServer fi ############### end dockers that need unionfs mount ###################### # populate rclone dir-cache # only populate dir cache once if [[ -f "/mnt/user/appdata/other/rclone/dir_cache_populated" ]]; then echo "$(date "+%d.%m.%Y %T") INFO: dir cache already populated" else touch /mnt/user/appdata/other/rclone/dir_cache_populated echo "$(date "+%d.%m.%Y %T") Info: populating dir cache - this could take a while." rclone rc --timeout=1h vfs/refresh recursive=true echo "$(date "+%d.%m.%Y %T") Info: populating dir cache complete." fi exit Config [gdrive] type = drive scope = drive token = client_id = client_secret = [gdrive_media_vfs] type = crypt remote = gdrive:crypt filename_encryption = standard directory_name_encryption = true password = password2 = thx
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Thx for infos So can you tell if i,m juste able to upload. I can,t see nothing in union folder and rclone mount. What should i check first ? Thx again Envoyé de mon Pixel 2 XL en utilisant Tapatalk
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Ok thx for the infos So if i understand you correctly for unionfs. I should see local shares folder and google drive. Or local files that i put and google drive ? Sorry for all those questions i'm new to this. Thx Envoyé de mon Pixel 2 XL en utilisant Tapatalk
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Okay so good news i managed to fix the upload issue I'm able to upload files with the uploader script but i can't see nothing in the mount_rclone and union fs is it normal ? Because in the first page it say to map plex to union i think. thx
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Hi I tried to do the mountcheck and now i'm getting this. rclone copy mountcheck gdrive_media_vfs: -vv --no-traverse 2018/12/19 10:47:54 DEBUG : rclone: Version "v1.45-035-g9cb3a68c-beta" starting with parameters ["rcloneorig" "--config" "/boot/config/plugins/rclone-beta/.rclone.conf" "copy" "mountcheck" "gdrive_media_vfs:" "-vv" "--no-traverse"] 2018/12/19 10:47:54 DEBUG : Using config file from "/boot/config/plugins/rclone-beta/.rclone.conf" 2018/12/19 10:47:54 DEBUG : pacer: Rate limited, sleeping for 1.44768391s (1 consecutive low level retries) 2018/12/19 10:47:54 DEBUG : pacer: low level retry 1/10 (error googleapi: Error 403: Rate Limit Exceeded, rateLimitExceeded) 2018/12/19 10:47:55 DEBUG : pacer: Rate limited, sleeping for 2.483050266s (2 consecutive low level retries) 2018/12/19 10:47:55 DEBUG : pacer: low level retry 2/10 (error googleapi: Error 403: Rate Limit Exceeded, rateLimitExceeded) 2018/12/19 10:47:56 DEBUG : pacer: Resetting sleep to minimum 10ms on success 2018/12/19 10:47:59 ERROR : : error reading source directory: directory not found 2018/12/19 10:47:59 INFO : Encrypted drive 'gdrive_media_vfs:': Waiting for checks to finish 2018/12/19 10:47:59 INFO : Encrypted drive 'gdrive_media_vfs:': Waiting for transfers to finish 2018/12/19 10:47:59 ERROR : Attempt 1/3 failed with 1 errors 2018/12/19 10:47:59 ERROR : : error reading source directory: directory not found 2018/12/19 10:47:59 INFO : Encrypted drive 'gdrive_media_vfs:': Waiting for checks to finish 2018/12/19 10:47:59 INFO : Encrypted drive 'gdrive_media_vfs:': Waiting for transfers to finish 2018/12/19 10:47:59 ERROR : Attempt 2/3 failed with 1 errors 2018/12/19 10:47:59 ERROR : : error reading source directory: directory not found 2018/12/19 10:47:59 INFO : Encrypted drive 'gdrive_media_vfs:': Waiting for checks to finish 2018/12/19 10:47:59 INFO : Encrypted drive 'gdrive_media_vfs:': Waiting for transfers to finish 2018/12/19 10:47:59 ERROR : Attempt 3/3 failed with 1 errors I did create an api code etc. And now its this error rclone copy mountcheck gdrive_media_vfs: -vv --no-traverse 2018/12/19 12:46:52 DEBUG : rclone: Version "v1.45-035-g9cb3a68c-beta" starting with parameters ["rcloneorig" "--config" "/boot/config/plugins/rclone-beta/.rclone.conf" "copy" "mountcheck" "gdrive_media_vfs:" "-vv" "--no-traverse"] 2018/12/19 12:46:52 DEBUG : Using config file from "/boot/config/plugins/rclone-beta/.rclone.conf" 2018/12/19 12:46:53 ERROR : : error reading source directory: directory not found 2018/12/19 12:46:53 INFO : Encrypted drive 'gdrive_media_vfs:': Waiting for checks to finish 2018/12/19 12:46:53 INFO : Encrypted drive 'gdrive_media_vfs:': Waiting for transfers to finish 2018/12/19 12:46:53 ERROR : Attempt 1/3 failed with 1 errors 2018/12/19 12:46:53 ERROR : : error reading source directory: directory not found 2018/12/19 12:46:53 INFO : Encrypted drive 'gdrive_media_vfs:': Waiting for checks to finish 2018/12/19 12:46:53 INFO : Encrypted drive 'gdrive_media_vfs:': Waiting for transfers to finish 2018/12/19 12:46:53 ERROR : Attempt 2/3 failed with 1 errors 2018/12/19 12:46:53 ERROR : : error reading source directory: directory not found 2018/12/19 12:46:53 INFO : Encrypted drive 'gdrive_media_vfs:': Waiting for checks to finish 2018/12/19 12:46:53 INFO : Encrypted drive 'gdrive_media_vfs:': Waiting for transfers to finish 2018/12/19 12:46:53 ERROR : Attempt 3/3 failed with 1 errors 2018/12/19 12:46:53 INFO : Transferred: 0 / 0 Bytes, -, 0 Bytes/s, ETA - Errors: 1 (retrying may help) Checks: 0 / 0, - Transferred: 0 / 0, - Elapsed time: 1s
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Hi again If i tried to do the mountcheck i got an encrypted file in gdrive but if i put a file directly via krusader i got nothing. What should i do ? thx
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
So if i understand you correctly i can just do the upload script and not the order if i want to move myself files ? and I can't see nothing in gdrive is it normal ? but i got some files in folders that were created
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Hi so i manage to run the commands In the logs everything look good. But My concern is this. I just want to be able to drag movies etc in my gdrive and then play it with plex. So how does you're script works ? Because ive been reading it and i don't quite understand the union_fs part. I can create my folder there but can i dump my files there ? Because nothing is showing up in gdrive write now ? thx a lot
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Yes exactly rookie mistake .. I'm going to do it the good way this time. Thx Envoyé de mon Pixel 2 XL en utilisant Tapatalk
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Yes but i just realise that i created the file on my windows pc and transfert it directly to my gdrive.. so i don't think its ok lol I'm going to redo that Envoyé de mon Pixel 2 XL en utilisant Tapatalk
-
Guide: How To Use Rclone To Mount Cloud Drives And Play Files
Hi nop always getting 1 9.12.2018 05:32:57 INFO: mounting rclone vfs. 2018/12/19 05:32:57 NOTICE: Serving remote control on http://127.0.0.1:5572/ 19.12.2018 05:33:07 CRITICAL: rclone gdrive vfs mount failed - please check for problems. Script Finished Wed, 19 Dec 2018 05:33:07 -0500 I'm not using teamdrive so i just copy the mount code i thought i needed Here is my config: [gdrive] type = drive scope = drive token = {"access_token": [gdrive_media_vfs] type = crypt remote = gdrive:crypt filename_encryption = standard directory_name_encryption = true password = password2 = My mount script: #!/bin/bash ####### Check if script is already running ########## if [[ -f "/mnt/user/appdata/other/rclone/rclone_mount_running" ]]; then echo "$(date "+%d.%m.%Y %T") INFO: Exiting script already running." exit else touch /mnt/user/appdata/other/rclone/rclone_mount_running fi ####### End Check if script already running ########## ####### Start rclone mounts ########## # create directories for rclone mount and unionfs mount mkdir -p /mnt/user/appdata/other/rclone mkdir -p /mnt/user/mount_rclone/google_vfs mkdir -p /mnt/user/mount_rclone/tdrive_rclone1_vfs mkdir -p /mnt/user/mount_unionfs/google_vfs mkdir -p /mnt/user/rclone_upload/google_vfs ####### Start rclone gdrive mount ########## # check if gdrive mount already created if [[ -f "/mnt/user/mount_rclone/google_vfs/mountcheck" ]]; then echo "$(date "+%d.%m.%Y %T") INFO: Check rclone vfs already mounted." else echo "$(date "+%d.%m.%Y %T") INFO: mounting rclone vfs." rclone mount --rc --allow-other --buffer-size 512M --dir-cache-time 72h --drive-chunk-size 512M --fast-list --log-level INFO --vfs-read-chunk-size 128M --vfs-read-chunk-size-limit off gdrive_media_vfs: /mnt/user/mount_rclone/google_vfs & # check if mount successful # slight pause to give mount time to finalise sleep 5 if [[ -f "/mnt/user/mount_rclone/google_vfs/mountcheck" ]]; then echo "$(date "+%d.%m.%Y %T") INFO: Check rclone gdrive vfs mount success." else echo "$(date "+%d.%m.%Y %T") CRITICAL: rclone gdrive vfs mount failed - please check for problems." rm /mnt/user/appdata/other/rclone/rclone_mount_running exit fi fi ####### End rclone gdrive mount ########## thx