Background
Hardware Environment:
- Local Machine: Windows 11
- Remote Development Server: J1900 (Snail NAS), Debian 13
I have been using Claude Code and Codex, and today I wanted to experience the frontend capabilities of the Gemini Pro model. However, after installing Antigravity IDE and connecting to my physical machine for Remote-SSH development, it immediately threw an error, and I couldn’t open the AI sidebar.
Core Error Message:
- Antigravity server crashed unexpectedly. Please restart to fully restore AI features.
- Log shows: FATAL ERROR: This binary was compiled with aes enabled, but this feature is not available on this processor (go/sigill-fail-fast).
Solution Reference: https://github.com/devanshug2307/antigravity-discussions/discussions/18
After completing the modifications, the IDE startup will be unusually slow (1~2 minutes). This is a normal phenomenon.
Preparation
Go to the Intel® Software Development Emulator
Download sde-external-10.7.0-2026-02-18-lin.tar.xz
|
|
Modify Linux Kernel Parameters to Allow Process Injection
Intel SDE needs to intercept binaries using the ptrace mechanism. The default security policy in systems like Debian blocks this behavior, so we need to enable it:
|
|
Locate the Remote Server Directory
The Antigravity Server generates a folder with a random hash value in your user directory. Use the find command to locate it:
|
|
Hijack and Replace the Language Server Process
|
|
Paste the following script into the language_server_linux_x64 file
|
|
Grant execute permissions to the script:
|
|
Extend Antigravity IDE’s Hardcoded Timeout Limit
This step is optional. If you encounter a timeout error upon startup, you will need to adjust its timeout duration.
|
|
First, locate the code that controls the timeout duration
|
|
You should see output similar to: /home/izumi/.antigravity-server/bin/1.xx.xx-xx/extensions/antigravity/dist/extension.js
Open the file and search for code similar to this:
|
|
Increase the 6e4 value. In my case, I changed it directly to 30e4.
Restart the IDE and wait patiently. You should find it successfully connected.

Finally, note that after the IDE updates, the entire Server directory path might change, and you will need to repeat the above steps. Alternatively, you could ask the AI to write a one-click setup script. Since I only use this temporarily, I won’t do any further processing.