Zidichy

Members
  • Posts

    24
  • Joined

  • Last visited

Converted

  • Gender
    Male

Recent Profile Visitors

1166 profile views

Zidichy's Achievements

Noob

Noob (1/14)

11

Reputation

  1. @jbartlett Hi, I just downloaded diskspeed, really nice to be able to benchmark the drives inside unraid, thank you for this container. I was wondering if you could take a look at this. While benchmarking my Crucial nvme, I get this as a end result. As you can see, the " Avg Read / Write Speed " text, is clumbed together, and very hard to see. The MB/Sec on the left doesn't seem correct, isn't it suppose to say GB/Sec for the nvme ? I would also like to request a way to be able to get back the older results again to get to this page.
  2. @Josh.5 It is but it's also available for linux So I installed steam link with flatpak https://flatpak.org/setup/Debian Once installed, it looks like this, https://flathub.org/apps/details/com.valvesoftware.SteamLink Then you simply pair your steam account to steam link and you have access to your entire library, basically it looks like steam big picture. To have steam link start up automatically I created a new shortcut in sessions and startup. I then added a name, desc, command, triggered on login, image below But I would prefer to have steam link as a default instead of me modifying this awesome container you have created.
  3. Yes it's possible as I've done this. So I modified the container a bit, it now auto starts with steam link instead, and is all you need to do is press " Start Playing " But sadly I still have issues with the sound not getting through, the thing is I have audio working in local ip + port. So something is not correct in my rp config... console says "websocket connection to 'wss://domain.com:32123/' failed And I have high delay, guess 250Mbit/s just dosen't cut it for game streaming. However the delay is mostly because of my upload, 1Gb up should work fine as I've tested in my local environment. But in order to have this working smothly (as it does on the steam link app on ios) I belive a diffrent solution other then noVNC + nvidia gpu, is needed which I am currently using. Would also love to have the "scaling mode" set to "Local Scaling" as default instead of "none" I haven't really updated my container in a long time, since i got most of it working as a want but, @Josh.5 would it be possible to have steam link as a first choice instead of the steam client that was in the container?
  4. Thanks for linkace container A75G, the container gave me a bit of trouble though, but i have it fully working now, looking forward to trying it out.
  5. Yes I actually have these issues, I wouldn't post here and ask for help if I didn't. The container is working, but it's spitting out errors. The parameter command is already set in the container. I have tried the recommended version and newer versions same issue, works for awhile then starts spitting out errors. Then when I go to my domain I get 503 bad gatway.
  6. I totally forgot about this, but better late then never, I was able to restore my data thanks to the info in the link you gave me! Thank you very much @JorgeB
  7. However my sound is not getting through. I'm getting sound fully working in linux & windows vm's... So any help getting sound working would be appreciated.
  8. Hi thanks for the reply. Absolutely here is the issue. https://github.com/b3rs3rk/gpustat-unraid/issues/36 sorry it took awhile
  9. I run swag, and I was able to get this to work. However after about 2hours i got a lot of the same errors as many other in this thread. DATE: ERR error="Unable to reach the origin service. The service may be down or it may not be responding to traffic from cloudflared: EOF" cfRay=yxyxyxyxyyxyxyxy -LHR originService=https://IP:PORT DATE: ERR error="Unable to reach the origin service. The service may be down or it may not be responding to traffic from cloudflared: EOF" cfRay=yxyxyxyxyyxyxyxy -LHR originService=https://IP:PORT DATE: ERR error="Unable to reach the origin service. The service may be down or it may not be responding to traffic from cloudflared: EOF" cfRay=yxyxyxyxyyxyxyxy -LHR originService=https://IP:PORT So i removed the container and redid everything... Same error again, no change... I then moved my app data folder and removed swag container and did a clean install of swag and cloudflared and got it working, I moved my app data folder back and added my custom settings to swag container, and it worked great for another 40min~1hour20min+ then poff same error again... The service may be down or it may not be responding to traffic from cloudflared... Would be awesome to have cloudflared working flawless 100% of the time with Swag. Currently I have cloudflared stopped. I think this container is awesome and, I'll gladly help out as much as I can to get this to work, just let me know what you need me to do.
  10. I had this container working fine, and started it today and came to this. Uppdated the container and same issue. Log gives following warning. WARNING: Unable to locate/open X configuration file. Package xorg-server was not found in the pkg-config search path. Perhaps you should add the directory containing `xorg-server.pc' to the PKG_CONFIG_PATH environment variable No package 'xorg-server' found Option "ProbeAllGpus" "False" added to Screen "Screen0". Option "AllowEmptyInitialConfiguration" "True" added to Screen "Screen0". New X configuration file written to '/etc/X11/xorg.conf' DONE Full log here. log.txt Any help is appreciated I got it working again, i removed everything, restarted and redid everything. For some reason was the container linked to my ubuntu vm, not sure how that happen...
  11. Hi, could this be fixed? Instead of this text "applications_clocks_setting" sitting next to the " Yes" it sits underneath. Something like this, or something similar? I just don't want the text to cross over the line.
  12. Don't use notepad++ as sycotix did in his video guide, use the unraid webterminal, won't error out. /mnt/cache/appdata/Authelia# nano configuration.yml
  13. Well i couldn't sleep so i worked on my reverse proxy.conf for the invoiceninja container, and i managed to get it working. I also bashed into the invoiceninja container in cd /var/www/app and added following to the .env file Getting a few header errors in my console but it's just header issues & I'm pretty sure I can fix that tomorrow. Access to manifest at... & has been blocked by CORS policy: The 'Access-Control-Allow-Origin' header has a value 'domain' that is not equal to the supplied origin Damn now I want this themed, hope GilbN has plans for theming invoiceninja If anyone wants the reverse proxy.conf i'll add it here. Please note that i use Organizr as my http authentication so you gotta comment that out if this does not work for you. # Invoiceninja Reverse Proxy ## Version 2021/09/13 server { listen 443 ssl http2; listen [::]:443 ssl http2; server_name invoice.*; # Custom Error Pages include /config/nginx/errorpages.conf; # Organizr Authentication include /config/nginx/auth.conf; # Maxmind Geographic IP Block # include /config/nginx/geoblock.conf; # SSL Settings include /config/nginx/ssl.conf; location / { auth_request /auth-0; proxy_pass http://IP:PORT/; proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Host $http_host; } }