Download remote server on client machain #30988
Replies: 1 comment 1 reply
-
https://zed.dev/docs/remote-development#configuration Once the master connection is established, Zed will check to see if the remote server binary is present in If it is not there or the version mismatches, Zed will try to download the latest version. By default, it will download from If you'd like to maintain the server binary yourself you can. You can either download our prebuilt versions from Github, or build your own with {
"ssh_connections": [
{
"host": "192.168.1.10",
"projects": [{ "paths": ["~/code/zed/zed"] }],
// by default Zed will download the server binary from the internet on the remote.
// When this is true, it'll be downloaded to your laptop and uploaded over SSH.
// This is useful when your remote server has restricted internet access.
"upload_binary_over_ssh": true,
// Shown in the Zed UI to help distinguish multiple hosts.
"nickname": "lil-linux"
}
]
} |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Right now, when you first connect to a remote server over SSH, you usually have to download the server part right there on the remote machine. But since a lot of your remote machines can’t reach the internet, it’d be super handy if there was an option to download that server part on your local machine and then copy it over via SCP.
Beta Was this translation helpful? Give feedback.
All reactions