nvidia 的 opensuse 太慢了,挂了代理也很慢。所以我用了 cloudflare 的 worker 来加速源的下载速度
首先注册 cloudflare 账号和新建一个 worker,不再赘述
然后贴入如下代码:
addEventListener("fetch", (event) => {
let url=new URL(event.request.url);
url.hostname="download.
开启 bbr
编辑 /etc/sysctl.conf 并添加如下内容
net.core.default_qdisc=fq
net.ipv4.tcp_congestion_control=bbr
执行sysctl -p,使其保存生效
检测是否成功开启
sysctl net.ipv4.tcp_available_congestion_control
lsmod | grep bbr
需要
cloudflared 可以创建内网隧道,实测比frp稳定很多,也快很多。不仅可以创建vnc和ssh也可以反向代理web网页。
创建vnc server
vi .config/systemd/user/x0vncserver.service
[Unit]
Description=Remote desktop service (VNC)
[Service]
Type=simple
# wait for Xorg started by ${USER}
ExecStartPre=/bin/sh -c '
导出
执行./manage.py dumpdata -a > data.json即可完成导出
导入
1. ./manage.py loaddata 的方式导入
优点:
* 方便,不容易出问题
缺点:
* 性能慢
2. 自定义脚本导入
from collections import defaultdict
from django.core import serializers
from django.
安装最新版pyinstaller
pip install git+https://github.com/pyinstaller/pyinstaller.git
把需要的qml文件加入data文件,并进行打包
pyinstaller --add-data "main.qml;./" -F main.py