zadmin 发布的文章

ADB 无线连接手机# 通过 USB 开启无线调试 adb tcpip 5555 # 无线连接设备 adb connect 192.168.10.88:5555 # 断开连接 adb disconnect 192.168.10.88:5556 # 切回 USB 模式 adb usb坐标参考:X: 1522, Y: 429

阅读全文

ssh-keygen 是用于生成 SSH 密钥对的命令行工具。根据你提供的示例,我来详细说明它的使用方法:基本语法ssh-keygen -t rsa -b 4096 -C "注释"参数说明参数说明示例值-t指定密钥类型rsa, ed25519, ecdsa-b指定密钥位数4096(RSA 推荐)-C添加注释(通常是邮箱)"your_email@example.c...

阅读全文