Everything posted by VergilGao
-
Unraid 7.2.3 最新的r8125 r8126 r 8127 r8156 r8168 网卡驱动补丁
主要问题是如果内核支持的话,应该开放用户手动下载硬件驱动的功能,而不是两手一摊:我们是精简内核,没有打包全部驱动,然后就什么都不管了。
-
添加检验盘后读写速度非常慢
但是我做过测试,现在我就是有校验盘的情况下,SMB传文件还是能跑满千兆……
-
对无访问权限的用户隐藏子文件夹和文件
如果官方能在GUI上支持这个功能就好了。
-
add support for rtl8761bu
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.
- 如何制作自己的docker模板?
-
有能在unraid上用的usb蓝牙5.0设备推荐吗?
某宝随便挑了一个带天线的,看他页面说明里面有张图显示他win7打的rtl8721buv的驱动,我找了rtl8721b的驱动,结果还没装驱动,插usb上直接就驱起来了。。。
-
[Support] ich777 - Gameserver Dockers
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
-
关于qbittorrent下载速度求助
因为qb需要upnp,所以bridge肯定是不行的,那么如果选host的话,直接在配置里修改端口就好了。
-
求助,docker的网络为bridge模式时无网络
你至少得上个docker的启动参数和tr的配置页面吧。
- 有能在unraid上用的usb蓝牙5.0设备推荐吗?
-
unraid 文件系统不是xfs吗
unraid用的docker ce吧,默认是btrfs驱动,应该是为了管理docker images更方便。
-
docker部署qbittorrent镜像,下载文件时后台一直读盘
-
如何制作自己的docker模板?
我自己写的docker镜像,在unraid里配置之后并没有社区里的显示的那么丰富,没有icon和说明文本之类的。 我想给这个container在网页里加上icon
-
[Plugin] Docker Compose Manager
thanks to your greate job!
-
我不能反向代理到我的unraid,但是可以路由器端口转发连接到unraid(已解决)
目前我已经完美搞定了,你参考一下
-
[Plugin] Docker Compose Manager
thanks for this useful plugin any plan to implement an easy way to add logo imagine to container created by dock-compose?
-
unraid 禁用root
也不要谈root色变,很简单的道理,只要你进了unraid的web端,不管你是什么用户,基本上就宣告拿到了系统的root权限。 你需要在外层就做好防范。
-
如何通过其他设备的nginx反代unraid的webui?
感谢,配置了 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; } }
-
如何通过其他设备的nginx反代unraid的webui?
我的ssl证书在其他设备上,通过外网访问的内网设备都是通过那个设备来做反代并应用ssl来保证安全的。 但是我在用unraid的时候发现,如果反代webui会出现一些数据无法正常显示的bug
-
闪迪的U盘不能被启动盘制作工具识别到
建议还是换一块U盘。 最稳妥的应该就是闪迪酷豆16G那个,2.0就够用,发热还低。
-
可以实现远程打印吗
cups就是标准的远程打印程序,不过具体怎么设置我就不知道了,我是单独开了一个ubuntu虚拟机装cups来实现的
-
应用商店搜索nginx就会卡死,其他应用不会
并不是只有nginx这样,我这段时间遇到过很多次,点击进入app的详情页面,整个网页卡死,必须得关掉重开。
-
怎么连接蓝牙音箱?
想要使用daapd这个程序来实现控制屋内音箱播放音乐,但是有些音箱是蓝牙连接而不是dlna连接的,不知道如何实现连接蓝牙音箱然后再绑定到docker里……
-
如何从omv 5(debian 10)迁移数据到unraid
我可以直接将文件系统为ext4的硬盘挂载到unraid下然后直接通过cp或者rsync复制到阵列磁盘里吗?
-
如何从omv 5(debian 10)迁移数据到unraid
我现在使用的nas系统是omv 5,最近计划换到unraid,我现在知道unraid如何安装。 我原本的硬盘都是用的ext4文件系统,自己手写docker-compose部署了jellyfin,qbittorrent等服务。 我希望能在不损失数据的情况下迁移系统,有人实现过类似的迁移吗?或者给我一个思路。