Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

morethanenough

Members
  • Joined

  • Last visited

Everything posted by morethanenough

  1. Thank you @JonathanM. Yes, it is port 8081. Did as you said. Here's the run command for binhex-privoxyvpn updated: root@localhost:# /usr/local/emhttp/plugins/dynamix.docker.manager/scripts/docker create --name='binhex-privoxyvpn' --net='bridge' --privileged=true -e TZ="UTC" -e HOST_OS="Unraid" -e 'VPN_ENABLED'='yes' -e 'VPN_USER'='vpn_username' -e 'VPN_PASS'='vpn_password' -e 'VPN_PROV'='custom' -e 'VPN_CLIENT'='wireguard' -e 'VPN_OPTIONS'='' -e 'LAN_NETWORK'='192.168.0.0/24' -e 'NAME_SERVERS'='84.200.69.80,37.235.1.174,1.1.1.1,37.235.1.177,84.200.70.40,1.0.0.1' -e 'SOCKS_USER'='admin' -e 'SOCKS_PASS'='socks' -e 'ENABLE_SOCKS'='no' -e 'ENABLE_PRIVOXY'='yes' -e 'VPN_INPUT_PORTS'='8081' -e 'VPN_OUTPUT_PORTS'='' -e 'DEBUG'='false' -e 'UMASK'='000' -e 'PUID'='99' -e 'PGID'='100' -p '8118:8118/tcp' -p '9118:9118/tcp' -p '8081:8081/tcp' -v '/mnt/user/appdata/binhex-privoxyvpn':'/config':'rw' --sysctl="net.ipv4.conf.all.src_valid_mark=1" 'binhex/arch-privoxyvpn' Same issue. After restarting both containers, I tried the curl command on MeTube's console, but got the same result: /app $ curl ipconfig.io sh: curl: not found /app $ Also, trying to access the WebUI at: 192.168.1.6:8081 192.168.1.6/metube 192.168.1.6:8081/metube None works. When I tried 192.168.1.6/metube it took me to the UNRAID login page (so I think this wouldn't work anyway) Any ideas?
  2. Ok, I've read through quite a few posts to understand how Privoxy works but I am stuck. I think the best way is to post my docker "run" commands so someone who is experienced can assist please. Run command for alexta69/metube root@localhost:# /usr/local/emhttp/plugins/dynamix.docker.manager/scripts/docker create --name='MeTube' -e TZ="UTC" -e HOST_OS="Unraid" -e 'OUTPUT_TEMPLATE'='%(title)s.%(ext)s' -v '/mnt/disks/TRANSIT/':'/downloads':'rw,slave' --user 99:100 --net=container:binhex-privoxyvpn 'alexta69/metube' Run command for binhex-privoxyvpn root@localhost:# /usr/local/emhttp/plugins/dynamix.docker.manager/scripts/docker run -d --name='binhex-privoxyvpn' --net='bridge' --privileged=true -e TZ="UTC" -e HOST_OS="Unraid" -e 'VPN_ENABLED'='yes' -e 'VPN_USER'='vpn_username' -e 'VPN_PASS'='vpn_password' -e 'VPN_PROV'='custom' -e 'VPN_CLIENT'='wireguard' -e 'VPN_OPTIONS'='' -e 'LAN_NETWORK'='192.168.1.0/24' -e 'NAME_SERVERS'='84.200.69.80,37.235.1.174,1.1.1.1,37.235.1.177,84.200.70.40,1.0.0.1' -e 'SOCKS_USER'='admin' -e 'SOCKS_PASS'='socks' -e 'ENABLE_SOCKS'='no' -e 'ENABLE_PRIVOXY'='yes' -e 'VPN_INPUT_PORTS'='' -e 'VPN_OUTPUT_PORTS'='' -e 'DEBUG'='false' -e 'UMASK'='000' -e 'PUID'='99' -e 'PGID'='100' -p '8118:8118/tcp' -p '9118:9118/tcp' -p '8081:8081/tcp' -v '/mnt/user/appdata/binhex-privoxyvpn':'/config':'rw' --sysctl="net.ipv4.conf.all.src_valid_mark=1" 'binhex/arch-privoxyvpn' Now, when I run the command curl ipconfig.io in the privoxyvpn Console, I am getting the correct IP address (that of Mullvad, not my ISP's). But when I try to run the same command in the metube container, I get the error: sh: curl: not found I found this thread where @starwak3 seems to have the same problem and the first advice from @JonathanM is to "add the port mapping that would normally be on the youtube-dl container to the vpn container", which I think in my case translates to "add the port mapping that would normally be on the metube container to the vpn container". Unfortunately I have minimal experience with docker and I can't understand what this means and what I need to do. Also, I am a bit concerned about the "Extra Parameters" option in the privoxyvpn container. According to SpaceInvader One's video, I need to add the line: --net=container:binhex-privoxyvpn but the container itself had the following already added by default: --user 99:100 As you can see in the docker "run" command for the privoxyvpn container I added above, I added both lines one after the other, like this: --user 99:100 --net=container:binhex-privoxyvpn but I am not sure if that is correct and I couldn't find what the correct syntax is if there is more than one parameter to be added Any help would be greatly appreciated.
  3. Yes, that is what I want to do. If you are doing the same, do you know of any container that doesn't offer torrents functionality but only the vpn part? Or do I have to use a torrenting container?
  4. When creating a new docker, there is an option available for the Network type to use. I have seen several containers that include the option for a VPN, but what I want is to have a container use a VPN that can be chosen from the "Network type" dropdown. I hope that makes sense. For example, I want to run a docker called "MeTube" by alexta69. This docker creates a web page where I can enter a YouTube video URL and it will download the video to a disk I designate. What I want is for that specific video to be downloaded using a VPN connection and not my regular ISP. I want this to be done only for that specific docker though, not all of the containers I have running. I am using Mullvad, if that makes any difference. I've seen this guide and I followed it until step 4, but then I don't know how to proceed. Then I found this guide that's a bit older, but it refers to a container that supports VPNs whereas mine doesn't (or I can't find how it can). Is this technically possible at all? If it is, any help would be greatly appreciated please.
  5. Ok, I found the section for attaching to the vfio (I think) under Tools > System Devices I ticked on the checkbox in front of the GPU and the rest of the IOMMU group 1 were automatically selected. I then clicked on the button BIND SELECTED TO VFIO AT BOOT and I rebooted. All working now. Thank you for your help!
  6. Thank you @ghost82, but I am not very familiar with the terminology and I'd love to understand a bit more please. How do I "attach it to the vfio"? Where is the settings area that offers this option? I cannot find anything relevant in the Settings section. Also, where do I find the iommu groups? And where would I go to enable acs override?
  7. Hi all, New to Unraid, I am still trying to understand how everything works. I followed Spaceinvader One's Volumio installation guide from the video here. When I start the VM, I am getting an execution error. Unfortunately I cannot understand what the problem is and how to fix it. My settings for the VM are as follows: (link to larger screenshot) My intention is to have Volumio export sound through the motherboard's HDMI port which is connected to an amplifier, to play music. The server's details are in my signature below if needed. Any help would be greatly appreciated.
  8. Thank you @doesntaffect Are you referring to 2,5" HDD disks or SSD's? Also, which CPU would you recommend? How about an AMD Athlon 3000G?
  9. Hi all, New to the forum and ready to jump in. The machine will be running 2 VMs, one will be Home Assistant, undecided on the other, could be Windows with BlueIris. The containers will be undemanding. I have no need for any transcoding whatsoever, so I thought the addition of a GPU was not necessary. The intention is to run this machine headless. Being a NAS, it will be streaming media to an old NVIDIA Shield TV running KODI, which is perfect for my multimedia needs. My aim is to have as low power consumption as possible and to be as silent as possible. I don't have any huge needs for storage space. I chose the 3 IronWolf drives so that I can use 2x4TB for storage and one 4TB for parity. I'd like to avoid WD Reds because of the issue with SMR vs CMR drives. Reason for choosing this specific motherboard is that the WiFi/BT dongle is removable (it is actually mounted on an M.2 slot) and can be replaced with a Google Coral M.2 Accelerator A+E key, which I intend to use with Frigate in association with HA. This is an option that I couldn't find in any other mini-ITX board, but if there is an alternative, I'm all ears. The RAM is in pairs as this is needed for the APU (see below) according to the mobo's manual. I know that the CPU is not compatible with the motherboard unless the BIOS is updated, but that's an easy problem to solve. In regards to the CPU, I am not sure if this is the right one for the job, or a huge overkill. I like that it is in fact an APU, because this removes the need to buy a separate GPU (which would mean more power consumption). If you think there are other AM4 CPUs that could cover the needs of the VMs and LXCs above, and could actually be of lower TDP, let me know. I'd love to remove the need for a CPU Cooler with a fan and go fanless instead, such as with an ARCTIC Alpine AM4 Passive (that supports up to 47W TDP). I read somewhere that if the case is well ventilated, the Alpine could actually cool a CPU of higher TDP, so I have some hopes there that one of you will come up with a eureka! moment. I am going for a Jonsbo N1 NAS Case for £130.76, mainly because of the size and the fact that the HDDs will be spaced out to improve cooling. For the PSU, I chose the one modular platinum one below due to the dimensions and excellent reviews. PC PartPicker says the estimated wattage is around 183W, so the 450W PSU is definitely overkill and could be replaced with something smaller (and cheaper). Provided that the external dimensions fit the case (must be ≤150mm), I am open any alternatives you may recommend. PCPartPicker Part List Link CPU: AMD Ryzen 3 3200G 3.6 GHz Quad-Core Processor (£205.99 @ Amazon UK) CPU Cooler: Noctua NH-L9a-AM4 33.84 CFM CPU Cooler (£39.99 @ Amazon UK) Motherboard: ASRock Fatal1ty B450 Gaming-ITX/ac Mini ITX AM4 Motherboard (£104.96 @ Technextday) Memory: Corsair Vengeance LPX 32 GB (2 x 16 GB) DDR4-2666 CL16 Memory (£111.50 @ Amazon UK) CACHE: Patriot VPN100 256 GB M.2-2280 NVME Solid State Drive (£42.46 @ Technextday) DATA Storage: 3 x Seagate IronWolf NAS 4 TB 3.5" 5900RPM Internal Hard Drive (£88.98 @ Amazon UK) Power Supply: Corsair SF 450 W 80+ Platinum Certified Fully Modular SFX Power Supply (£99.99 @ Corsair UK) The above will leave me 1 SATA port on the motherboard for future expansion. Based in the UK, and electricity costs are now quite high, so any suggestions for improvement, particularly in ways to reduce power consumption or total cost, would be greatly appreciated.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.