JustinAiken

Members
  • Posts

    452
  • Joined

  • Last visited

Posts posted by JustinAiken

  1. Right now on the current docker image, I'm seeing this error on startup:

     

    /usr/lib/python3.8/site-packages/sickchill/locale
    /usr/lib/python3.8/site-packages/sickchill/locale
    Traceback (most recent call last):
    File "/usr/bin/SickChill.py", line 14, in <module>
    import sickchill.start
    File "/usr/lib/python3.8/site-packages/sickchill/__init__.py", line 1, in <module>
    from .show.indexers import indexer, ShowIndexer
    File "/usr/lib/python3.8/site-packages/sickchill/show/indexers/__init__.py", line 1, in <module>
    from .handler import ShowIndexer
    File "/usr/lib/python3.8/site-packages/sickchill/show/indexers/handler.py", line 5, in <module>
    from sickchill.tv import Show, TVEpisode
    File "/usr/lib/python3.8/site-packages/sickchill/tv.py", line 15, in <module>
    import imdb
    ModuleNotFoundError: No module named 'imdb'

    EDIT: Opened issue on github at https://github.com/linuxserver/docker-sickchill/issues/25

  2. ..you got me interested in a dark theme, I just gave it a try.  

    ```
    # Run this while Node Red is up and running:

    $ docker exec -it NodeRed-OfficialDocker /bin/bash

    # Then you'll be inside the running container
    # Now run:
    $ npm install node-red-contrib-theme-midnight-red

    # And exit the container: 
    $ exit

    # Now from unraid, edit settings.js: 
    $ vim /path/to/nodered/settings.js 

    ```

    You'll want it to look like: 

    ```

    ....

    editorTheme: {

      page: {

        css: "/usr/src/node-red/node_modules/node-red-contrib-theme-midnight-red/midnight.css"

      }

    }

    ```

    Then restart nodered docker from the unraid docker GUI.

  3. 57 minutes ago, H2O_King89 said:

    I don't understand this part. Do I do this in the appdata folder?

    NOT the toplevel appdata folder !- the path to your nodered appdata folder.

     

    Something like `/mnt/user/appdata/nodered` 

     

    58 minutes ago, H2O_King89 said:

    also does anyone how to turn on dark mode?

     

    https://github.com/bonanitech/node-red-contrib-theme-midnight-red#install 

     

    Looks like you have to manually do some `npm`'ing 

     

  4. Last night my unRaid became unresponse - no webUI, no ssh, and attaching I monitor I see this Kernel Panic, attached.

     

    Unfortunately no log; had to hard power it off and back on.  I just turned on the syslog server, so if it happens again I'll hopefully have more info...

     

    But anyone see anything actionable in the tail end of the panic? 

     

    But IMG_4121.thumb.JPG.b2130fdf349ff3f1f18b84b1d63a3d88.JPG

  5. https://github.com/JustinAiken/unRaid-Youtube-DL 

     

    The meat of it is this command, then some wrappers around it to make it easy to list out vids/channels/playlists you want

      docker run -it --rm \
        --name=youtube-dl \
        -v "$YOUTUBE_DIR:/src" \
        wernight/youtube-dl \
          -v \
          --all-subs \
          --embed-subs \
          --add-metadata \
          --ignore-errors \
          --playlist-start 1 \
          -f bestvideo+bestaudio \
          -o "$path" \
          --download-archive /src/archive.txt \
          "$youtube_url" || echo "Download failed :/"

     

  6. Today when I started the array (rebooted to try the 6.7.0rc2 from 6.6.6; think if anything is wrong it was the reboot, not the new version that caused this) I see this:

    1400701792_ScreenShot2019-01-29at5_24_15PM.thumb.png.9e37e9db7cf780b55f818d436cc01f82.png

     

    If I do `ls /mnt/` I see all my discs except for `disk2` which is just missing.

     

    - Does this mean my array is emulating disc2 via parity, or is it out and I'm going to find out once I go to watch a movie to find it's randomly not there?

    - Is this a disc issue, or filesystem issue?

     

    ... I used to deal with things like this all the time when I was on reiserfs, but in the last few years I've forgotten what this is like! 😛 

     

    From my syslog: 
     

    Jan 29 08:46:12 Tower emhttpd: shcmd (4051): mkdir -p /mnt/disk2
    Jan 29 08:46:12 Tower emhttpd: shcmd (4052): mount -t xfs -o noatime,nodiratime /dev/md2 /mnt/disk2
    Jan 29 08:46:12 Tower kernel: XFS (md2): Mounting V5 Filesystem
    Jan 29 08:46:13 Tower kernel: XFS (md2): Corruption warning: Metadata has LSN (1:741158) ahead of current LSN (1:741150). Please unmount and run xfs_repair (>= v4.3) to resolve.
    Jan 29 08:46:13 Tower kernel: XFS (md2): log mount/recovery failed: error -22
    Jan 29 08:46:13 Tower kernel: XFS (md2): log mount failed
    Jan 29 08:46:13 Tower root: mount: /mnt/disk2: wrong fs type, bad option, bad superblock on /dev/md2, missing codepage or helper program, or other error.
    Jan 29 08:46:13 Tower emhttpd: shcmd (4052): exit status: 32
    Jan 29 08:46:13 Tower emhttpd: /mnt/disk2 mount error: No file system
    Jan 29 08:46:13 Tower emhttpd: shcmd (4053): umount /mnt/disk2
    Jan 29 08:46:13 Tower root: umount: /mnt/disk2: not mounted.
    Jan 29 08:46:13 Tower emhttpd: shcmd (4053): exit status: 32
    Jan 29 08:46:13 Tower emhttpd: shcmd (4054): rmdir /mnt/disk2

     

    Seems likely that I should do what it says and run `xfs_repair`, but before I mess with 8TB of data thought I'd better check here....

  7. I'm more or less indifferent to the new look, except on the Docker page - it was better before the update, a lot more information fit and was readable at once.

    Adjusting the zoom on the new doesn't bring it back - something about padding or the like.

  8. On 7/20/2018 at 9:43 PM, TexasAg said:

    For anybody else that has the problem as me, I was able to solve it by creating a file, dnsmasq.d/10-custom.conf, that contained

    
    addn-hosts=/etc/pihole/extrahosts.list

    then I created the extrahosts.list file in the pihole directory with the hosts entries I wanted for my local network.

     

    @TexasAg - if you do that, then does the query log show the host instead of the IP under "Client"? 

    Or is that just to make local DNS queries resolve?

  9. After updating to the new version yesterday, I get this:

     

    ::: Testing DNSmasq config: ::: Testing lighttpd config: Syntax OK
    ::: All config checks passed, starting ...
    ::: Docker start setup complete
    [✗] DNS resolution is currently unavailable
    [cont-init.d] 20-start.sh: exited 1.
    [cont-finish.d] executing container finish scripts...
    [cont-finish.d] done.
    [s6-finish] syncing disks.
    [cont-init.d] 20-start.sh: exited 1.
    [cont-finish.d] executing container finish scripts...
    [cont-finish.d] done.
    [s6-finish] syncing disks.
    [s6-finish] sending all processes the TERM signal.
    [s6-finish] sending all processes the KILL signal and exiting.
    

    And it doesn't stay up.  DNS is set to use to 1.1.1.1

  10. Has anybody figured any ways to optimize memory usage? Right now I've got the cap set at 8GB (`8192M`) - half of the 16GB in my system.  After a few hours, I'm still getting warnings that I'm hitting 85 or 95 percent of the memory limit, and the GUI gets unresponsive.  

     

    Before I resort to buying more RAM, is there any config settings to help tame that? Or does one just need 16GB dedicated to Crashplan to back up 10TB of data? Or will it chew through 16GB just as fast as it chews through 8GB? ? 

     

    (Not related to @Djoss's dockerization work - that's working perfectly :) - , but this thread is where the most active CP discussion is..)