Zan

Members
  • Posts

    120
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Zan's Achievements

Apprentice

Apprentice (3/14)

9

Reputation

1

Community Answers

  1. I've got a Windows11 VM with VF passthrough working but getting the same "Host Encoder" errors in Parsec. Using Remote Desktop Connection from a separate machine works well, it looks like GPU acceleration and a separate audio device are all added without any additional driver install or anything. In order to avoid using a separate machine for RDP, I'm trying to get rdesktop or maybe Reminna working within unRAID GUI boot screen. Steps so far: Installed these packages: https://slackware.uk/slackware/slackware64-15.0/slackware64/xap/rdesktop-1.9.0-x86_64-4.txz https://slackware.uk/slackware/slackware64-15.0/slackware64/l/libsamplerate-0.2.2-x86_64-1.txz Disabled NLA in Win11 System Properties->Remote tab (Win+R - sysdm.cpl) to bypass CredSSP error: But getting this error when running rdesktop via the GUI boot terminal: Core(error): locale_to_utf16(), iconv_open[UTF-8 -> UTF-16LE] fail 0xffffffffffffffff Aborted Parsec I assume has faster streaming but RDP seems the easier to setup - if I can get rdesktop or Reminna working and audio enabled in unRAID GUI boot mode this might be a good option.
  2. I'm seeing the same issue. Can see a list of peers but connections can't be established. Is there a log that can be enabled in qbittorrent to identify why or maybe a bash command in the docker container I could run to check? I'm assuming it's maybe that UDP and TCP port 6881 in the qbittorrent docker config aren't able to work through the VPN Manager's wireguard config as a regular wireguard docker with qbittorrent works fine. @bonienl any thoughts?
  3. Yeah those parameters worked. Thanks for your help.
  4. I've only got a server witih 16GB RAM, I thought docker get maybe 12GB to itself if needed but the container was getting killed at around 7GB utilisation. Thanks, if you can think of anything I can tweak, let me know.
  5. Hey Goobaroo, thanks for your work on these dockers. Just tried installing 10.0.0 and the container gets killed. Logs attached, any help you can provide would be great. VaultHunters3.log.gz
  6. If you have your own domain and cloudflare is your registrar then I'd recommend setting up an argo tunnel and using the cloudflared docker. Otherwise use the swag docker. SpaceInvaderOne has a video for swag. For cloudflared there's site with good instructions.
  7. If you don't have another docker container using port 80 then it is probably unRAID (Check this in Settings -> Management Access -> HTTP Port). Just use another number instead. 8080 is another common port number to use, then just use numbers up from there.
  8. I've set up VPN tunneled access for Docker using KeepSolid. Prowlarr docker works fine but qBittorrent is stuck on "Downloading metadata" for anything I throw at it - I've checked the IP address used within qBittorrent and it's the VPN IP address. Any ideas on what I can do to get downloads working?
  9. I've used vfio-bind on all devices in IOMMU group 10 and passed through the audio device to the Win10 VM, and it's all working perfectly. [8086:a348] 00:1f.3 Audio device: Intel Corporation Cannon Lake PCH cAVS (rev 10) If the USB3 to SATA cables continue without issue this might be an option for anyone wanting a tiny unRAID setup.
  10. I have unRAID running on an i3-8100b Mac Mini (2018 model). I wanted to build the smallest rig possible - previously I'd considered a mini-ITX board in an Inwin Chopin case with HDDs in a Kingwin MKS-535TL enclosure connected via SATA cables hanging out of the case. I know I'm risking HDD drop-outs with them being connected via USB3 to SATA cables (HDDs are in the Kingwin enclosure) but I'll continue monitoring for a few days, and so far so good. I formatted the internal nvme to be used as cache, and this has the benefit of forcing the Mac to boot from USB automatically 🙂 I have managed to get a Win10 VM running with IGD passthrough (VFIO-PCI machine i440fx-6.1, SeaBIOS, GPU ROM from https://github.com/patmagauran/i915ovmfPkg) but the audio is on a separate IOMMU group and I can't pass it/them through. I will try downstream and multifunction PCIe ACS override settings shortly, hopefully the 1f.3 device will be freed up for passthrough. IOMMU group 10: [8086:a30e] 00:1f.0 ISA bridge: Intel Corporation Cannon Lake LPC Controller (rev 10) [8086:a348] 00:1f.3 Audio device: Intel Corporation Cannon Lake PCH cAVS (rev 10) [8086:a323] 00:1f.4 SMBus: Intel Corporation Cannon Lake PCH SMBus Controller (rev 10) [8086:a324] 00:1f.5 Serial bus controller [0c80]: Intel Corporation Cannon Lake PCH SPI Controller (rev 10) IOMMU group 11: [106b:2005] 02:00.0 Mass storage controller: Apple Inc. ANS2 NVMe Controller (rev 01) [N:0:0:1] disk APPLE SSD AP0128M__1 /dev/nvme0n1 121GB [106b:1801] 02:00.1 Non-VGA unclassified device: Apple Inc. T2 Bridge Controller (rev 01) [106b:1802] 02:00.2 Non-VGA unclassified device: Apple Inc. T2 Secure Enclave Processor (rev 01) [106b:1803] 02:00.3 Multimedia audio controller: Apple Inc. Apple Audio Device (rev 01) Just thought I'd post here to see if others have tried a Mac Mini with unRAID.
  11. Thanks for the reply, tankertux. Couple questions: 1. Do I leave the port mappings as is for the wireguard and jackett containers? 2. What port mappings do I need for the nginx container? 3. Can you provide a sample of your nginx config file/s?
  12. Sorry to dig up this old thread but I've been trying to achieve the same outcome as OP. I had this running on Docker for Mac, and want to achieve the same on unRAID via dockerMan rather than using docker-compose: version: "3.9" networks: vpn: services: jackett: image: lscr.io/linuxserver/jackett container_name: jackett environment: - PUID=1000 - PGID=1000 - TZ=Europe/London #- AUTO_UPDATE=true #optional #- RUN_OPTS=<run options here> #optional volumes: - ./jackett:/config - /mnt/user/Downloads/watched:/downloads #ports: #- 9117:9117 restart: unless-stopped networks: - vpn network_mode: "service:wireguard" wireguard: networks: - vpn image: lscr.io/linuxserver/wireguard container_name: wireguard privileged: true cap_add: - NET_ADMIN - SYS_MODULE environment: - PUID=1000 - PGID=1000 - TZ=Europe/London #- SERVERURL=wireguard.domain.com #optional #- SERVERPORT=51820 #optional #- PEERS=1 #optional #- PEERDNS=auto #optional #- INTERNAL_SUBNET=10.13.13.0 #optional #- ALLOWEDIPS=0.0.0.0/0 #optional volumes: - ./wireguard:/config - /lib/modules:/lib/modules ports: - 51821:51820/udp - 9117:9117 #jackett sysctls: - net.ipv4.conf.all.src_valid_mark=1 - net.ipv4.conf.all.rp_filter=2 restart: unless-stopped So I've set up the wireguard docker and added port 9117 to it, removed port 9117 from the jackett docker and set --network="container:wireguard" then in the wireguard docker added port 9117, but pointing the browser to port 9117 times out. curl canhazip.com in both wireguard and jackett dockers shows that they're using the VPN, but I can't figure out how to get the request to port 9117 to reach the jackett docker and return a response. Any ideas?
  13. Thanks @ich777, really appreciate your help - thanks for helping the unRAID community with your plugins/development and assistance on the forums.
  14. My WinTV-quadHD card has been having issues for a week or so, probably since a recent re-start. I'm getting a bunch of cx23885 errors including the common "mpeg risc op code error". This page indicates it's likely due to Vt-d/Vt-x https://github.com/b-rad-NDi/Ubuntu-media-tree-kernel-builder/issues/69 Is anyone else seeing similar issues wiith their WinTV-quadHD card recently? I had this at the end of my /boot/config/go file for some time now but it doesn't seem to help anymore. echo "options cx23885 dma_reset_workaround=2" >> /etc/modprobe.d/cx23885.conf