爱快设置OpenWRT代理注意DNS
需要在OpenWRT里面的WAN口设置指定DNS,不然OpenWRT使用DHCP向爱快请求DNS,爱快又代理到OpenWRT的DHCP请求DNS,死循环了。   还注意要设置非OpenWRT的设备转发到OpenWRT,不然也死循环了  
Win11 在有独显时如何默认使用核显
正在跑深度学习,发现服务器有其他软件占用了独立显卡,但是按照网上的资料说设置NVIDIA控制面板里的首选图形处理器,发现Win11没有这个东西,https://www.zhihu.com/question/577660104 按照dvdedios的回答: Thanks for replying. I didn't use NVIDIA Contro…
Vmware共享文件夹自动挂载
自动挂载 修改/etc/fstab,加入如下内容 .host:/ /mnt/hgfs fuse.vmhgfs-fuse allow_other,defaults 0 0 手动挂载 sudo vmhgfs-fuse .host:/ /mnt/hgfs -o allow_other 参考
使用selenium库出现Retrying问题
Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at …
设置Mailcow自动跳转使用HTTPS
官方给的教程会使容器跳警告,所以我自己编写了一个 if ($scheme = http) { return 302 https://$host$request_uri; } 将上面的代码插入到 /opt/mailcow-dockerized/data/conf/nginx/includes/site-defaults.conf