MindRazorblade

Members
  • Posts

    19
  • Joined

  • Last visited

Posts posted by MindRazorblade

  1. Restarted my Unraid Server after a power outage and found both my drives in my RAID 1, btrfs cache pool were listed as unmountable.

     

    There seems to be some hesitancy with running checks/repairs with btrfs so I wanted to post my diagnostics and get some advice before doing something irreparable.

     

    I'm unsure of the value what's in my cache. I believe I have a backup of what could be in there but I'd rather not have to rely on it. If there's a way to view the file listing before anything invasive happens that would be idea.

    tower-diagnostics-20230726-2129.zip

  2. Thanks @Squid for pointing that out. Your description was just what was needed!

     

    In summary to those following this, your downloader (SabNZB/Get) communicates a file path of the download to Radarr. This file path only works from Radarr's side if it's path to the download is configured the same as your downloader.

     

    What I did earlier by making a symlink was a ductape solution where making a custom path in the Docker container was the real solution.

     

    An underlying cause of this, which is probably the same for many others, is that I am using binhex's Sab container and LinuxServer's Radarr container. Probably the file convention of one changed and caused the sudden disharmony.

  3. I think I'm having the same issue. What I've seen from Radarr's logs is that the mover is looking for the file in the `/data` directory instead of the `/downloads`. I haven't changed my config over this time so my only guess is that it is due to a new way the container is configured.

     

    I tested this by creating a symlink from within the container with the command "ln -sfv /downloads /data". Double check your log to see the path before trying this.

     

    This may be separate a separate issue but I noticed that the container was set to use the "nightly" branch instead of "stable/latest".

     

     

     

  4. 41 minutes ago, Siwat2545 said:

    Where are you connecting from? What is the internal ip of your home assistant instance and what is the ip of your ha control panel instance? and may I have a cencored out section of your home assistant's http config? also you're supposed to add your hacp address in the cors allow origin not the default https://reformedreality.com so just copy and paste the ha control panel url from your browser

    Where are you connecting from?:

    From a laptop 192.168.7.13

     

    What is the internal ip of your home assistant instance and what is the ip of your ha control panel instance?:

    192.168.7.8:8123 is the ip address I access my HA instance from the laptop

     

    may I have a cencored out section of your home assistant's http config?

    http:
      api_password: !secret http_password
      login_attempts_threshold: 5
      cors_allowed_origins:
        - http://192.168.8.8

     

    Thanks for your help!

  5. Hi @Siwat2545, I'm trying to get an instance of your Home Assistant Control Panel (HACP) to talk to my Home Assistant (HA) instance but it's giving me a pop up error saying "Unable to connect to Home Assistant. Please check the Server URL is accessible from this device or change the URL below:". I've followed the HACP troubleshooting, confirmed my API Password works and added a "cors_allowed_origins" section to the http part of my HA's configuration.yaml but still no luck.

     

    Do you have any idea what mistake I could be making?

  6. On 8/31/2018 at 4:37 AM, newoski said:

    Suddenly getting lots of errors connecting:

     

    WARNING 2 hours ago Too many connections to server news.newsgroup.ninja
    WARNING 2 hours ago Too many connections to server news.newsgroup.ninja
    WARNING 2 hours ago Too many connections to server news.newsgroup.ninja
    WARNING 3 hours ago Server news.newsgroup.ninja will be ignored for 10 minutes
    WARNING 3 hours ago Cannot connect to server news.newsgroup.ninja [Server name does not resolve]
    WARNING 3 hours ago Server ssl-eu.astraweb.com will be ignored for 10 minutes
    WARNING 3 hours ago Cannot connect to server ssl-eu.astraweb.com [Server name does not resolve]
    WARNING 3 hours ago Server news.newsgroup.ninja will be ignored for 10 minutes
    WARNING 3 hours ago Cannot connect to server news.newsgroup.ninja [Server name does not resolve]
    WARNING 3 hours ago Server ssl-eu.astraweb.com will be ignored for 10 minutes
    WARNING 3 hours ago Cannot connect to server ssl-eu.astraweb.com [Server name does not resolve]
    WARNING 7 hours ago Server news.newsgroup.ninja will be ignored for 10 minutes
    WARNING 7 hours ago Cannot connect to server news.newsgroup.ninja [Server name does not resolve]
    WARNING 7 hours ago Server ssl-eu.astraweb.com will be ignored for 10 minutes
    WARNING 7 hours ago Cannot connect to server ssl-eu.astraweb.com [Server name does not resolve]
    WARNING 8 hours ago Too many connections to server news.newsgroup.ninja

     

    What kind of logging/info would be helpful to troubleshoot? I'm on the latest stable Unraid, latest SABnzbdvpn update

    I'm having this same issue. Just starting to explore the SAB logs (/config/logs/) but haven't seen anything that points to an issue with SAB so I suspect its an issue with the VPN.

     

    By chance, did you follow SpaceInvaderOne's tutorial for getting Let'sEncrypt/NGINX working with this? If so I wonder if having SAB, etc. on another network causes some issues with the VPN.

  7. With a little bit of studying and experimentation I got this to work but I'm sure someone more experienced with udev would get this better I used the "User Scripts" app to setup a startup script that copies and refreshes the rules for the device so that the rules you setup in "99-usb-rules.rules" are loaded properly.

     

    Here it is:

    #!/bin/bash
    # copy persistent script from usb drive to drive at startup
    cp /boot/config/userFiles/99-usb-serial.rules /etc/udev/rules.d/
    chmod 644 /etc/udev/rules.d/99-usb-serial.rules
    
    # udav has likely run before the copy completes so udev needs its rules refreshed
    udevadm control --reload-rules
    
    # a reset of the device is needed so the rules just copied can take hold
    udevadm trigger --attr-match=subsystem=tty

    I'm a little nervous about the last line resetting all tty subsystems since I wasn't able to get something like :

    udevadm trigger --attr-match=serial=0000:00:11.0

    to work for some reason after confirming the serial with:

    udevadm info -a -n /dev/ttyUSB1 | grep '{serial}' | head -n1

    Here are some links for education:

    http://hintshop.ludvig.co.nz/show/persistent-names-usb-serial-devices/

    https://www.thegeekdiary.com/beginners-guide-to-udev-in-linux/

    http://reactivated.net/writing_udev_rules.html

    https://unix.stackexchange.com/questions/39370/how-to-reload-udev-rules-without-reboot

    http://www.reactivated.net/writing_udev_rules.html#example-printer

    https://askubuntu.com/questions/445735/why-do-my-udev-rules-run-if-i-use-udevadm-trigger-but-not-at-boot-time/635477

    https://www.linux.com/news/udev-introduction-device-management-modern-linux-system

     

    If you run into any commands that look like they're aren't installed be conscious that udev changed a bit since some of these were written and there are new commands for these (e.g. udevadm info instead of udevinfo).

     

    • Thanks 2
  8. No luck for me either. I've just tried this too using User Scripts to execute the copy of these rules from my boot USB at disk startup just like you've done with go. I can confirm that the right file is in the right place according to the tutorial linked in aeleos.

     

    I wonder if the copy doesn't happen early enough in startup and the rules have already been run by the time they get copied.

     

    If anyone else has had luck doing this, please let us know.

  9. On 10/10/2017 at 7:54 PM, airbillion said:

    quick question...

     

    Once installed should it work right away or will I need to reboot?

     

    It says it is installed, but borg --version yields:  

    
    -bash: /bin/borg: No such file or directory
    

    edit:

     

    WHen I try and run it from where it is installed:

    
    :# borg --version
    Traceback (most recent call last):
      File "./borg", line 6, in <module>
        from pkg_resources import load_entry_point
    ModuleNotFoundError: No module named 'pkg_resources'
    

    Thanks again!

    Just starting out using borg and this has happened to me. Added a few more packages based on this thread but still no luck. Please let me know if I can help troubleshoot.

  10. So I've just run into a similar issue after newly passing through a USB controller. I followed SpaceInvaderOne's video to do this but when I passed it through an already working Ubuntu VM I got a similar message, see attached.

     

    My solution was to switch from USB3.0 to USB2.0 which allowed me to boot and then I tried USB3.0 again and it worked.

     

    I've also attached the VM's XML for both the working 2.0 and 3.0 setups if they make a difference.

     

    Hope this helps!

     

    errorMsg.png

    ubuntuXMLusb2Passthrough.xml

    ubuntuXMLusb3Passthrough.xml

  11. I just had a response from the support team and they assured me that if I can remember where the drives go then everything should come back up. I can easily remember which drives go where (cache, disks, cache) but not necessarily which numbers they are.

     

    Jon also gave me a good suggestion to just do a check disk on the USB drive next time it's acting up rather than reformatting the whole thing. Kicking myself now that I didn't just do that.

     

    I'm going to try this when I get home tonight and come back and say how it went.

     

    Thanks to Jon for the guidance!

  12. I had an event where my unRAID server wasn't able to find my USB before activating my Windows VM despite many reboots and relocations of the USB. I reformatted my USB drive, moved the unRAID files over, made it bootable and put my licence key on it and was shocked to see that all my drive assignments had disappeared; in reading I had seen that it was a pass through to the RAM and mostly a  bootable device used for authenticating a license.

     

    I have a bad feeling that this was epicly stupid of me but I'm hopeful that there's a wizard in the software or here in the forums that can help.

     

    Thanks