zadmin 发布的文章

Docker 容器备份与恢复备份容器# 停止容器 docker stop <容器ID或名称> # 提交容器为镜像 docker commit <容器ID或名称> <备份镜像名称> # 保存镜像为 tar 文件 docker save -o <备份文件路径> <镜像名称> # 查看备份文件大小 ls -lh <备份文件路径...

阅读全文

Docker 笔记一、基础命令1. 运行容器docker run -d \ -v /etc/sing-box:/etc/sing-box/ \ --name=sing-box \ --restart=always \ ghcr.io/sagernet/sing-box \ -D /var/lib/sing-box \ -C /etc/sing-box/ run2. 导...

阅读全文

工具与资源记录1. GitHub 项目项目地址说明BiliToolshttps://github.com/btjawa/BiliToolsB站相关工具res-downloaderhttps://github.com/putyy/res-downloader资源下载器BiliNotehttps://github.com/JefferyHcool/BiliNoteB站笔记工具2. 进程与文件进程...

阅读全文

Python 环境配置与 PyTorch 安装记录1. PyTorch 本地安装安装指定版本(cp312)pip install F:\Anaconda-old\torch121\torch-2.7.0+cu126-cp312-cp312-win_amd64.whl手动下载安装(cp310,大小约 2.7 GB)下载地址:https://download.pytorch.org/whl/cu...

阅读全文