Everything posted by Coolsaber57
-
[Plugin] rclone
That's all I really want to do as well - sync from Google Drive into my Unraid share. I actually want to set up two: One to sync the Google Photos folder into my Photos share, and one to sync everything else. I did get it to work and after updating my Krusader docker container to rw slave, I can see the files in the mounted folder. And yes, the google-drive-myusername is the Config name. For those other options in your sync command, is that to speed up the sync? Are there recommended flags we should be using?
-
[Plugin] rclone
To clarify, for my future sync commands, I should be using: rclone sync google-drive-myusername: /mnt/user/Multimedia/Photos/google-photos-myfolder/ if google-drive-myusername is my rclone config name?
-
[Plugin] rclone
Ok, so it appears that there's some issue with some of the files in the Google drive that rclone doesn't like. And you were right, it seems to work better with folders. For a lot of the documents I have in my gdrive account, it shows IO errors - not sure if there's some kind of permissions setting either in rclone or gdrive that I need to set. Any suggestions?
-
[Plugin] rclone
That makes sense, so I updated it to show: #!/bin/bash #---------------------------------------------------------------------------- #first section makes the folders for the mount in the /mnt/disks folder so docker containers can have access #there are 4 entries below as in the video i had 4 remotes amazon,dropbox, google and secure #you only need as many as what you need to mount for dockers or a network share mkdir -p /mnt/disks/google-drive-myfolder #mkdir -p /mnt/disks/dropbox #mkdir -p /mnt/disks/google #mkdir -p /mnt/disks/secure #This section mounts the various cloud storage into the folders that were created above. rclone mount --max-read-ahead 1024k --allow-other google-drive-myusername: /mnt/disks/google-drive-myfolder & The myusername matches the name of the config. I then saved it to User Scripts, unmounted, then mounted. However, when I try to test it with this command: rclone sync /mnt/disks/google-drive-myfolder/brewing.xlsx /mnt/user/Multimedia/brewing.xlsx I still see these errors when trying to sync a file: 2019/01/24 10:23:38 ERROR : : error reading source directory: directory not found 2019/01/24 10:23:38 ERROR : Local file system at /mnt/user/Multimedia/brewing.xlsx: not deleting files as there were IO errors 2019/01/24 10:23:38 ERROR : Local file system at /mnt/user/Multimedia/brewing.xlsx: not deleting directories as there were IO errors 2019/01/24 10:23:38 ERROR : Attempt 1/3 failed with 1 errors and: not deleting files as there were IO errors So maybe it's not actually mounting correctly, but I can see the folders using the lsd command in the terminal, which tells me that the config is correct.
-
[Plugin] rclone
I too am struggling to get Google Drive to sync anything. I'm using the following Config: [google-drive-folder] type = drive token = {"access_token":"REDACTED","token_type":"Bearer","refresh_token":"REDACTED","expiry":"2019-01-24T02:00:33.009530267-05:00"} and with the following mount script: #!/bin/bash #---------------------------------------------------------------------------- #first section makes the folders for the mount in the /mnt/disks folder so docker containers can have access #there are 4 entries below as in the video i had 4 remotes amazon,dropbox, google and secure #you only need as many as what you need to mount for dockers or a network share mkdir -p /mnt/disks/google-drive-myfolder #mkdir -p /mnt/disks/dropbox #mkdir -p /mnt/disks/google #mkdir -p /mnt/disks/secure #This section mounts the various cloud storage into the folders that were created above. rclone mount --max-read-ahead 1024k --allow-other google1: /mnt/disks/google-drive-myfolder & #rclone mount --max-read-ahead 1024k --allow-other dropbox: /mnt/disks/dropbox & #rclone mount --max-read-ahead 1024k --allow-other google: /mnt/disks/google & #rclone mount --max-read-ahead 1024k --allow-other secure: /mnt/disks/secure & i commented out the stuff I'm not using (copied from the SpaceInvaderOne video). When I use the LSD command via the Terminal, I see two folders (Google Photos) and another I had set up previously, so I know it's mounted. However, when I try to run the following command (to sync my Google Photos folder to my Unraid Share): rclone sync -v '/mnt/disks/google-drive-myfolder/Google Photos' /mnt/user/Multimedia/Photos/google-photos-myfolder/ I get the following: 2019/01/24 01:42:40 ERROR : : error reading source directory: directory not found 2019/01/24 01:42:40 INFO : Local file system at /mnt/user/Multimedia/Photos/google-photos-myfolder: Waiting for checks to finish 2019/01/24 01:42:40 INFO : Local file system at /mnt/user/Multimedia/Photos/google-photos-myfolder: Waiting for transfers to finish 2019/01/24 01:42:40 ERROR : Local file system at /mnt/user/Multimedia/Photos/google-photos-myfolder: not deleting files as there were IO errors 2019/01/24 01:42:40 ERROR : Local file system at /mnt/user/Multimedia/Photos/google-photos-myfolder: not deleting directories as there were IO errors 2019/01/24 01:42:40 ERROR : Attempt 1/3 failed with 1 errors and: not deleting files as there were IO errors Anyone see anything I'm doing blatantly wrong?
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
Yeah, not sure how many times I'm going to do that 😂
-
[Support] Linuxserver.io - Lychee
Yep, I moved on from Lychee for now. I'm also concerned that it imports all of the pictures into the database, which means the files are no longer on my Share, but my Docker/VM ssd (unassigned drive). I am still looking for a solution that will allow you to keep the photos where they are. I'm trying Photoshow at the moment, but it's quite slow.
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
Ok I've run into an odd issue, trying to figure out where I am going wrong. I'm trying to proxy the Photoshow docker container with the following config under the https://photos.mydomain.com: # For Photoshow server { listen 443 ssl; listen [::]:443 ssl; server_name photos.*; include /config/nginx/ssl.conf; client_max_body_size 0; # enable for ldap auth, fill in ldap details in ldap.conf #include /config/nginx/ldap.conf; location / { # enable the next two lines for http auth #auth_basic "Restricted"; #auth_basic_user_file /config/nginx/.htpasswd; # enable the next two lines for ldap auth #auth_request /auth; #error_page 401 =200 /login; include /config/nginx/proxy.conf; resolver 127.0.0.11 valid=30s; set $upstream_photos photoshow; proxy_pass http://$upstream_photos:8083; } } However, when I start up the LE container, I get an error, and the container doesn't start: e': "No such container: 0a7b5297b0bc" Here's my photoshow config for reference: Am I missing something really obvious? Edit: just realized I should have set upstream_photos and used port 80. Resolved my issue.
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
Hey this is not necessarily what you're looking for, but I had a much easier time passing the Firefox container, then just accessing the Unraid UI inside the firefox container. Much less headache IMO.
-
[Support] jasonbean - Apache Guacamole
Thanks!
-
[Support] jasonbean - Apache Guacamole
I'm sorry, I must be blind - is there a link to your repository that I'm missing?
-
[Support] jasonbean - Apache Guacamole
Understood, thank you. I may just grab screenshots of my configs and re-create the container at some point considering I don't have a ton of connections.
-
[Support] jasonbean - Apache Guacamole
Thanks for the updated template! Quick question: I have a MariaDB container running for NextCloud and Lychee, but currently run this container with the database included. Is there an easy way I can migrate from the current DB-included container to the separate DB-container?
-
[Support] Linuxserver.io - Lychee
I'm trying to import a large number of files, but the import process seems to hang after a certain # of pics imported. Sometimes it's ~85, sometimes it's a few hundred, but eventually it stops importing but doesn't tell me. Is there some kind of setting or better way of doing this? I have around 18k pictures in total and importing them a few hundred at a time is painful.
-
[Support] binhex - Krusader
This is exactly what I was looking for, thank you so much!
-
Wake on Lan for Virtual Machines for 6.1+
Maybe describe your network environment and equipment a bit. Something may be blocking the wol packets also what motherboard and network card. You may need to enable wol in your bios. Hey there, sorry I was just going to investigate my setup if I could get a tip on where to start from the other guy, but my setup includes: Ubiquiti USG Ubiquiti US-48 switch Gigabyte GA-7PESH2 dual socket LGA2011 mainboard w/ 2x e5-2630 v2, connected via 10gbase-T to sfp+ to the US-48 Sending WoL packets via phone app and WebCore (home automation s/w) I'll see how to enable WoL in the bios in my MB, I wasn't aware that was needed. Edit: the default setting for WoL is ON on my MB, and I can double check when I get home, but I would imagine it's enabled.
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
Hey man, I saw your tip about the lowercase, and I thought I understood what you meant, but then it clicked: the actual name of the docker container has to be changed to lowercase, not just what's in the .conf file. 🤦♂️ Anyway, I finally got it to work with the below config, then just updated the settings in the OnlyOffice plugin in NextCloud with the https address: server { listen 443 ssl; server_name docs.*; include /config/nginx/ssl.conf; client_max_body_size 0; location / { include /config/nginx/proxy.conf; resolver 127.0.0.11 valid=30s; set $upstream_docs onlyofficedocumentserver; proxy_pass https://$upstream_docs:443; proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Host $server_name; proxy_set_header X-Forwarded-Proto $scheme; } } Thanks for the help once again.
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
Hey do you have a source for that? The instructions I see on the docker page show that they create a bridge network if integrating with their Community Server and Mail Server, which, if you are using the LetsEncrypt docker, is already done.
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
Hey it's me again, heh. I thought I might try to post here, in case someone has already figured this out. I'm trying to proxy the OnlyOfficeDocumentServer docker container so that I can connect it to NextCloud and edit documents. The issue I'm having is that I am trying to follow the other examples inside the LetsEncrypt container, but there isn't a .sample for the Doc Server (or community server for that matter). This current configuration gives me a 502 error when attempting to access it via the proxy: # only office doc server server { listen 443 ssl; listen [::]:443 ssl; server_name docs.*; include /config/nginx/ssl.conf; client_max_body_size 0; location / { include /config/nginx/proxy.conf; resolver 127.0.0.11 valid=30s; set $upstream_docs onlyofficedocumentserver; proxy_pass https://$upstream_docs; } } I get the feeling it'll probably be more complicated than this, but thought I'd check here before embarking on a lot of trial and error. Has anyone done this already?
-
[support] Siwat's Docker Repository
Hmm, I still get a 502 bad gateway using https: # only office doc server server { listen 443 ssl; listen [::]:443 ssl; server_name docs.*; include /config/nginx/ssl.conf; client_max_body_size 0; location / { include /config/nginx/proxy.conf; resolver 127.0.0.11 valid=30s; set $upstream_docs onlyofficedocumentserver; proxy_pass https://$upstream_docs; } } I'm trying to use the same format as the rest of the proxy confs in the LetsEncrypt folder, but I'm not sure if there's something going wrong there or a better way to do this. If I remove all the "resolver" and set $upstream stuff in favor of a straight proxy_pass https://unraidIP:4432, the LetsEncrypt docker throws a ton of variable errors and fails to start. Do you happen to have this running behind the LetsEncrypt container? Edit: Got it figured out. From a tip in another thread, you have to actually change the name of the Docker container to all lowercase, then the 502 will go away. I then used this config: server { listen 443 ssl; server_name docs.*; include /config/nginx/ssl.conf; client_max_body_size 0; location / { include /config/nginx/proxy.conf; resolver 127.0.0.11 valid=30s; set $upstream_docs onlyofficedocumentserver; proxy_pass https://$upstream_docs:443; proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Host $server_name; proxy_set_header X-Forwarded-Proto $scheme; } } After this, I just went back into the OnlyOffice plugin settings, then entered the https address into the settings and voila! I can open docs in NextCloud now!
-
Wake on Lan for Virtual Machines for 6.1+
What did you end up needing to do in your network environment?
-
Wake on Lan for Virtual Machines for 6.1+
Look through the past few posts about vm bridge name. I also have a wakeonlan plugin you could try My bridge name is br0 and bridging is enabled in my network settings.
-
Wake on Lan for Virtual Machines for 6.1+
Hmm, I can't seem to get this working. I downloaded the plugin, and installed Python from the Nerd Tools plugin (v2.7.14a) and used the same android app (as well as a smartthings automation app called WebCore) to send a WoL command using the MAC address found in the VM config, but so far nothing. Any suggestions as to what I could try?
-
[Support] binhex - Krusader
Well, technically a text editor could be added to the container just as Krusader was, but I understand if the maintainer doesn't want to add in the tool. Most of my desire to edit files was so I could fix/change config files, which are in the /appdata folder, so the plugin is perfect for what I want to do.
-
[Support] binhex - Krusader
Sigh...there's always one more plugin I didn't know was out there. Thank you!