Jump to content

realies

Members
  • Posts

    174
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by realies

  1. I want to use CUDA Toolkit and cuDNN in a Docker container but it appears that has to be installed on the host. Is there a way to add these as part of the driver installation?

     

    Classifier process output: 2024-03-11 22:45:37.214569: I tensorflow/core/platform/cpu_feature_guard.cc:193] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations:  AVX2 AVX512F AVX512_VNNI AVX512_BF16 FMA
    To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.
    
    Classifier process output: 2024-03-11 22:45:37.219343: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:975] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero
    
    Classifier process output: 2024-03-11 22:45:37.219716: W tensorflow/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library 'libcudart.so.11.0'; dlerror: libcudart.so.11.0: cannot open shared object file: No such file or directory
    
    Classifier process output: 2024-03-11 22:45:37.219987: W tensorflow/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library 'libcublas.so.11'; dlerror: libcublas.so.11: cannot open shared object file: No such file or directory
    
    Classifier process output: 2024-03-11 22:45:37.220253: W tensorflow/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library 'libcublasLt.so.11'; dlerror: libcublasLt.so.11: cannot open shared object file: No such file or directory
    
    Classifier process output: 2024-03-11 22:45:37.220501: W tensorflow/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library 'libcufft.so.10'; dlerror: libcufft.so.10: cannot open shared object file: No such file or directory
    
    Classifier process output: 2024-03-11 22:45:37.220731: W tensorflow/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library 'libcurand.so.10'; dlerror: libcurand.so.10: cannot open shared object file: No such file or directory
    
    Classifier process output: 2024-03-11 22:45:37.220954: W tensorflow/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library 'libcusolver.so.11'; dlerror: libcusolver.so.11: cannot open shared object file: No such file or directory
    
    Classifier process output: 2024-03-11 22:45:37.221190: W tensorflow/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library 'libcusparse.so.11'; dlerror: libcusparse.so.11: cannot open shared object file: No such file or directory
    
    Classifier process output: 2024-03-11 22:45:37.221443: W tensorflow/stream_executor/platform/default/dso_loader.cc:64] Could not load dynamic library 'libcudnn.so.8'; dlerror: libcudnn.so.8: cannot open shared object file: No such file or directory
    
    Classifier process output: 2024-03-11 22:45:37.221448: W tensorflow/core/common_runtime/gpu/gpu_device.cc:1850] Cannot dlopen some GPU libraries. Please make sure the missing libraries mentioned above are installed properly if you would like to use GPU. Follow the guide at https://www.tensorflow.org/install/gpu for how to download and setup the required libraries for your platform.
    Skipping registering GPU devices...
    

     

  2. On 1/17/2024 at 7:27 PM, no-thanks said:

    Anyone have tips on getting sharing working? I'm using the Realies image routed through Qbittorrent VPN docker w/ Mullvad, which no longer supports port forwarding.

     

    Does that mean I'm out of luck and should just ignore the nasty chats I keep getting about not sharing files?

    Get a VPN that supports port forwarding. I think IVPN is similar to Mullvad in terms of privacy, however with less nodes, but with port forwarding. Getting a VPS and self-hosting a WireGuard server is also an option, at times cheaper than a VPN subscription.

  3. @Pjrezai, browser cache works on local addresses too.

     

    @Corneloues, here's an XML that I have just verified works fine:

    <?xml version="1.0"?>
    <Container version="2">
      <Name>soulseek</Name>
      <Repository>realies/soulseek</Repository>
      <Registry>https://hub.docker.com/r/realies/soulseek/</Registry>
      <Network>bridge</Network>
      <MyIP/>
      <Shell>sh</Shell>
      <Privileged>false</Privileged>
      <Support/>
      <Project/>
      <Overview/>
      <Category/>
      <WebUI/>
      <TemplateURL/>
      <Icon>http://www.slsknet.org/news/sites/default/files/slsk_bird.jpg</Icon>
      <ExtraParams>--restart unless-stopped</ExtraParams>
      <PostArgs/>
      <CPUset/>
      <DateInstalled>1693615037</DateInstalled>
      <DonateText/>
      <DonateLink/>
      <Requires/>
      <Config Name="Appdata" Target="/data/.SoulseekQt" Default="/mnt/user/appdata/soulseek" Mode="rw" Description="" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/appdata/soulseek</Config>
      <Config Name="Downloads" Target="/data/Soulseek Downloads" Default="" Mode="rw" Description="" Type="Path" Display="always" Required="true" Mask="false">/mnt/user/soulseek</Config>
      <Config Name="PUID" Target="PUID" Default="" Mode="" Description="" Type="Variable" Display="always" Required="false" Mask="false">99</Config>
      <Config Name="PGID" Target="PGID" Default="" Mode="" Description="" Type="Variable" Display="always" Required="false" Mask="false">100</Config>
      <Config Name="Soulseek Port" Target="57620" Default="57620" Mode="tcp" Description="" Type="Port" Display="always" Required="true" Mask="false">57620</Config>
      <Config Name="noVNC Port" Target="6080" Default="" Mode="tcp" Description="" Type="Port" Display="always" Required="false" Mask="false">6080</Config>
    </Container>

     

  4. On 7/4/2023 at 9:59 AM, bonienl said:
    ip rule add sport 22 table main

    This is not a standard rule and not included, how is this added to the configuration?

    It was added manually to wg0.conf. It allows port 22 to be accessible after starting the VPN.

     

    I think this is irrelevant and that it would be better if PostUp and PostDown values are not overwritten but mutated.

     

    For example the OS upgrade script could check if they exist in the current config file, and if they do, append '; /some/script/path/here' to the end of the line instead of replacing the whole line.

  5. The Wireguard changes to this release locked me out of a remote server. This is because the interfaces properties PostUp and PostDown in the WG Interfaces config section are overwritten instead of appending the new config there. In my instance,

     

    PostUp=logger -t wireguard 'Tunnel WireGuard-wg0 started';/usr/local/emhttp/webGui/scripts/update_services
    
    PostDown=logger -t wireguard 'Tunnel WireGuard-wg0 stopped';/usr/local/emhttp/webGui/scripts/update_services

     

    Should have been

    PostUp=logger -t wireguard 'Tunnel WireGuard-wg0 started';ip rule add sport 22 table main;/usr/local/emhttp/webGui/scripts/update_services
    
    PostDown=logger -t wireguard 'Tunnel WireGuard-wg0 stopped';ip rule del sport 22 table main;/usr/local/emhttp/webGui/scripts/update_services

     

  6. On 10/16/2019 at 12:54 PM, flaggart said:

    I would also like this.  In its absence I have been referring to this post which suggests the same information is available without the tool.

     

    Quote

    # grep "[0-9]" /sys/devices/system/edac/mc/mc*/csrow*/ch*_ce_count
    grep: /sys/devices/system/edac/mc/mc*/csrow*/ch*_ce_count: No such file or directory

     

    Not seeing anything about EDAC in dmsg too. Does Unraid still support ECC?

  7. Another change, this time breaking, from a few minutes ago. All environment variables are now capitalised.

     

    This means the old pgid and puid environment variables have to be changed to PGID and PUID.

     

    • Like 1
  8. Just to let you know, the Docker image has just been refactored and updated. It now uses the latest ubuntu image and noVNC package, TigerVNC to scale according to the browser viewport, deprecates the `resolution` and `resize` configuration parameters, and adds parameters to reconfigure the default umask, VNC server password and time zone.

     

×
×
  • Create New...