步骤
- 进入 adb 模式,连上 WIFI ,访问 <192.168.100.1/usbdebug.html> 即可打开 adb 。
- 执行
adb devices
,确认 adb 连接成功。
- 执行
adb reboot bootloader
进入 fastboot 模式。
- 下载固件 https://github.com/OpenStick/OpenStick/releases/tag/v1 ,只要下载下面三个即可。
- 解压 base-generic.zip ,进入 base 目录,执行 flash.bat 脚本,每次按 Enter 前可以用
fastboot devices
确认设备有正常连接。
- 解压 debian.zip ,进入目录里,把 boot-uz801.img 重命名为 boot.img 并覆盖 debian 目录下的 boot.img 文件。最后执行 flash.bat 脚本,每次按 Enter 前可以用
fastboot devices
确认设备有正常连接。
- 最后重新插入随时 WiFi ,再参考 https://blog.iamsjy.com/2023/12/11/snapdragon-410-portable-wifi-hotspot-flash-debian-and-optimize/ 安装 RNDIS 网络驱动 。
- 使用 adb shell 进入 debian ,或者 ssh 进入,然后使用 nmtui 连上家里的 WiFi 。
- 安装 Docker
true > /etc/apt/sources.list.d/mobian.list
apt-get update
apt-get install -y curl wget
curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun
systemctl enable docker
systemctl start docker
参考