Jump to content

timmyx

Members
  • Posts

    29
  • Joined

  • Last visited

Posts posted by timmyx

  1. 22 minutes ago, binhex said:

    your screenshot says otherwise!, post a new supervisord.log file.

    I got it to work!

     

    it turns out that /config/ was pointing to somewhere else and after deleting perms.txt it worked well

     

    thanks for the patience!

    • Like 1
  2. 24 minutes ago, binhex said:
    cat: /config/hostlist.conf: Permission denied

    stop the container and delete /config/perms.txt then start the container, it will take longer to start but should then start correctly.

     

    thanks! apparently I don't already have that file on the folder 

    still not able to get it working... is there anything else I can do? 

     

    image.png.94da6985de4bb669a92f958cabd8f943.png

  3. I just updated from 6.9.2 to 6.11.5 and deluge stopped working. it shows the green icon indicating the container is up but I can't access the ui. I saw a lot of previous comments about pia and dns stuff, but I changed nothing on the deluge setup and I run the exact same torguard vpn config on my binhex-qbittorrentvpn (which is working fine!)

     

    using binhex/arch-delugevpn

    https://pastebin.com/czqdCXq7

     

    is the problem related to this info? if yes, how can I solve/run this?

    [info] unRAID/Ubuntu users: Please attempt to load the module by executing the following on your host: '/sbin/modprobe iptable_mangle'

     

    thanks!

  4. On 10/6/2021 at 3:34 AM, hczv said:

    @timmyx

    Thanks for this guide, it really helped me.

    I tried a few different docker applications to do the same, but it just didnt work as intended.

    one thing i personally wanted to add to this guide is the creation of nfo files for the downloaded content, this helps emby show correct Title and Description of downloaded videos (dunno if it helps plex or other platforms).

     

    1253553842_nfonaming.thumb.png.a83aaf4f3727e963c0039119604fc934.png

     

    First thing to do is download: YTDL-nfo into the defined settings folder:

    image.thumb.png.568b6e2cd5e85a1fa51487baef2139cd.png

     

    also create the script post.sh in the defined settings folder:

    #!/bin/bash
    # Define argument as variable
    file=$1
    
    # Have a lock so that it only installs requirements once
    lock=/post_install.lock
    
    # Remove file name from path, but keep path in variable
    file="${file%/*}/"
    
    # Check if the lock file exists, if it dosent; install ytdl-nfo
    if [ -e "$lock" ]; then
        ytdl-nfo "$file"
    else
        touch $lock
        apt update
        apt install python3-pip -y
        cd /settings/ytdl-nfo
        pip install -r requirements.txt
        pip install .
        ytdl-nfo "$file"
    fi
    

    This script installs and runs ytdl-nfo from the downloaded source. and since this is docker, it installs the ytdl-nfo once on each restart of the docker container.

    of course remember to set the script to executeable with "chmod +x post.sh"

     

    now add two lines to the ytdl.conf file

    --write-info-json
    --exec 'bash /settings/post.sh {}'

    This writes an info.json file for each video (required by ytdl-nfo).

    It also runs post.sh each time a video is downloaded.

     

    NOTE: there is a requirement to change the PUID in the container to 0 (root), this is unsafe but needed to allow the installation of pip and ytdl-nfo.

    image.png.9522fcec67dba10d09daca49cd8a45ee.png

     

    This is what it will look like in the log:

    image.thumb.png.0e0f83040e454461f262dd79c2a5ff99.png

     

    Future improvement would be to have ytdl-nfo preinstalled in the docker container

     

    Awesome! I added this in my original post

    • Like 1
  5. On 9/13/2021 at 9:53 PM, eob157 said:

    Howdy @timmyx,

    When I install the mikenye container I am unable to get it to run in cli. This is the error I see: https://puu.sh/IbaG5/6c41622fca.png

     

    Have you seen this before or am I not to worry about it? The container is running but whenever I open CLI I'm unable to enter commands.

     

    Thanks for the help!

     

    -EOB

    I never tried to run it through CLI but you can setup a script and run it through Scripts plugin

     

    so intead of having a list of channels in ytdl.conf you paste individual links, I do that sometimes

  6. On 7/1/2021 at 2:22 PM, ljm42 said:

     

    "Gone" as in not started? Do you have the tunnel set to autostart?

     

    Or "Gone" as in nothing is there and you have to recreate it? The files are stored in the config/wireguard folder on your flash drive. If those files go missing then I'd suspect an issue with your flash drive. We may be able to confirm issues with the flash drive if you upload your diagnostics zip file ( from Tools -> Diagnostics )

    I'm sorry, I mean the connection never gets through again. All settings are there, auto-start on, but once the server is rebooted, the tunnel stops working

     

    Am I the only one with this sort of problem? :(

  7. 8 minutes ago, TexasUnraid said:

    No, i just resorted to making a copy of the qbittorrent folder in appdata (named it -backup) and I just copy it over the existing qbittorrent folder and restart the docker. I should setup an rsync job so I don't loose any new seeds/downloads but have not been using it much lately so kinda dealing with it.

     

    Yeah I do my backups too, will have to figure out how to setup an automated workaround for this

    maybe adding an rsync/rclone job at the startup of the array to copy the backup config file to the qbittorrent folder idk

  8. On 4/21/2021 at 8:28 PM, TexasUnraid said:

    Just an observation, I have been having some random blackouts and the server randomly shutting down recently (UPS died the other day).

     

    Each time the server does an unclean shutdown, Qbittorrent seems to loose all it's settings.

     

    I now have a backup of the appdata folder and if I copy it back over the appdata and restart the docker, everything is back to normal.

     

    Any idea why the settings are erased on unclean shutdown?

    I'm experiencing the same exact problem

    Were you able to find a reason, or solution?

  9. On 3/4/2021 at 1:41 PM, ljm42 said:

     

    Do you use the "local tunnel firewall"? There is a fix in Unraid 6.9.0 that should resolve a problem with the local tunnel firewall on reboot, see: https://forums.unraid.net/topic/84229-dynamix-wireguard-vpn/page/18/?tab=comments#comment-944303  

     

    Hey! Thanks for the response.

     

    Mine is set like this (I think it's default - not exactly sure I changed anything here)

    image.thumb.png.4e46de476bf4e512ffbd741d702cd4b5.png

     

    I haven't updated to 6.9, should it work if I add the script in the /boot/config/go ?

    Fingers crossed!

     

  10. On 2/1/2021 at 2:23 PM, ljm42 said:

    That screenshot shows that WireGuard is active, so it did start up after the reboot.

     

    Unfortunately, WireGuard fails silently so there are few clues as to where the problem lies.

     

    The second post in this thread gives some specific things to look for but it may help to think about all the places the connection must pass through:

    • The client itself (WireGuard config, network config, DNS, local firewall, power savings mode)
    • The client's local LAN and router config (unless this is a mobile device on a data connection)
    • The client's Internet connection/ISP
    • The Internet between the client and server
    • The server's Internet connection/ISP
    • The server's local LAN and router config
    • The server itself (WireGuard config, network config)

    Since this was working before, consider whether anything changed at any of those places.

    If nothing clicks, try setting up a new WireGuard config

    So thanks for your reply

     

    I did some further testing and it seems something is broken when there's a reset: router (IP changes, although I set duckdns for wireguard) or server

     

    autostart:on is set on unraid

     

    remote connections/handshakes work flawlessly upon first setup (delete tunnel, set up a new one -- done this dozen times lol)

     

    when there's a reset tho, everything goes south :(

     

    I might need to revert to vpn since I cant trust my unraid with WG at this point -- and I can't know why!!!! :( 

  11. The first error I've never had particularly, but I think there's some discussions on the official github support page, you might want to take a look there

     

    The second error and the warnings about format/missing subs are fairly normal, some videos don't have subs (either preloaded or generated)

  12. On 1/30/2021 at 2:18 PM, tamito said:

    @Timmex Thank you for writing it up. I am able to follow you step and make it work. Do you have solution if some channel you want to download only couple of video instead of entire channels?

    Hi, I'm sorry for the late response, you tagged someone else entirely 😆

     

    To your question: youtube-dl has some native options but depending on your case I'd either do:

    1. a simulated run with archive options and remove all entries you actually want downloaded from the archive (this will make yt-dl write all strings from the channel but download none), or
    2. add all videos you want to a public playlist and have yt-dl fetch that list

    #1 is more work but will run great if you don't want to download specific videos in future releases (which would have you redo the procedure all the time)

     

    #2 is the simplest, fastest and future-proof option so I'd stick with that

     

    Hope this helps, feel free to reply if you need more assistance though

  13. I had WG working flawlessly until I had to do a server reboot and apparently it's now broken, no idea why

     

    I can't get a handshake anymore, but I haven't changed anything on the router/tower, I have my ip updated thru duckdns

     

    any clues? 😟

  14. These may be entry-level type of questions but I'm looking into learning a thing or two here, please bear with me :D

     

    • I want to tunnel into my unraid on my mobile device with WG setup from the other topic AND have my traffic routed through my commercial VPN account (TorGuard -- which also supports WG). By following this topic (hence Now ALL of your Unraid traffic will go through the commercial VPN tunnel.), and setting peer type of access to Remote tunneled access, does it mean that all traffic from my mobile will be guarded by Torguard?
    •  Is there any real difference from this method and the method of using the "-vpn" docker types from CA to protect my traffic? (aside of course from this tutorial not being a VPN protocol but WG protocol) -- I ask because I use most "-vpn" docker containers and those unavailable with native VPN I just use that privoxy --net=container:qbittorrent-vpn argument, and setting up the WG from this topic seems like a much easier setup than to configure every last container either as VPN or privoxy

    Thanks, any support is really appreciated :)

    • Like 1
  15. Edit: Now working! Apparently all I had to do was delete and create a new list for trakt.

    tks for the help Squid 😃

     

     

    2 hours ago, Squid said:

    Pic #3.  Just change the path.  Radarr uses "root" folders, and it uses the last one you've set as a default.  Add a new movie, Add a new path for a root folder and it'll use that one going forward by default.

     Thanks! It did the trick for manually added movies, but it's not working for the trakt list ☹️

     

    I did this: manually added a new movie and let radarr do its thing -- all good: files renamed, moved to the correct folder I added manually

     

    So next I added a new movie to my trakt list and had radarr fetch it

     

    the "old" folder is there as default

     

    2020-12-30_134320.png.8da952f518343abbf38f4a3c3e96af0a.png

     

    but if I add manually it defaults to the correct one

     

    2020-12-30_134516.png.cfff326e94a56ee51181c9c0e0523d50.png

     

     

  16. pls halp

     

    I'm new to radarr so this might be a little confusion from my side, but I've tried to tweak around and nothing seems to work

     

    My downloads are renamed correctly but and transferred to the wrong location: to /data/[movie]/ instead of /movies[movie]/

     

    At first I thought the default qbittorrent destination (#7 below) would be the problem, but I noticed that the /data/[movie]/ gets created while the file is still downloading (due to #9 - so OK), but when it's completed radarr moves the files to /data/[movie]/ regardless ☹️

     

    both qbittorrent and radarr are binhex's

     

    references:

     

    radarr-troubleshooting.thumb.png.d4782435a87ba5851bcef1b4644b2705.png

×
×
  • Create New...