Jump to content

norbertt

Members
  • Posts

    30
  • Joined

  • Last visited

Posts posted by norbertt

  1. On 1/24/2021 at 2:00 PM, dlandon said:

    I am building a preliminary machine learning Docker for testing.  PM me and I'll make arrangements for you to access the Private Docker.  Access and support for this preliminary version will be very limited until the GoFundMe is successful.

    Can I volunteer for beta testing?

  2. Hi guys

     

    I have a few questions, not specified to docker but maybe someone can help me.

     

    For zmninja notification do I really need to make a portfoward? What if I want to use with VPN? 

     

    I installed hook, YOLO 4 ,4 light and face. But I don't seen any settings on the webui. Where and how can I setup the camera to make a record trigger for a 4k CCTV?

     

    Thanks

  3. 19 hours ago, Michael_P said:

    FWIW- I'm running BI in a VM on an 8700, 2 cores 4 threads and 12GB of RAM and the iGPU assigned to the VM. WIth 10 IP cameras it idles around 50% (with a tablet showing 6 in the remote web viewer constantly), but I don't do any AI matching.

    Thank you, 

    what about motion detection?

     

    So the 10600k would be good for me, if the unraid is supporting this cpu

  4. On 9/4/2020 at 4:16 PM, PaDadof2 said:

    any changes with Deemix? 

     

    I'm getting this Docker error after updating irl cookie today

     

    I'm now getting the error - File "/deemix/server.py", line 8, in <module>

    from flask import Flask, render_template, request, session, redirect, copy_current_request_context

    ModuleNotFoundError: No module named 'flask'

     

    Any Ideas?

    I had a same issue. Please delete the deemix docker and the config too

  5. Hi guys I am thinking to upgrade my Unraid 

    Current conf: 

    ASRock H270M-ITX/ac

    Intel® Core™ i5-7500T CPU @ 2.70GHz

    Current usage: 

    Plex (local use), Sonarr, Radarr, deluge and nbz, hassio, and some other docker.

     

    I will need a Windows 10 VM for Blue Iris and 8 IP cam for motion detection and AI.(face recognition, object recognition) (I will add a used GPU for extra power)

     

    The Intel 10600 (k) would be a good choice? This CPU is enough for my usage? Can handle it more?

     

    Thank you

  6. On 5/7/2020 at 5:27 PM, DZMM said:

    That wouldn't work for me.  It can literally freeze and not shutdown and I need to do a hard shutdown.  It's the main reason why I don't reboot often - e.g. last month I got a disk error from a hard shutdown, which was painful to fix.

     

    Sometimes it's seamless - I actually think there's something in 6.8.x that causes the problem.

     

    On 5/8/2020 at 8:55 AM, DZMM said:

    But

     

    - the checker files are created and removed by a script. Just because they aren't there, doesn't mean rclone isn't running

    - sleeping for a combined 20s isn't going to fix hangs

     

     

    Do you know better solution for a unmount?  Sometimtes I need to shut down the array and example in the weekend I will upgrade my hw setup. So sometimes would be nice to have a script for a clean unmount.

  7. @DZMM,

     

    Sorry to bother you, but I am stuck and its getting to be painfull. I need you help:)

     

    There is my config:

    [gdrive]
    type = drive
    client_id = -...
    client_secret = -
    scope = drive
    token = 
    team_drive = 
    
    [gdrive_media_vfs]
    type = crypt
    remote = gdrive:crypt
    filename_encryption = standard
    directory_name_encryption = true
    password = --
    password2 = 
    

     

    There is my mount script:

    RcloneRemoteName="gdrive_media_vfs" 
    RcloneMountShare="/mnt/user/mount_rclone" 
    MergerfsMountShare="/mnt/user/mount_mergerfs" 
    DockerStart="nzbget plex sonarr radarr deluge" 
    LocalFilesShare="ignore"
    MountFolders=\{"downloads/complete,downloads/intermediate,downloads/seeds,movies,tv"\} # comma separated list of folders to create within the mount
    
    
    
    # Add extra paths to mergerfs mount in addition to LocalFilesShare
    LocalFilesShare2="ignore" # without trailing slash e.g. /mnt/user/other__remote_mount/or_other_local_folder.  Enter 'ignore' to disable
    LocalFilesShare3="ignore"
    LocalFilesShare4="ignore"
    
    # Add extra commands or filters
    Command1="--rc"
    Command2=""
    Command3=""
    Command4=""
    Command5=""
    Command6=""
    Command7=""
    Command8=""
    
    CreateBindMount="N" # Y/N. Choose whether to bind traffic to a particular network adapter
    RCloneMountIP="172.168.4.252" # My unraid IP is 172.30.12.2 so I create another similar IP address
    NetworkAdapter="eth0" # choose your network adapter. eth0 recommended
    VirtualIPNumber="2" # creates eth0:x e.g. eth0:1.  I create a unique virtual IP addresses for each mount & upload so I can monitor and traffic shape for each of them

    There is my upload:

     

    # REQUIRED SETTINGS
    RcloneCommand="move" # choose your rclone command e.g. move, copy, sync
    RcloneRemoteName="gdrive_media_vfs" # Name of rclone remote mount WITHOUT ':'.
    RcloneUploadRemoteName="gdrive_media_vfs" # If you have a second remote created for uploads put it here.  Otherwise use the same remote as RcloneRemoteName.
    LocalFilesShare="ignore" # location of the local files without trailing slash you want to rclone to use
    RcloneMountShare="/mnt/user/mount_rclone" # where your rclone mount is located without trailing slash  e.g. /mnt/user/mount_rclone
    MinimumAge="15m" # sync files suffix ms|s|m|h|d|w|M|y
    ModSort="ascending" # "ascending" oldest files first, "descending" newest files first
    
    # Note: Again - remember to NOT use ':' in your remote name above
    
    # Bandwidth limits: specify the desired bandwidth in kBytes/s, or use a suffix b|k|M|G. Or 'off' or '0' for unlimited.  The script uses --drive-stop-on-upload-limit which stops the script if the 750GB/day limit is achieved, so you no longer have to slow 'trickle' your files all day if you don't want to e.g. could just do an unlimited job overnight.
    BWLimit1Time="01:00"
    BWLimit1="off"
    BWLimit2Time="08:00"
    BWLimit2="off"
    BWLimit3Time="16:00"
    BWLimit3="off"
    
    # OPTIONAL SETTINGS
    
    # Add name to upload job
    JobName="_daily_upload" # Adds custom string to end of checker file.  Useful if you're running multiple jobs against the same remote.
    
    # Add extra commands or filters
    Command1="--exclude downloads/**"
    Command2=""
    Command3=""
    Command4=""
    Command5=""
    Command6=""
    Command7=""
    Command8=""
    
    # Bind the mount to an IP address
    CreateBindMount="N" # Y/N. Choose whether or not to bind traffic to a network adapter.
    RCloneMountIP="172.168.4.253" # Choose IP to bind upload to.
    NetworkAdapter="eth0" # choose your network adapter. eth0 recommended.
    VirtualIPNumber="1" # creates eth0:x e.g. eth0:1.
    
    # Use Service Accounts.  Instructions: https://github.com/xyou365/AutoRclone
    UseServiceAccountUpload="N" # Y/N. Choose whether to use Service Accounts.
    ServiceAccountDirectory="/mnt/user/appdata/other/rclone/service_accounts" # Path to your Service Account's .json files.
    ServiceAccountFile="sa_gdrive_upload" # Enter characters before counter in your json files e.g. for sa_gdrive_upload1.json -->sa_gdrive_upload100.json, enter "sa_gdrive_upload".
    CountServiceAccounts="15" # Integer number of service accounts to use.
    
    # Is this a backup job
    BackupJob="N" # Y/N. Syncs or Copies files from LocalFilesLocation to BackupRemoteLocation, rather than moving from LocalFilesLocation/RcloneRemoteName
    BackupRemoteLocation="backup" # choose location on mount for deleted sync files
    BackupRemoteDeletedLocation="backup_deleted" # choose location on mount for deleted sync files
    BackupRetention="90d" # How long to keep deleted sync files suffix ms|s|m|h|d|w|M|y

    I am not sure so I ask, do I need the upload script if I want to use the MergerfsMountShare="/mnt/user/mount_mergerfs"  for anything?

    anyhow

     

    I mapped my dockers to /user -> /mnt/user

     

    I got a problem with a downloads 

    Nzbget main folder is: /user/mount_mergerfs/gdrive_media_vfs/downloads

    If I mapped the app to this folder the all process is very slow and I recive this error all the time:

    Could not create file /user/mount_mergerfs/gdrive_media_vfs/downloads/intermediate/The.Christmas.Bunny.2010.1080p.AMZN.WEBRip.AAC2.0.x264-FGT.#1/61.out.tmp: (null)

     

    I recive similar permission problem with deluge..

     

    What am I missing? I been the github page for a clean guide but I think my setup is correct.

     

    thank you

  8. Hello,

     

    I got a gliching issue with my Catalina VM. 

    I dont know what to do with, can someone help me please? On the picture I opened the map app, but I got a same problem with chrome, brave and other apps too. When I move the mouse on the black screen I can see the content pixel by pixe...

    1749796428_Screenshot2020-04-02at19_02_51.thumb.png.a3fbc098d2554c25fa91be9452a06186.png

     

    And I got a Account limit reached problem when I try to ligon to iCloud, but the appstore is working.. I chanched the network card to e1000-82545em but nothing chaged.

     

    There is my xml:

     

    <?xml version='1.0' encoding='UTF-8'?>
    <domain type='kvm' xmlns:qemu='http://libvirt.org/schemas/domain/qemu/1.0'>
      <name>MacinaboxCatalina</name>
      <uuid></uuid>
      <description>MacOS Catalina</description>
      <metadata>
        <vmtemplate xmlns="unraid" name="MacOS" icon="/mnt/user/domains/MacinaboxCatalina/icon/catalina.png" os="Catalina"/>
      </metadata>
      <memory unit='KiB'>6291456</memory>
      <currentMemory unit='KiB'>6291456</currentMemory>
      <memoryBacking>
        <nosharepages/>
      </memoryBacking>
      <vcpu placement='static'>4</vcpu>
      <cputune>
        <vcpupin vcpu='0' cpuset='0'/>
        <vcpupin vcpu='1' cpuset='1'/>
        <vcpupin vcpu='2' cpuset='2'/>
        <vcpupin vcpu='3' cpuset='3'/>
      </cputune>
      <os>
        <type arch='x86_64' machine='pc-q35-3.1'>hvm</type>
        <loader readonly='yes' type='pflash'>/mnt/user/domains/MacinaboxCatalina/ovmf/OVMF_CODE.fd</loader>
        <nvram>/mnt/user/domains/MacinaboxCatalina/ovmf/OVMF_VARS.fd</nvram>
      </os>
      <features>
        <acpi/>
        <apic/>
      </features>
      <cpu mode='host-passthrough' check='none'>
        <cache mode='passthrough'/>
      </cpu>
      <clock offset='utc'>
        <timer name='rtc' tickpolicy='catchup'/>
        <timer name='pit' tickpolicy='delay'/>
        <timer name='hpet' present='no'/>
      </clock>
      <on_poweroff>destroy</on_poweroff>
      <on_reboot>restart</on_reboot>
      <on_crash>restart</on_crash>
      <devices>
        <emulator>/usr/local/sbin/qemu</emulator>
        <disk type='file' device='disk'>
          <driver name='qemu' type='qcow2' cache='writeback'/>
          <source file='/mnt/user/domains/MacinaboxCatalina/Clover.qcow2'/>
          <target dev='hdc' bus='sata'/>
          <boot order='1'/>
          <address type='drive' controller='0' bus='0' target='0' unit='2'/>
        </disk>
        <disk type='file' device='disk'>
          <driver name='qemu' type='raw' cache='writeback'/>
          <source file='/mnt/user/domains/MacinaboxCatalina/Catalina-install.img'/>
          <target dev='hdd' bus='sata'/>
          <address type='drive' controller='0' bus='0' target='0' unit='3'/>
        </disk>
        <disk type='file' device='disk'>
          <driver name='qemu' type='raw' cache='writeback'/>
          <source file='/mnt/user/domains/MacinaboxCatalina/macos_disk.img'/>
          <target dev='hde' bus='sata'/>
          <address type='drive' controller='0' bus='0' target='0' unit='4'/>
        </disk>
        <controller type='sata' index='0'>
          <address type='pci' domain='0x0000' bus='0x00' slot='0x1f' function='0x2'/>
        </controller>
        <controller type='pci' index='0' model='pcie-root'/>
        <controller type='pci' index='1' model='pcie-root-port'>
          <model name='pcie-root-port'/>
          <target chassis='1' port='0x10'/>
          <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0' multifunction='on'/>
        </controller>
        <controller type='pci' index='2' model='pcie-root-port'>
          <model name='pcie-root-port'/>
          <target chassis='2' port='0x11'/>
          <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x1'/>
        </controller>
        <controller type='pci' index='3' model='pcie-root-port'>
          <model name='pcie-root-port'/>
          <target chassis='3' port='0x12'/>
          <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x2'/>
        </controller>
        <controller type='pci' index='4' model='pcie-root-port'>
          <model name='pcie-root-port'/>
          <target chassis='4' port='0x13'/>
          <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x3'/>
        </controller>
        <controller type='virtio-serial' index='0'>
          <address type='pci' domain='0x0000' bus='0x02' slot='0x00' function='0x0'/>
        </controller>
        <controller type='usb' index='0' model='ich9-ehci1'>
          <address type='pci' domain='0x0000' bus='0x00' slot='0x07' function='0x7'/>
        </controller>
        <controller type='usb' index='0' model='ich9-uhci1'>
          <master startport='0'/>
          <address type='pci' domain='0x0000' bus='0x00' slot='0x07' function='0x0' multifunction='on'/>
        </controller>
        <controller type='usb' index='0' model='ich9-uhci2'>
          <master startport='2'/>
          <address type='pci' domain='0x0000' bus='0x00' slot='0x07' function='0x1'/>
        </controller>
        <controller type='usb' index='0' model='ich9-uhci3'>
          <master startport='4'/>
          <address type='pci' domain='0x0000' bus='0x00' slot='0x07' function='0x2'/>
        </controller>
        <interface type='bridge'>
          <mac address='52:54:00:0b:72:c3'/>
          <source bridge='br0'/>
          <model type='e1000-82545em'/>
          <address type='pci' domain='0x0000' bus='0x01' slot='0x00' function='0x0'/>
        </interface>
        <serial type='pty'>
          <target type='isa-serial' port='0'>
            <model name='isa-serial'/>
          </target>
        </serial>
        <console type='pty'>
          <target type='serial' port='0'/>
        </console>
        <channel type='unix'>
          <target type='virtio' name='org.qemu.guest_agent.0'/>
          <address type='virtio-serial' controller='0' bus='0' port='1'/>
        </channel>
        <input type='tablet' bus='usb'>
          <address type='usb' bus='0' port='1'/>
        </input>
        <input type='mouse' bus='ps2'/>
        <input type='keyboard' bus='ps2'/>
        <graphics type='vnc' port='-1' autoport='yes' websocket='-1' listen='0.0.0.0' keymap='en-us'>
          <listen type='address' address='0.0.0.0'/>
        </graphics>
        <video>
          <model type='qxl' ram='65536' vram='65536' vgamem='16384' heads='1' primary='yes'/>
          <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x0'/>
        </video>
        <memballoon model='virtio'>
          <address type='pci' domain='0x0000' bus='0x03' slot='0x00' function='0x0'/>
        </memballoon>
      </devices>
      <qemu:commandline>
        <qemu:arg value='-usb'/>
        <qemu:arg value='-device'/>
        <qemu:arg value='usb-kbd,bus=usb-bus.0'/>
        <qemu:arg value='-device'/>
        <qemu:arg value='************************'/>
        <qemu:arg value='-smbios'/>
        <qemu:arg value='type=2'/>
        <qemu:arg value='-cpu'/>
        <qemu:arg value='Penryn,kvm=on,vendor=GenuineIntel,+invtsc,vmware-cpuid-freq=on,+pcid,+ssse3,+sse4.2,+popcnt,+avx,+aes,+xsave,+xsaveopt,check'/>
      </qemu:commandline>
    </domain>

    thank you guys!

     

  9. On 11/27/2019 at 6:27 AM, BackupAddict said:

    Easy once one know how but that said a simple chatid field in the UnRAID notification agent GUI for Telegram would sure be more user friendly than having to use terminal :)

     

    that is correct:) There is a way to make a small update for this settings?

    Because this is not working for me: 

    cd /boot/config/telegram
    Nano chatid
    Add chatid number to file
    Ctrl-x
    Save

     

    Thank you!

  10. its does not working for me

     

     

    [services.d] starting services
    2020/02/17 15:47:29 [INFO] Unpackerr v0.7.0-beta2-79 Starting! (PID: 214)
    2020/02/17 15:47:29 ==> Startup Settings <==
    2020/02/17 15:47:29 => Sonarr Configured: 1 server: http://192.168.3.2:8989/
    2020/02/17 15:47:29 => Radarr Configured: 0 servers
    2020/02/17 15:47:29 => Lidarr Configured: 0 servers
    2020/02/17 15:47:29 => Folder Configured: 0 paths
    2020/02/17 15:47:29 => Parallel Extracts: 1
    2020/02/17 15:47:29 => Poll Interval: 2m0s
    2020/02/17 15:47:29 => Poll Timeout: 10s
    2020/02/17 15:47:29 => Delete Delay: 5m0s
    2020/02/17 15:47:29 => Start Delay: 1m0s
    2020/02/17 15:47:29 => Retry Delay: 5m0s
    2020/02/17 15:47:29 => Debug Logs: true
    2020/02/17 15:47:29.501474 start.go:82: [DEBUG] Starting Cleanup Routine (interval: 1 minute)
    2020/02/17 15:47:29.501765 folder.go:62: [DEBUG] Folder: Nothing to watch, or no folders configured.
    [services.d] done.
    2020/02/17 15:47:29.505465 sonarr.go:22: [Sonarr] Updated (http://192.168.3.2:8989/): 1 Items Queued

     

×
×
  • Create New...