You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/user-guides/desktop/index.md
+21-11Lines changed: 21 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
#Coder Desktop (Early Access)
1
+
#Coder Desktop (Beta)
2
2
3
3
Use Coder Desktop to work on your workspaces as though they're on your LAN, no
4
4
port-forwarding required.
@@ -22,7 +22,7 @@ You can install Coder Desktop on macOS or Windows.
22
22
23
23
Alternatively, you can manually install Coder Desktop from the[releases page](https://github.com/coder/coder-desktop-macos/releases).
24
24
25
-
1. Open**Coder Desktop** from the Applications directory. When macOS asks if you want to open it, select**Open**.
25
+
1. Open**Coder Desktop** from the Applications directory.
26
26
27
27
1. The application is treated as a system VPN. macOS will prompt you to confirm with:
28
28
@@ -129,28 +129,38 @@ While active, Coder Connect will list the workspaces you own and will configure
129
129
130
130
To copy the`.coder` hostname of a workspace agent, you can click the copy icon beside it.
131
131
132
-
On macOS you can use`ping6`in yourterminal to verify the connection to your workspace:
132
+
You can also connect to the SSH serverin yourworkspace using any SSH client, such as OpenSSH or PuTTY:
133
133
134
134
```shell
135
-
ping6 -c 5 your-workspace.coder
135
+
ssh your-workspace.coder
136
136
```
137
137
138
-
On Windows, you can use`ping` in a Command Prompt or PowerShell terminal to verify the connection to your workspace:
138
+
Any services listening on ports in your workspace will be available on the same hostname. For example, you can access a web server on port`8080` by visiting`http://your-workspace.coder:8080` in your browser.
139
+
140
+
>[!NOTE]
141
+
>Currently, the Coder IDE extensions for VSCode and JetBrains create their own tunnel and do not utilize the Coder Connect tunnel to connect to workspaces.
142
+
143
+
###Ping your workspace
144
+
145
+
<divclass="tabs">
146
+
147
+
###macOS
148
+
149
+
Use`ping6` in your terminal to verify the connection to your workspace:
139
150
140
151
```shell
141
-
ping -n 5 your-workspace.coder
152
+
ping6 -c 5 your-workspace.coder
142
153
```
143
154
144
-
Any services listening on ports in your workspace will be available on the same hostname. For example, you can access a web server on port`8080` by visiting`http://your-workspace.coder:8080` in your browser.
155
+
###Windows
145
156
146
-
You can also connect to the SSH server in your workspace using any SSH client, such as OpenSSH or PuTTY:
157
+
Use`ping` in a Command Prompt or PowerShell terminal to verify the connection to your workspace:
147
158
148
159
```shell
149
-
ssh your-workspace.coder
160
+
ping -n 5 your-workspace.coder
150
161
```
151
162
152
-
>[!NOTE]
153
-
>Currently, the Coder IDE extensions for VSCode and JetBrains create their own tunnel and do not utilize the Coder Connect tunnel to connect to workspaces.