dboris

Members
  • Posts

    83
  • Joined

  • Last visited

About dboris

  • Birthday 04/14/1992

Converted

  • Gender
    Male

Recent Profile Visitors

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

dboris's Achievements

Rookie

Rookie (2/14)

16

Reputation

  1. The irony at me having the same issue months later and searching again until I find my message.
  2. So it really was out of luck that 10000 worked and 10001 failed ! I searched and found on this topic some indications to use the terminal : dd if=/dev/zero of=/mnt/ssd/swap/swapfile bs=1M count=32768 btrfs property set /mnt/ssd/swap/swapfile compression none mkswap -L swapfile /mnt/ssd/swap/swapfile chmod 600 /mnt/ssd/swap/swapfile swapon -v /mnt/ssd/swap/swapfile Would you mind validating that this matches the settings bellow ? I tried, but first row created the right file, but second row gets me : ERROR: failed to set compression for /mnt/ssd/swap/swapfile: Invalid argument And while the filehas been created after a few seconds, the options doesn't update to the right size on the pluggin. And regarding swapiness, should I run this ? sysctl /mnt/ssd/swap/swapfile.swappiness=10 Thanks ! Note that I'm doing this for GitLab CE repository that wants to eat all my ram. I probably could find the answers by googling, but I'm hopping some user may find this post useful.
  3. When typing "10G" or swap amounts above 10000, I noticed the pluggin stops working : Cache is missing when typing "free -m".
  4. No I don't face this issue. 2 factor authentication worked for me on my mobile : had to log in manually on authelia. Once done, still working today.
  5. Hello I tried installing and removing entirely the docker multiple times without having any success. Basically I can't manage to access the GUI. I managed to crash my server as ram usage goes off the roof. I tried limiting the ram : still doesn't work. Edit : I checked the docker folder's permission and it was all messed up. I created the gitlab-ce folder myself and reinstalled it. Edit : The template was installing it on my media / HDD folder, for an unknown reason, when my app data should only be on my SSD drive. Edit it works this morning, but I cry : 7.44GB/used. CPU usage on the docker being displayed "0.46%". Overall CPU load is >90% and when I shut down the docker, load I goes back to 5-20%. Doesn't work for me, zero repos as well. Repports errors and GUI doesn't work if allocated with 4GB of memory, which should be it's minimum requirement for 500 users.
  6. I got once again the case where my folders disappeared after I made a change on a Folderview. I still have no idea on what caused the issue. I realised that typing "debug", only works when the plugin works ; after facing the bug I tried typing it, no results. Then I clicked previous page on my browser, validated, hopping to recover my settings ; itcreated an empty folder and all my previous folders were gone. I typed debug again and this time it worked. So I'm a bit annoyed of loosing my groups everytime ah ah ah. Which file could I back up to manually save my settings, so I can still use FolderView, and experiment to try to identify what cause that bug ? edit: I had already uninstalled the previous plugin. debug-DOCKER (1).json
  7. Thanks again Simon ! It makes sense. I made several Google search to see if this had been changed and couldn't find anything but this topic.
  8. Hello hello. I'm having issues with cache getting filled until Docker can't start anymore. I enabled the secondary storage to fill out the cache. However, I still want my docker and often read-files to be on the cache. I also want the cache to offload to array when it's getting full. However I noticed that the "use cache pool" option is now gone on the GUI. What should I do to emulate that behaviour ? This is what I used to have : And this is what I have today ; no more "prefer" option. Thanks !
  9. You want to access your Home Assistant VM remotely ? eg : with your phone companion app So simple, but couldn't find guide anywhere 😔 ! So here we are ! It's basically Home Assistant Cloud for free. You will "simply" need to reverse proxy home assistant virtual machine with Traefik on Unraid ! 🥸 You must already : configure Home Assistant with a Fixed IP. have a domain or a DDNS setup have attributed a subdomain to point to home assistant have successfully reverse proxied a service/docker (so you don't start with HA's VM) MUST ABSOLUTELY have set up a double auth middleware (so you don't expose your HA VM to the rest of the world). I won't provide support for these steps. Ibracorp videos are a good starting point. I personally use ddns-updater, Cloudflare and Authelia. On Home Assistant, edit your configuration.yaml (with the file editor HA plugin) : homeassistant: external_url: "https://subdomain.domain.com" # provide your subdomain and domain, with no port internal_url: "http://homeassistant.local:8123" # local address with port http: use_x_forwarded_for: true ip_ban_enabled: false trusted_proxies: - 192.168.X.X/24 # replace X to fit your local devices On Traefik, edit fileConfig.yml, to include under "http:", and edit the following : subdomain domain localip localport auth (if not already named auth, must be replaced with the identifier of your middleware) ## EXTERNAL ROUTING - Only use if you want to proxy something manually ## routers: HomeAssistantRouter: entryPoints: https rule: "Host(`subdomain.domain.com`)" service: HomeAssistantService middlewares: - auth ## SERVICES ## services: HomeAssistantService: loadBalancer: servers: - url: http://localip:localport Then go check on Traefik's UI to see if there's any error being reported. It should be all green. You'll just need to log on your Auth service before logging in Home Assistant. I tried from the Companion's app and it worked perfectly with Authelia. You are now set, enjoy the automations ! 👏
  10. It works. Reboot bug was because somehow virsh wasn't interpreting the VM name when using parenthesis. So the script part for sleep is : virsh suspend HomeAssistant rc.usb_manager vm_action HomeAssistant disconnect And wake up : rc.usb_manager vm_action HomeAssistant prepare virsh resume HomeAssistant
  11. unraid.usbip-gui is not installed. Seems that's a common issue. I tried reinstalling the plugin and rebooting without success.
  12. I edited these commands by replacing and name of the VM with "HomeAssistant"... But somehow it calls a halt of the system and shut my sytem off when I wake it from sleep. Ah ah ah. I will investigate :).
  13. Hello, thanks for this awesome plugin ! However I have an issue with Home Assistant and the new Sonoff ZigBee bridge USB Key. Each time my Unraid server comes out of sleep, I get a Virsh error on this USB device. I originally wanted to script a disconnection and reconnection of the key but your plugin provide a simpler way to do it than on the VM page. I just have to do VM detach and VM attach to some the error :). Would there be a way for me to script this, simpler, using your plugin ? If I could externally call your functions, it would be a neat way to do it. Thanks.
  14. Now I understand my issues ; I had the grey theme enabled. I realised the "move dockers around" were moved on the side : You should put a warning on front page with supported themes.
  15. Ah ah I need a bit more instructions. 😆 Where should I type debug exactly ?