摘要: 1, package 2, permission name 3, uses-permission name 4, provider authorities 全部改为新包名/新包名开头的字符串 阅读全文
posted @ 2025-09-29 13:48 JustinBeebor 阅读(7) 评论(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 阅读(12) 评论(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 阅读(4) 评论(0) 推荐(0)
摘要: 提示:若看到 pi 状态,建议执行 sudo apt purge <package-name> 彻底清除软件包及其配置。 阅读全文
posted @ 2025-07-07 18:05 JustinBeebor 阅读(9) 评论(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 阅读(9) 评论(0) 推荐(0)
摘要: export http_proxy=http://127.0.0.1:10808 export https_proxy=http://127.0.0.1:10808 export all_proxy=http://127.0.0.1:10808 阅读全文
posted @ 2025-05-21 00:54 JustinBeebor 阅读(7) 评论(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 阅读(51) 评论(0) 推荐(0)
摘要: 1,创建新仓库命令 echo "# Note" >> README.md git init git add README.md git commit -m "first commit" git branch -M main git remote add origin git@github.com:j 阅读全文
posted @ 2024-05-11 21:01 JustinBeebor 阅读(20) 评论(0) 推荐(0)
摘要: 把class编译成dex dx --dex --output=classes.dex ./HomeActivity.class 把dex反编译成smali ./d2j-baksmali.sh ~/Documents/android-projects/test/app/build/intermedia 阅读全文
posted @ 2024-04-28 16:53 JustinBeebor 阅读(20) 评论(0) 推荐(0)
摘要: 1,cd /usr/share/applications 2,touch idea.desktop 3,sudo vim idea.desktop 4,在idea.desktop加入以下内容:注意替换自己的idea.sh路径 [Desktop Entry]Name=IntelliJ IDEAComm 阅读全文
posted @ 2024-04-07 18:38 JustinBeebor 阅读(255) 评论(0) 推荐(0)