摘要: update vote.user set create_time = NOW(6) where create_time is null; private LocalDateTime createTime; // 创建时间 阅读全文
posted @ 2026-06-15 14:36 JustinBeebor 阅读(3) 评论(0) 推荐(0)
摘要: mysql -h 127.0.0.1 -u root -p 阅读全文
posted @ 2026-06-04 14:05 JustinBeebor 阅读(2) 评论(0) 推荐(0)
摘要: sudo vim /etc/docker/daemon.json { "registry-mirrors": [ "https://docker.1panel.live", "https://dockerproxy.com", "https://hub.rat.dev", "https://dock 阅读全文
posted @ 2026-06-03 13:51 JustinBeebor 阅读(9) 评论(0) 推荐(0)
摘要: adb shell reboot -p 阅读全文
posted @ 2026-01-24 17:06 JustinBeebor 阅读(9) 评论(0) 推荐(0)
摘要: 1, package 2, permission name 3, uses-permission name 4, provider authorities 全部改为新包名/新包名开头的字符串 阅读全文
posted @ 2025-09-29 13:48 JustinBeebor 阅读(15) 评论(0) 推荐(0)
摘要: # 为第一个账号生成密钥 ssh-keygen -t ed25519 -C "your_email1@example.com" -f ~/.ssh/id_ed25519_account1 # 为第二个账号生成密钥 ssh-keygen -t ed25519 -C "your_email2@examp 阅读全文
posted @ 2025-07-29 22:12 JustinBeebor 阅读(22) 评论(0) 推荐(0)
摘要: 压缩 tar -zcvf xxx.tar --exclude=./xxxDir/logs --exclude=./xxxDir/.git ./xxxDir 解压缩 tar -xvf xxx.tar gpg加密 gpg -c xxx.tar gpg解密 gpg xxx.tar.gz.gpg 阅读全文
posted @ 2025-07-25 16:10 JustinBeebor 阅读(18) 评论(0) 推荐(0)
摘要: 提示:若看到 pi 状态,建议执行 sudo apt purge <package-name> 彻底清除软件包及其配置。 阅读全文
posted @ 2025-07-07 18:05 JustinBeebor 阅读(25) 评论(0) 推荐(0)
摘要: 1、 构建 Docker 镜像 docker compose build --no-cache 2、 启动所有服务 docker compose up -d 3、查看启动日志 docker compose logs -f docker compose logs -f backend 4、移除并停止容 阅读全文
posted @ 2025-05-25 00:45 JustinBeebor 阅读(31) 评论(0) 推荐(0)
摘要: 1,下载多个java版本的压缩包,并解压好 2, update-alternatives --install /usr/bin/java java /usr/java/jdk-11.0.1/bin/java 1 3, update-alternatives --config java 阅读全文
posted @ 2025-02-10 23:34 JustinBeebor 阅读(64) 评论(0) 推荐(0)