d2dyno

Members
  • Posts

    95
  • Joined

  • Last visited

1 Follower

Recent Profile Visitors

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

d2dyno's Achievements

Apprentice

Apprentice (3/14)

15

Reputation

  1. Looking for `iotop`, `lftp`, `libmediainfo`/`mediainfo` and `vnstat` to be added.
  2. I see the same issue on multiple devices and different browsers
  3. I'm getting the same error over and over on the new debian apt mirror docker: ---Something went horribly wrong, can't find the mirror directory!--- Even though from within the container, I can see/ls the directory: /debian-mirror/data/mirror
  4. I used the User Scripts plugin to run this script on first start of array : #!/bin/bash # umask setup umask 077 # Variable Setup CONFIG=/boot/config/ssh HOME_SSH=/root/.ssh ZSH="/root/.oh-my-zsh" mkdir -p $HOME_SSH cp $CONFIG/pre-set/* $HOME_SSH chmod 700 $HOME_SSH chmod 644 $HOME_SSH/id_rsa.pub chmod 600 $HOME_SSH/id_rsa chmod 600 $HOME_SSH/authorized_keys ### Install zsh shits HOME="/root" sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)" umask g-w,o-w chsh -s $(which zsh) env zsh -l newplugins="git tmux zsh-autosuggestions" sed -i "s/(git)/($newplugins)/" /root/.zshrc sed -i "s#\(ZSH_THEME *= *\).*#\1agnoster#" /root/.zshrc echo "cd /mnt/user/" >> /root/.zshrc git clone https://github.com/zsh-users/zsh-autosuggestions $ZSH/custom/plugins/zsh-autosuggestions chmod 700 /root/.oh-my-zsh/custom/plugins/zsh-autosuggestions ### # Copy terminal (zsh) history cp /boot/config/.zsh_history /root Combined with this array stop script to copy ZSH history and SSH keys: #!/bin/bash # Copy terminal (zsh) history touch /boot/config/.zsh_history echo "$(cat /root/.zsh_history)" >> /boot/config/.zsh_history # Variable Setup CONFIG=/boot/config/ssh HOME_SSH=/root/.ssh # Copy any new keys on exit rsync -avhW $HOME_SSH/ $CONFIG/pre-set As for .zshrc (or aliases), I use /boot/config/go to write to /etc/profile on startup (how I was taught here to do it): # Re-make aliases on boot echo " #### Aliases copied from /boot/config/go #### alias size='du -c -h -d 1 | sort -h' export TERM=xterm-color #### End Aliases ####">>/etc/profile These are just example aliases and settings, use your own (though I do love that size alias)
  5. Initially had 0 problems with this plugin and Plex, but now the containers are super touchy, sometimes working with --runtime=nvidia and sometimes not. The error I often get is: root@localhost:# /usr/local/emhttp/plugins/dynamix.docker.manager/scripts/docker run -d --name='plex2' --net='bridge' --cpuset-cpus='25,26,27,28,29,30,31,57,58,59,60,61,62,63' -e TZ="America/Chicago" -e HOST_OS="Unraid" -e 'VERSION'='latest' -e 'PUID'='99' -e 'PGID'='100' -e 'NVIDIA_DRIVER_CAPABILITIES'='all' -e 'NVIDIA_VISIBLE_DEVICES'='GPU-1e9824c9-cf6f-9a6d-9b75-dccaa79ba9a1' -p '1901:1900/tcp' -p '32401:32400/tcp' -p '33400:33400/tcp' -v '/mnt/disks/union-thd-plex2/misc/':'/misc':'rw,slave' -v '/mnt/disks/union-thd-plex2/misc2/':'/misc2':'rw,slave' -v '/mnt/disks/union-thd-plex2/misc3/':'/misc3':'rw,slave' -v '/mnt/user/Photos/server2/':'/photos':'rw' -v '/mnt/cache/Transcode/plex2':'/transcode':'rw' -v '/mnt/disks/nvmepool/appdata/plex2':'/config':'rw,slave' --runtime=nvidia 'linuxserver/plex' 598820f4e09e0ac0f5bdb8234210fecdc67487b3d3a3392e094b2683cccd2bdc /usr/bin/docker: Error response from daemon: OCI runtime create failed: container_linux.go:346: starting container process caused "process_linux.go:449: container init caused "process_linux.go:432: running prestart hook 1 caused \"error running hook: exit status 1, stdout: , stderr: nvidia-container-cli: initialization error: cuda error: initialization error\\n\""": unknown. The command failed. EDIT: so when I run 'watch nvidia-smi' it comes up with my gpu, then later says no devices found.
  6. Same. This should be on the front page / on the github
  7. Yes I did. Using bridge as always, tried adding NET_ADMIN via extra arguments, did not change any behaviour. /usr/local/emhttp/plugins/dynamix.docker.manager/scripts/docker run -d --name='openvpn-as' --net='bridge' --cpuset-cpus='5,6,37,38' --privileged=true -e TZ="America/Chicago" -e HOST_OS="Unraid" -e 'INTERFACE'='eth0' -e 'PGID'='100' -e 'PUID'='99' -p '943:943/tcp' -p '11194:11194/udp' -v '/mnt/disks/nvmepool/appdata/openvpn-as':'/config':'rw,slave' --cap-add=NET_ADMIN --label="traefik.protocol=https" --label="traefik.enable=true" --label="traefik.port=943" --label="traefik.frontend.rule=Host:ovpn.example.nl" --restart unless-stopped 'linuxserver/openvpn-as:latest' log-docker.txt openvpn.log
  8. I'm getting this on a fresh install. Fresh because the update wiped out my config folder: https://github.com/linuxserver/docker-openvpn-as/issues/108 Getting this in container log Unpacking openvpn-as (2.8.3-f28d2eae-Ubuntu18) ... Setting up openvpn-as-bundled-clients (7) ... Setting up openvpn-as (2.8.3-f28d2eae-Ubuntu18) ... Automatic configuration failed, see /usr/local/openvpn_as/init.log You can configure manually using the /usr/local/openvpn_as/bin/ovpn-init tool. /var/lib/dpkg/info/openvpn-as.postinst: line 68: systemctl: command not found Stopping openvpn-as now; will start again later after configuring cat: /var/run/openvpnas.pid: No such file or directory kill: usage: kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec]
  9. Not using jumbo frames is a workaround, not a fix. I use that MTU on purpose, and never had issues except with this plugin.
  10. Same exact issue with SFP+ aggregated (802.3ad) NiC, MTU 9000. Also using Unifi gear.
  11. Updated my BIOS (On PRIME X399-A went from 0808 -> 1203) and the Quadro now displays. It's very possible the update simply reset settings that needed to be changed too. I kept the 'fake' DP connected just in case. Thanks for all the help!
  12. Are you speaking of this? If so, the output is: nvidia-smi --query-gpu=gpu_name,gpu_bus_id,gpu_uuid --format=csv,noheader | sed -e s/00000000://g | sed 's/\,\ /\n/g' No devices were found I bought these to see if that will resolve it: https://www.amazon.com/gp/product/B075873RJR
  13. The nvidia-smi one? That says no devices found, same message as web GUI. Yes, installed following instructions in the OP (install plugin, use plugin to install Nvidia unraid OS). Sent from my HD1905 using Tapatalk
  14. Just installed this 6.8.2 version, to complement my new P2000. However after installing this modded unraid version, powering off my system, installing the P2000, and powering the server back on, the Nvidia plugin shows "No devices were found". Checking lspci/System Devices, it shows the card is indeed installed: IOMMU group 18:[10de:1c30] 0a:00.0 VGA compatible controller: NVIDIA Corporation GP106GL [Quadro P2000] (rev a1) [10de:10f1] 0a:00.1 Audio device: NVIDIA Corporation GP106 High Definition Audio Controller (rev a1) I read somewhere I need to connect something to the DisplayPort for the GPU to be recognized, but the server is just in a rack with no monitor so that's not ideal (except maybe a fake DisplayPort device). Anyone know the best course of action?