-
参考地址: https://www.bilibili.com/video/BV1Dc411y7zS/ 命令: docker run –rm -it -p 7860:7860 weaigc/bingoCreated
25 Dec 2023 -
参考原帖: https://www.right.com.cn/forum/thread-6122276-1-1.html 只需要更换指纹即可 在以下地址中找到最新的或者合适的指纹 https://mirrors.cloud.tencent.com/lede/snapshots/targets/x86/64/kmods/ 使用sftp拷贝出 /usr/lib/opkg/status 文本编辑器批量替换全部指纹即可Created
16 Oct 2023 -
原帖地址 已测试有效 https://www.right.com.cn/forum/thread-400002-1-1.html https://www.right.com.cn/forum/thread-399853-1-1.html 当前固件版本 R23.9.18 / LuCI Master (git-23.262.38442-90de3e8) 建立端口后需将防火墙作用域新建的wan0Created
14 Oct 2023 -
参考网址 https://wanglu.info/2021/04/1401.html 固件下载网址: https://www.right.com.cn/forum/thread-212965-1-1.html https://downloads.x-wrt.com/rom/ 刷不死鸟breed 1. 开启路由器telnet功能 在浏览器中输入: http://192.168.1.1/setup.cgi?todo=debug 然后会看到Debug Enabled !字样,说明已经开启了Telnet连接; 2. telnet登录路由器 命令: telnet 192.168.1.1 输入路由器登录的用户名和密码; 3. 进入临时目录,并下载 breed 固件 cd /tmp wget http://d.uniteyun.com/breed/breed-mt7621-r6220.bin 4. 开始刷breed固件 执行命令: mtd_write write breed-mt7621-r6220.bin Bootloader 会有提示: Unlocking Bootloader …Writing from breed-mt7621-r6220.bin to Bootloader … [w] 最多几秒钟就完成了,出现最初登录进入时看到的命令行提示符 5. 进入breed界面 按住RESET重启路由器,浏览器打开breed地址: http://192.168.1.1 刷入固件 直接将 xxx-factory-xxx.img 从固件上传后刷入即可,设备会自动重启同时经历约两到三分钟后即可进入路由器设置页面 x-wrt的网件固件进入地址是 192.168.15.1 根据需要设置固件即可Created
12 Oct 2023 -
参考网址 https://blog.csdn.net/weixin_39755625/article/details/111142526 https://zhuanlan.zhihu.com/p/433386119 https://zhuanlan.zhihu.com/p/475462241 https://learn.microsoft.com/zh-cn/windows/wsl/faq 1.开启环境 打开win11设置 搜索控制面板 程序-开启或关闭win功能 勾选 : Hyper-V 适用于Linux的Windows子系统 根据提示重启 若之后重启无效则在管理员模式的power shell里输入以下命令 bcdedit /set hypervisorlaunchtype auto 2.安装 在win的微软应用商店中安装对应的环境 搜索wsl和ubuntu 安装最新版即可 命令行在管理员模式的power shell使用如下命令也可以 wsl –install -d Ubuntu 升级系统环境 sudo apt update && sudo apt upgrade -y 连接磁盘并挂载 以下指令需要在管理员权限的命令行中运行 查看已经连接的磁盘 wmic diskdrive list breif 挂载磁盘 wsl –mount [DeviceID] –partition [Partitions Num] 取消挂载 wsl –unmount [DeviceID] 命令后面无需跟上–partition命令 4. 可能会用到的命令 4.1 升级WSL内核 wsl –update 4.2 重启WSL内核 内核升级完成以后,电脑重启才会生效,这个可以用命令重启 wsl -l -shutdownCreated
11 Oct 2023 -
参考链接: 喵云崽库 https://gitee.com/yoimiya-kokomi/Miao-Yunzai https://github.com/yoimiya-kokomi/Miao-Yunzai 参考文章 https://muerg.cn/post/yunzai_docker/ https://zhu-yirui.gitee.io/zyr_blog/2023/06/16/docker%E8%BF%90%E8%A1%8C%E4%BA%91%E5%B4%BD/ 安装依赖 wrt安装以下几个工具 git-http docker-compose node-npm 指令 # 使用 Github git clone --depth=1 https://github.com/yoimiya-kokomi/Miao-Yunzai.git cd Miao-Yunzai git clone --depth=1 https://github.com/yoimiya-kokomi/miao-plugin.git ./plugins/miao-plugin/ # 使用Gitee git clone --depth=1 https://gitee.com/yoimiya-kokomi/Miao-Yunzai.git cd Miao-Yunzai git clone --depth=1 https://gitee.com/yoimiya-kokomi/miao-plugin.git ./plugins/miao-plugin/ # 使用npmjs.org安装 npm install pnpm -g # 指定国内源npmmirror.com安装 npm --registry=https://registry.npmmirror.com install pnpm -g # 直接安装 pnpm install -P # 如依赖安装缓慢或失败,可尝试更换国内npm源后再执行install命令 pnpm config set registry https://registry.npmmirror.com pnpm install -P 运维指令 启动容器 在工作目录内运行命令,拉起容器,并运行初始化命令。Created
28 Sep 2023 -
参考网址: https://zhuanlan.zhihu.com/p/403221054 https://zhuanlan.zhihu.com/p/240522090 https://zhuanlan.zhihu.com/p/109057290 https://client.sspai.com/post/73512#! https://immmmm.com/hugo-github-actions/ 01.生成token # 注意生成路径不要覆盖掉原本的key ssh-keygen -t rsa -b 4096 -C '账号邮箱' 02.配置 pub key用在pages的设置中 settings-Dewploy keys- 标题(随意)-key pravite_key用在源文件设置 settings– Secrets and variables– Actions–New –title(ACTIONS_DEPLOY_KEY)-key Actions 源码仓库 Actions- New workflow -new file- main.yml name: Deploy Hugo Site to Github Pages on Master Branch on: push: workflow_dispatch: schedule: # Runs everyday at 8:00 AM - cron: "0 0 * * *" jobs: build-deploy: runs-on: ubuntu-latest # 环境推荐最新的ubuntu steps: - uses: actions/checkout@v1 # 不变 v2 does not have submodules option now # with: # submodules: true - name: Setup Hugo uses: peaceiris/actions-hugo@v2 # 不变 with: hugo-version: '0.Created
25 Sep 2023 -
新建空白仓库推送已有代码用以下流程 echo "# blog" >> README.md git init git add README.md git commit -m "first commit" git branch -M main git remote add origin git@github.com:STC214/blog.git git push -u origin mainCreated
25 Sep 2023 -
00 视频参考 https://www.bilibili.com/video/BV12v411W7Pw 功能虽然强大但是相当费时间 不推荐 01 docker pull linuxserver/calibre-web 02 docker run -d \ --name=calibre-web \ -e PUID=0 \ -e PGID=0 \ -e TZ=Asia/Shanghai \ -p 8083:8083 \ -v /mnt/sdb1/Calibre_data/config:/config \ -v /mnt/sdb1/SHOTA/COMIC:/books \ --restart unless-stopped \ linuxserver/calibre-web 03 默认账号密码 admin admin123 04 默认数据库 安装PC版(管理漫画必备)后在 “E:\Programs\Calibre Portable\Calibre Library\metadata.db” 或者类似路径中找到后复制到docker映射的config目录即可 也可以在如下链接中获取 链接:https://cloud.189.cn/t/AbeAvq6baMNf 访问码:0eay 05 PC版下载地址: https://download.calibre-ebook.com/5.41.0/calibre-portable-installer-5.41.0.exe 06 配置界面右上角admin字样即可配置密码 每次更改有密码填写框配置的时候 密码都必须填写
-
安装官方ubooquity的docker镜像使用的命令如下 openwrt docker run -d \ --name=L_ubooquity \ -e PUID=0 \ -e PGID=0 \ -e TZ=Asia/Shanghai \ -e MAXMEM=1024 \ -p 2202:2202 \ -p 2203:2203 \ -v /mnt/sdb1/Comics_L/config:/config \ -v /mnt/sdb1/Comics_L/books:/books \ -v /mnt/sdb1/SHOTA/COMIC:/comics \ -v /mnt/sdb1/Comics_L/files:/files \ --restart unless-stopped \ linuxserver/ubooquity 正常运行之后 后台地址: http://192.168.1.1:2203/ubooquity/admin 主页地址: http://192.168.1.1:2202/ubooquity/ 镜像安装的位置需要有足够的冗余空间,否则可能会导致报错或者无法运行