Joly0

Members
  • Posts

    167
  • Joined

  • Last visited

Posts posted by Joly0

  1. Hey guys, how are the excluded folders working? I have this in my custom folders for exclusion ".Recycle.Bin, .filerun.thumbnails" (without the quotes) but today i got this in my logs

    Apr  3 11:49:42 Tower bunker: error: BLAKE3 hash key mismatch, /mnt/disk3/backup/.Recycle.Bin/Chuwi_Backup/ab_20240318_000001/my-Pihole-DoT-DoH.xml is corrupted
    Apr  3 11:49:42 Tower bunker: error: BLAKE3 hash key mismatch, /mnt/disk3/backup/.Recycle.Bin/Chuwi_Backup/ab_20240318_000001/my-homeassistant.xml is corrupted
    Apr  3 11:49:42 Tower bunker: error: BLAKE3 hash key mismatch, /mnt/disk3/backup/.Recycle.Bin/Chuwi_Backup/ab_20240318_000001/my-AMP-Controller.xml is corrupted
    Apr  3 11:49:42 Tower bunker: error: BLAKE3 hash key mismatch, /mnt/disk3/backup/.Recycle.Bin/Chuwi_Backup/ab_20240318_000001/backup.log is corrupted
    Apr  3 11:49:42 Tower bunker: error: BLAKE3 hash key mismatch, /mnt/disk3/backup/.Recycle.Bin/Chuwi_Backup/ab_20240318_000001/my-AMP.xml is corrupted
    Apr  3 11:49:42 Tower bunker: error: BLAKE3 hash key mismatch, /mnt/disk3/backup/.Recycle.Bin/Chuwi_Backup/ab_20240318_000001/chuwi1-flash-backup-20240318-0000.zip is corrupted
    Apr  3 11:49:42 Tower bunker: error: BLAKE3 hash key mismatch, /mnt/disk3/backup/.Recycle.Bin/Chuwi_Backup/ab_20240318_000001/AMP-Controller.tar.zst is corrupted
    Apr  3 11:49:42 Tower bunker: error: BLAKE3 hash key mismatch, /mnt/disk3/backup/.Recycle.Bin/Chuwi_Backup/ab_20240318_000001/Pihole-DoT-DoH.tar.zst is corrupted
    Apr  3 11:49:42 Tower bunker: error: BLAKE3 hash key mismatch, /mnt/disk3/backup/.Recycle.Bin/Chuwi_Backup/ab_20240318_000001/config.json is corrupted

    Why are those files being checked? Shouldnt they be excluded?

  2. Hey guys, could you try going into advanced mode while editing the container, remove both variables for nvidia devices and replace the argument in "extra paramters" with this "--gpus=all"

    That worked for me. If you guys get it to work aswell, i will update the template

     

    Atleast with these settings my gpu is used image.png.252ca0abdfa4cff3e6325dbc6146172f.png

     

    Also when i created that template, the settings where working, so looks like ollama changed something

  3. 21 hours ago, Holaf said:

    @brainbone_@Joly0 , Honestly I don't know if I want to add more stuff ... It's allready hard to test everything.

    That's why I added the ability to run custom scripts :)
    (It should allready be possible in the last version if I didn't forgot to push it 😅)

    I have a script for Forge available here :

    https://github.com/grokuku/stable-diffusion-custom-scripts/
     

    You just have to put it in this folder :

    /mnt/user/appdata/stable-diffusion/scripts


    and in the container config you replace the number (eg 02) by the script name (eg

    sd-webui-forge.sh)
    I did not test a lot but it seems to work .

    The WebUI will be installed in this folder :
    /mnt/user/appdata/stable-diffusion/00-custom/sd-webui-forge
     

    And outputs will be in this one :
    /mnt/user/appdata/stable-diffusion/outputs/00-custom/sd-webui-forge

     

    You might be right, adding and testing all those webui´s is a hasle, but at the same time, not everyone can write a bash script. Also i think just a few here know, this method using the custom scripts exist or that your repo with custom scripts exist.

     

    Might be a good idea to add some kind of testing environment, so the scripts can be tested more or less automatically after a new release/commit

  4. Ok  @superboki @FoxxMD @Holaf I have found a serious issue with this container. So the problem is thill the error above. I came across the same issue with comfyui, when i try to install nodes or extension using comfyui-manager. What i found out so far is, that there is a git-https command, that is used everytime you use a "git clone https://xyz" command, which is basically everytime you want to use comfyui-manager or in the example above in stable diffusion the model downloader for certain things.
    I have checked and on the docker itself, git is correctly installed with git-https, though, and this is interesting now: git-https is missing in the conda enviroment. The executables for comfyui for example are located under "/config/05-comfy-ui/env/bin".
    This grafik.png.e647abc31423e61309e79218abd53629.png is all that is installed regarding git in the conda environment (git-lfs btw is also recommended, had to install that manually using "conda install -c conda-forge git-lfs -y").
    So obviously git cant use https for git clone commands, therefore comfyui-manager cant install anything, i constantly get error messages.
    I have also checked all the channels that i could find, if any of them has git with git-https as a package available for installing through conda install. Though none have it. So we have an issue here. I am not really familiar with conda and all the environment stuff, so i have no further idea, i am just trial and error atm to find a solution.

    Maybe someone of you has a solution in their mind, but this is what i found. Imo this is a serious issue, so this should get fixed asap

  5. Hey guys, something wrong with the output directory? I keep getting this in comfyui:
     

    grafik.png

     

    EDIT:

    I found out, that the parameters txt file was wrong and still had the old path. Maybe this should be added as a migration step into the container

    • Upvote 1
  6. 4 hours ago, FoxxMD said:

    Yes I'll make PRs. The memory leak fix and lsio rework are not dependent on each other so they'll be separate.

    Nice. I am currently working on getting this to work with amd cards and rocm. Will see how good this will go. So if we both succeed, this project will have a big jump

  7. 16 hours ago, FoxxMD said:

    @Joly0 @BigD I got tired of waiting for the code so I just reverse engineered it 😄

     

    https://github.com/FoxxMD/stable-diffusion-multi

     

    The lsio branch is my rework of holaf's code to work on Linuxserver.io's ubuntu base image. This is published on dockerhub at foxxmd/stable-diffusion:lsio. It includes fixes for SD.Next memory leak and I plan on making more improvements next week. If anyone wants to migrate from holaf's to this one make sure you check the migration steps as it is slightly different in folder structure.

    This looks very great. Any chances you make a pr with your changes to holafs official repo now that it is released. Would like to see it using lsio as a base image, rather than normal ubuntu. Also the memory leak fix might be useful for everyone

  8. Btw, i have found a bug with StableSwarmUI. Using the built-in comfyui the saved images are not in the outputs folder. I have looked through the folder structure of the container, but cant find the image anywhere. So either i am missing something, or there is a bug

     

    EDIT: Found the folder, its here "/opt/stable-diffusion/07-StableSwarm/StableSwarmUI/dlbackend/ComfyUI/output" inside the container. I guess there needs to be an additional "ln -s" for that one

  9. Hey guys, i have a pool with 2 ssd´s in a zfs mirror. Now one of my ssd´s died and was no longer recognized after a reboot.

    I have already ordered a new ssd which hopefully maybe arrives tomorrow, though i am unsure about what i should/could do now?

    It would be great, if i could just start the array with the pools and still access my data on the drive that is left in the pool, so i can safely make a backup, before i try to replace the missing drive. So is it possible to just start the array and the pools and still access the data? And what about adding the replacement drive later? Can i just stop the array then and add the second drive safely? Or should i leave it turned off, wait for the second drive and just select that as the missing drive? Does it correctly and safely mirror my data to the new drive? My backups are a bit older, so there is still valuable data on that pool, which i really dont want to loose.

     

    Would be great, if someone could give me some information :D
     

    grafik.png

  10. Hey @Holaf would it be possible, to get the code for the dockerfile and scripts that you used to build this container on github, gitlab or anywhere so people can look at it and maybe improve it? Also, is it possible to get a change log. You said you pushed a big update, but i would like to know what changed? Having a changelog and having the source code would help to better understand what changed

    • Upvote 2
  11. My question(s): Why is Nextcloud so slow across all possible plattforms and even on "high end" hardware? Is there any plan to HIGHLY improve this? Are there any plans to switch from php to another programing language for nextcloud or atleast the core parts that might cause this slowness, something like owncloud did with ocis? Will there, in the future, be a "slimmed down" version of nextcloud to just use a specific part of it quite simply? In my case i would only need nextcloud drive, but its not so easy to get nextcloud cleaned up and configured so drive is the only application left (even without the dashboard and such things).

    • Like 1
    • Upvote 4
  12. 41 minutes ago, Aeloth said:

    go to Main - boot (flashdrive) - config - and edit file named editor.cfg

    my is :

    txt
    js
    php
    page
    plg
    xml
    old
    bak
    log
    css
    html
    sample
    json
    ini
    pem
    htaccess
    reg
    bat
    yml
    yaml
    gcode
    md
    srt
    cnf
    env
    REC
    editorconfig
    local
    1
    mmdb
    properties
    cfg-
    sh
    mp4
    toml

    Ah, thanks a lot, didnt knew there was a config file for that

  13. Hey, would it be possible to get support for more file extension? For example json is a file extension that i use quite often, but isnt supported, or toml, yaml or those text based configuration files. Or an option to add those simply manually by ourselves would be cool :)

  14. 40 minutes ago, Iker said:

     

    /docker/.* should do the trick, if not please send me a pm with the following command result "zfs list".

     

    Best/

    Ok, i dont know why it worked now and not before, but i tested it again and just waited a bit longer and now it works. Thx

    • Like 1
  15. On 10/3/2023 at 3:17 PM, Niklas said:


    Look at page 8-9 in this thread. You will probably need to remove the datasets manually.

    I have deleted everything now, reformated my pool and setup everything fresh and new, now it looks right, but i still cant find the right setting to hide those datasets
    Any idea? Tried "/cache/docker/.*" or "/docker/.*"

    grafik.png

  16. Just now, ich777 said:

    Did you maybe stop the array once and started it up again somewhere in between this process? It also creates the directory when the array is started <- I will add a check if the service is enabled to not create it if it is disabled.

    I dont think, i have stopped and started the array in between this process, but i am not 100% sure. I have looked through the source code and have seen, that the directory gets created when the array starts and i also thought it might be a good idea to add a check, but i first wanted to ask here if this is a bug or not.

    • Like 1