Jump to content

VergilGao

Members
  • Posts

    50
  • Joined

  • Last visited

Everything posted by VergilGao

  1. 但是我做过测试,现在我就是有校验盘的情况下,SMB传文件还是能跑满千兆……
  2. I bought a bluetooth usb device using rtl8761bu chip, it can drive in unraid6.9.2 version, but when I run `bluetoothctl` scan on, it can't scan any device. When looking for information, I found the kernel patch and the temporary solution. patch: https://patchwork.kernel.org/project/bluetooth/patch/[email protected]/ temp: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1955916/comments/21 I followed the temporary solution and completed the following repair script #!/bin/sh set -e ko_path=/lib/modules/"$(uname -r)"/kernel/drivers/bluetooth sudo cp "${ko_path}"/btusb.ko.xz "${ko_path}"/btusb.ko.xz.bak xz -dkf "${ko_path}"/btusb.ko.xz xxd "${ko_path}"/btusb.ko | sed 's/ca04 0540/5025 6187/g' |xxd -r > "${ko_path}"/btusb.ko.mod mv "${ko_path}"/btusb.ko.mod "${ko_path}"/btusb.ko xz -f "${ko_path}"/btusb.ko chmod 644 /lib/modules/"$(uname -r)"/kernel/drivers/bluetooth/btusb.ko.xz sudo cp /boot/config/custom/firmware/rtl8761b* /lib/firmware/rtl_bt chmod 644 /lib/firmware/rtl_bt/rtl8761b* modprobe -r btusb && modprobe btusb the usb device worked successfully. Please let me know if this is fixed in 6.10.
  3. 某宝随便挑了一个带天线的,看他页面说明里面有张图显示他win7打的rtl8721buv的驱动,我找了rtl8721b的驱动,结果还没装驱动,插usb上直接就驱起来了。。。
  4. dontstarve needs a 64-bit version. if you run the 32-bit server and use the 64-bit client, you would find you can walk on the sea, and could never save your profile in the server. I realized this problem after several failures. You can refer to this commit to upgrade 32-bit to 64-bit, but the best practice should be to create another branch to maintain the 64-bit version. https://github.com/VergilGao/docker-steamcmd-server/commit/7e09925ddae0db3849bcc1e4bdb854e340cd782b
  5. 因为qb需要upnp,所以bridge肯定是不行的,那么如果选host的话,直接在配置里修改端口就好了。
  6. 你至少得上个docker的启动参数和tr的配置页面吧。
  7. unraid用的docker ce吧,默认是btrfs驱动,应该是为了管理docker images更方便。
  8. 我自己写的docker镜像,在unraid里配置之后并没有社区里的显示的那么丰富,没有icon和说明文本之类的。 我想给这个container在网页里加上icon
  9. thanks for this useful plugin any plan to implement an easy way to add logo imagine to container created by dock-compose?
  10. 也不要谈root色变,很简单的道理,只要你进了unraid的web端,不管你是什么用户,基本上就宣告拿到了系统的root权限。 你需要在外层就做好防范。
  11. 感谢,配置了 ws 之后就正常了,脑子糊涂了忘记了 下面是我的nginx.conf文件,仅供参考,敏感信息已经隐去。 upstream unraid { server 192.168.199.200; keepalive 64; } server { listen 80; listen [::]:80; server_name unraid.example.com; return 301 https://$host$request_uri; } server { listen 443 ssl http2; listen [::]:443 ssl http2; server_name unraid.example.com; access_log /tmp/log/nginx/unraid.access.log; error_log /tmp/log/nginx/unraid.error.log; ssl_protocols TLSv1.3; ssl_prefer_server_ciphers on; ssl_ciphers EECDH+AESGCM:EDH+AESGCM; ssl_session_timeout 10m; ssl_session_cache shared:SSL:10m; ssl_session_tickets off; ssl_certificate /etc/acme/*.example.com/*.example.com.cer; ssl_certificate_key /etc/acme/*.example.com/*.example.com.key; location / { proxy_pass http://unraid; proxy_http_version 1.1; proxy_buffering off; proxy_set_header Host $http_host; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_redirect off; } }
  12. 我的ssl证书在其他设备上,通过外网访问的内网设备都是通过那个设备来做反代并应用ssl来保证安全的。 但是我在用unraid的时候发现,如果反代webui会出现一些数据无法正常显示的bug
  13. 建议还是换一块U盘。 最稳妥的应该就是闪迪酷豆16G那个,2.0就够用,发热还低。
  14. cups就是标准的远程打印程序,不过具体怎么设置我就不知道了,我是单独开了一个ubuntu虚拟机装cups来实现的
  15. 并不是只有nginx这样,我这段时间遇到过很多次,点击进入app的详情页面,整个网页卡死,必须得关掉重开。
  16. 想要使用daapd这个程序来实现控制屋内音箱播放音乐,但是有些音箱是蓝牙连接而不是dlna连接的,不知道如何实现连接蓝牙音箱然后再绑定到docker里……
  17. 我可以直接将文件系统为ext4的硬盘挂载到unraid下然后直接通过cp或者rsync复制到阵列磁盘里吗?
  18. 我现在使用的nas系统是omv 5,最近计划换到unraid,我现在知道unraid如何安装。 我原本的硬盘都是用的ext4文件系统,自己手写docker-compose部署了jellyfin,qbittorrent等服务。 我希望能在不损失数据的情况下迁移系统,有人实现过类似的迁移吗?或者给我一个思路。
×
×
  • Create New...