SpaceInvaderOne

Community Developer
  • Posts

    1720
  • Joined

  • Days Won

    29

Everything posted by SpaceInvaderOne

  1. Hi @Rooie I just read your pm but thought would reply here first. Please can you check that you have port 10000/udp forwarded from your firewall/router to the ip of your unraid server. Without this port forwarded what you guys have reported happens.
  2. Hi. Well before i answer this question re the hdmi out I just want to point out that sadly Nvidia cards dont work in macOS Mojave or Catalina. You should still get a picture but no acceleration. There are no drivers since Apple no longer allow them to release them. So High Sierra would be the best OS for you to use with a gtx 970. However this isnt why you are getting no output from the hdmi. I would check in your clover configuration that you have under SMBIOS that product model is imac14,1. Some system definitions you will get a black screen otherwise. Also sometimes the gpu outputs out of the 'wrong' port. You may have to try the dvi/display port out (you can use an adapter to convert it to hdmi) hope this helps
  3. Here is a video guide for setting up Jitsi
  4. How to install the Jitsi stack and run through a reverse proxy. This guide uses docker compose and portainer.
  5. Please goto docker tab and scroll to the bottom. Then click add container. At the top of the page now click add template and choose macinabox Then when the template is open click on the red x (this will delete the stored template) Now just goto the apps tab and redownload the container. It will now redownload the template too as it has been deleted from above steps. Should be fine.
  6. New build pushed (with new Catalina build 061-96006 08APR20) 😀
  7. If running on Ubuntu. Why not use kvm/qemu and install with vitmanager. I think this would be much easier espically if you can put the Unraid disks on a separate controller card in the Ubuntu host and passthat through to the Unraid guest.
  8. You will have a better experience using splashtop desktop (personal is free on local network) with the vm rather than vnc. When logged in with vnc install the splashtop streamer for mac and the splashtop client on the computer that you want to connect from. https://www.splashtop.com/downloads
  9. If having the problem with untracked working tree error then please do the following (very similar to what @Raf02suggests - thanks Raf) (New installs wont have this problem) Goto Unraid webui and click on icon to open terminal prompt Run the following command find /var/lib/docker/btrfs/subvolumes/*/opt/shinobi/package-lock.json -delete Then in the Unraid 'Docker' tab, enable the 'Advanced view' (top right) after which you will see force update available for each container. Force update your shinobi container.
  10. So I have a Raspberry Pi 4 with 4gb of ram and was wondering if I could possibly get Unraid booted on it. So using Qemu I got it running and created an array. Shame about the performance though !!
  11. Swapping from one VM (with GPU passthrough) to another on a server with only 1 gpu, we normally shutdown the vm and use another computer to loginto the webUI and start up another VM. If you dont have another computer or just dont want to have to grab your laptop etc each time you want to jump onto another VM. We can use a script to do it all from the VM you are using.
  12. Great write up. Thanks for taking the time for posting what worked for you.
  13. Made a quick video that may help people having difficulty setting up
  14. @luizmontplease check here if port 443 is open and report back https://www.yougetsignal.com/tools/open-ports/
  15. Unfortunately at present the Unraid vm manager removes custrom xml. If you use virt-manager instead to edit your vms then the custom xml will remain the same.
  16. Not sure of any workarounds I'm afraid. Thanks I meant to fix the template for the locations and forgot to. Reading your post prompted me to fix it
  17. Hi @NoxeyI have a couple of videos i must finsish first. But i will try and make it for the end of the month. Send me a pm towards the end of the month to remind me
  18. Your welcome @jang430 Yeah a poll could be a good idea
  19. Hi, looking at your xml all the custom lines that are needed are no longer present. Unfortunately when you make a change to the vm using the Unraid vm manager gui it strips out any custom xml. So if you make a change using the vm manager after doing so you must add back the xml that has been removed At the top of the xml would be <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> This points to a custom ovmf file in the domains share. <interface type='bridge'> <mac address='52:74:00:17:57:0f'/> <source bridge='br0'/> <model type='vmxnet3'/> <address type='pci' domain='0x0000' bus='0x01' slot='0x00' function='0x0'/> </interface> This part here sets the network card to be vmxnet3 (as the virtio which is standard will not work) Vmxnet3 is necessary for the install . However after installing it is better to then change that to <model type='e1000-82545em'/> Also at the bottom of the xml it is very important as the vm will not continue from clover without. <memballoon model='virtio'> <address type='pci' domain='0x0000' bus='0x0f' 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='isa-applesmc,osk=the osk key has been removed from this'/> <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> Also if you have set your cpu to have a large amount of cores then you will need to remove the topology line from the xml. for example <cpu mode='host-passthrough' check='none'> <topology sockets='1' cores='16' threads='1'/> </cpu> should be changed to <cpu mode='host-passthrough' check='none'> </cpu> Hope this helps