Jump to content

ich777

Community Developer
  • Posts

    15,760
  • Joined

  • Days Won

    202

Everything posted by ich777

  1. It can happen but shouldn‘t. Please try the slot that you used before.
  2. Please see here: I think this is a pretty step by step tutorial.
  3. Sorry but I don't see a Nvidia GPU on your PCIe bus. Are you sure the card isn't defective. Please try to reseat the card and make sure that it plugged in properly if it needs auxiliary power.
  4. Also welche USB Sticks verwendest du denn das würde mich interessieren hab hier ein System von einem Kumpel und das läuft schon ca 8 Jahre mit ein und dem selben USB Stick. Mein development system, das bei jeder Unraid version die neue version automatisch installiert für die Plugin packages hat sicher schon 100 mal die Unraid version gewechselt und läuft auch noch immer. Bitte beachte aber hier das ich nur USB2.0 Sticks verwende der Marke Transcend. Welche Sticks kaufst du denn? Das hört sich sehr nach gefälschten USB Sticks an.
  5. Ich nutze den container nicht also kann ich dir da nicht weiter helfen. Ich würde mich aber an den Entwickler selbst wenden wenn im Docker container was fehlt. Google translate, ChatGPT oder Google Gemini hilft.
  6. Bleeding edge hardware on Linux in general is never the best choice, at least when it was just released. I think so, maybe @SpencerJ can put you on the list of testers, would be also interesting to me if everything is working properly. Also check back from time to time in the Announcements subforums or subscribe to the newsletter.
  7. Can you please post your Diagnostics, I'm looking currently into a way to ignore the chip.
  8. You can do it either way and it doesn't matter much. I'm more comfortable pulling it from the source machine to the destination since it feels a bit more safe to me since you can write a script that is running on server start that starts the backup, shuts down the machine automatically if needed and if this machine is only powered on for a backup. Please don't use the root directory, you always have to use the id_rsa from the /luckybackup/.ssh directory not root because otherwise it will be wiped on a container update. Please post a screenshot from your Docker template. Then you selected the wrong keys. BTW You don't have to create new keys, please use the existing ones which are located in /luckybackup/.ssh since they are individually created for each installation and as said above, please don't use the keys from /root/.ssh
  9. Does not work currently on 6.12.10 because the Kernel is simply too old. You have to wait for a 6.13.x RC release and try there, if it then is still not working then please report it here.
  10. I don't know how they are doing it but it can't be a real WoL package because that simply won't work. No, but if you choose the power outlet method and bind the power outlets to your HomeAssistant instance then it would be of course possible. Than this is your best bet.
  11. It can be possible if the container was just starting and you changed right a value while it was starting and couldn't save successfully that it got corrupt but that is really a edge case that I never saw. As said before I have seen that only one time that a save game became corrupt on a Ark server. You can try to move the savegame to a Windows machine and import it there and see if it is working. Do you maybe have a backup from your appdata where an "old" save is included?
  12. Thank you for the report! Please update the container itself, after that edit the template, at the bottom click on Show more settings... and at Runtime Name enter "jre21" (without quotes) like: After that the container will start, download the new JRE and maybe restart one more time.
  13. Did you already try it with the driver version that I recommended above? But do you maybe have to buy a license to make use of it? Such Servers can be horrible when it comes to hardware support. I can't help much with real server stuff because I only use consumer hardware on my system. Thank you, since this is a real Datacenter card you don't have to use the option in nvidia.conf like pointed out on the plugin page but it shouldn't make a real difference. Maybe yes but it is really hard to tell, are you also sure that the PCIe x16 slot can deliver enough power, I think someone with a Dell PowerEdge had an issue where the PCIe slot doesn't delivered enough power because of a riser card. Can you maybe test the card in another system and install the Nvidia driver?
  14. This is a really bad sign: Apr 23 19:08:28 littleboy kernel: NVRM: Xid (PCI:0000:af:00): 140, pid='<unknown>', name=<unknown>, An uncorrectable ECC error detected (possible firmware handling failure) DRAM:-1840691974, LTC:0, MMU:0, PCIE:0 It might be that your card is defective or your Firmware/BIOS is simply not compatible with your Nvidia card. If possible please try to driver version: 550.67 in the plugin, reboot and see if that helps. Can you maybe also try another slot in your Server? It is also possible that the GPU is not compatible with your server, this would not be the first time that I see a card because it's not Dell, HP,... certified. I assume auxiliary power is also connected properly? For testing purposes I would also recommend that you remove the file: /boot/config/modprobe.d/nvidia.conf Just a information because I saw it, you should do it like that if you want to use more options: options nvidia-drm modeset=1 fbdev=1
  15. Why should that be implausible? To send a WoL you have to be on the same Subnet and you need a device that is available on the same subnet... I don't think that this is possible if nothing is running Anydesk or Teamviewer on your local network since otherwise this is in fact impossible because how should they perform a WoL in your subnet? Don't get me wrong but otherwise they must have physical access to your local network through the Internet and if they are able to perform this I won't be very happy because this is a big security risk! Do you use HomeAssistant? If yes, it would be way easier to do it via a WoL package through HomeAssistant or like I do it simply put your PC behind a switchable power outlet (WiFi, Zigbee,...), in your BIOS make sure that the action for Power Loss is set to Always on so that your PC/device is started, with that you won't need a WoL package at all (and maybe save some power since the PC is entirely off).
  16. Have you yet tried to set up a second instance and see if that works, I know it sounds kind of silly but please try and see if that solves your issue. You just have to stop your first container, give the new container another name and change the path to the game files. I only see those kind of issues on non supported CPUs but I assume it was working before. It could also be the case that your game files got corrupt but I haven't seen that only once for a Ark server.
  17. Boah... Ich hoffe das ist ein Fehler das du hier eine neue Zeile hast... Der syntax gefällt mir nicht wirklich hier... Das skript versucht dein /root verzeichnis zu löschen... Bitte mach es doch ein wenig anders: #!/bin/bash cd /mnt/user/CamRecords/video/ZTLVF find . -name "*.mkv" -mtime +1 -type f -exec rm -f {} \; Zuerst gehst du ins Verzeichnis mit cd dann fürhst du find im aktuellen Verzeichnis mit . aus und suchst nach allen Dateien die mit "*.mkv" enden im verzeichnis und allen unterverzeichnissen. EDIT: Wenn du nur im Verzeichnis "/mnt/user/CamRecords/video/ZTLVF" ohne Unterverzeichnissen suchen willst dann muss das so aussehen: #!/bin/bash cd /mnt/user/CamRecords/video/ZTLVF find . -maxdepth 1 -name "*.mkv" -mtime +1 -type f -exec rm -f {} \;
  18. May I ask why? Or can you please explain the benefit? You have to first understand that a reverse proxy is designed for http/https TCP traffic and RustDesk is not http/https traffic, it uses it's own encryption with the key that you have to specify, is encrypted too and also uses UDP ports. Sure you could use streaming ports but you then also have to open up the necessary ports to your reverse proxy because it can only proxy these ports if they are open. With all of that said, that will complicate your setup more than needed. So in conclusion in general it is safe to forward the ports from the container in your Firewall because it is not http/https traffic and uses it's own encryption. BTW I get these questions also from time to time for my game server containers and it's the same there, in general you can forward the ports but you are complicating the setup more than it is necessary and since you are just streaming the ports this also defeats the purpose of a reverse proxy. I also can't give support for such setups.
  19. Ja, aber das dauert noch ein paar Jahre. Wo hast du denn das her? Also die ganzen BluRay player die jetzt im umlauf sind können doch kein AV1... Was? Warum? Kannst genau so eine Intel ARC A380 nutzen, die kann momentan decodierung auf Linux, endocing geht noch nicht, aber prinzipiell kann die das (inklusive der neuen 13th und 14th gen Intel iGPUs). Mal so eine Nebenfrage hast du denn deinen Content schon in AV1 umgewandelt wenn ja warum oder meinst du das du einfach deinen content in AV1 streamst? Das ist aktuell noch nicht praktikabel, zumindest sehe ich das so weil es viele Geräte einfach noch nicht unterstützen. Also jetzt schon eine Grafikkarte in betracht zu ziehen die dann wenn das vermutlich Mainstream ist halte ich nicht für sehr sinnvoll.
  20. Do you install a specific version from the game instead of the latest available? Please note that the container usually pulls the latest version and older versions from the game had a completely different requirement in ports.
  21. This is not entirely true, the maintainer has no compatible hardware anymore and moved on however it is true that he still maintains the repo but relies completely on Pull Requests (I've already made an issue for that here). Sure but that will take some significant amount of time (your linked issue was created 2022), you can read also more about that into my linked issue and as you've already wrote, they delayed it. I only took a quick look what changes would be needed to make it compatible and from what I saw that involves a significant amount of changes. Maybe someone will create a PR and make it compatible with Kernel 6.7+ to make it usable on newer version Unraid versions (6.13.x) which will definitely ship with a up to date Kernel. So to speak I don't think that SR-IOV will be supported on Unraid 6.13.x, at least not as long as someone creates a PR which fixes the driver module. Hope that explains the statement from @giganode a bit better.
  22. I have to try but this will take some time since I'm really busy currently... Have you yet tried to reinstall your game on your local PC?
  23. Thank you for the report! I also don't see a PR, however I changed the library libglib2.0-dev to libglib2.0-0 since the development package is not needed. Sure, I still maintain these container. Just because I don't accept any new requests for game server doesn't mean that I dropped support for existing containers. The container is already updated and is working again. Thanks again for the report!
  24. I don‘t take any game server requests anymore, sorry…
  25. Can you please pull Diagnostics? I assume that this is some kind of hardware issue…
×
×
  • Create New...