NAS advanced gameplay: 0 yuan to deploy the "bean bag mobile phone", and the poor ghost can also use AI assistant to remotely control the machine
When
was visiting github, I found AutoGLM-GUI, which can turn NAS into an "AI brain", and the old Android can instantly upgrade the smartphone! It's still good to automatically brush Douyin or something. Don't look at the word count, in fact, it only takes a few commands. Let's share the interface first.
AutoGLM-GUI
AutoGLM Modern web graphical interface for mobile assistants - making it easy to automate AI operations on Android devices
✨Features
- Multi-device concurrency control
- Manage and control multiple Android devices at the same time, with complete isolation of state between devices - conversational task management
- Control your Android device through a chat interface - live screen preview
- SCRCPY-based low-latency video streaming to see what the device is doing at any time - control your phone directly
- Directly click and swipe on the real-time screen to support accurate coordinate conversion and visual feedback - zero-configuration deployment
- Supports any OpenAI-compatible LLM API - ADB Deep integration
- Control your device directly with the Android Debug Bridge - modular interface
- Clear sidebar + device panel design with clear separation of functions
installation method
pre-requirement
-
need a NAS (I use N100 installed Feiniu OS -
NAS system needs to install Python 3.10+ -
Android phone has USB debugging turned on Android Equipment
sudo apt install pipx
pipx ensurepath
pipx install autoglm-gui
source ~/.bashrc
connect Android 7.0+ to the NAS with data cable real machine.
-
Open "Developer Mode" → turn on "USB Debugging" + "USB Debugging (Security Settings)".
-
install ADB Keyboard and switch to ADB Keyboard in Setting → Language & Input Method → Default Input Method.
continue to SSH the NAS installation adb
sudo aptinstall android-tools-adb
adb devices # You can see the device number, which is OK
apply for a API Key
on BigModel or ModelScopeautoglm-gui \
--base-url https://open.bigmodel.cn/api/paas/v4 \
--model autoglm-phone \
--apikey your key \
--host 0.0.0.0 __ HTML211__ --port 8002 #这是访问的端口, set according to your NAS port occupancy
run successfully
can now use the IP plus port number of the NAS
access to the computer.
set to boot with NAS boot:
nohup autoglm-gui --base-url https://open.bigmodel.cn/api/paas/v4 --model autoglm-phone --apikey your key --host 0.0.0.0 --port 8002 > gui.log 2>&1 &
don't want to use it, it's also convenient to delete
pkill -f autoglm-gui
pipx uninstall autoglm-gui
also clear the generated binary directory
rm -rf ~/.local/bin/autoglm-gui
delete the created virtual environment
rm directory -rf ~/.local/share/pipx/venvs/autoglm-gui




Comment List