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
The getting started instructions below use the command line interface. Multipass installs a tray icon for those who want to access basic features from the user interface.
63
+
The getting started instructions below use the command line interface. If you perfer to use the graphical interface start it from the macOS Launchpad, the initial screen is shown below. You can use the UI to create, start, and stop virtual machines.
@@ -223,61 +223,30 @@ The `uname` output will look similar to:
223
223
Linux m1u 6.8.0-36-generic #36-Ubuntu SMP PREEMPT_DYNAMIC Mon Jun 10 13:20:23 UTC 2024 aarch64 aarch64 aarch64 GNU/Linux
224
224
```
225
225
226
-
### Run an application
227
-
228
-
It's helpful to demonstrate a few other common commands by downloading and installing an application. To demonstrate file copy, the download is done from macOS and the file is copied into the instance.
229
-
230
-
Download and install [OpenVSCode Server](/install-guides/openvscode-server/).
231
-
232
-
On the macOS host computer use `wget` for the download.
Connect to OpenVSCode Server using a browser. From the macOS host computer use the `info` command to get the IP address of the instance.
226
+
### Print information
265
227
266
228
The `info` command prints information about the instance, including the IP address.
267
229
268
230
```console
269
231
multipass info m1u
270
232
```
271
233
272
-
Copy the IP address from the info output and paste it into a browser with port 3000.
234
+
The output is similar to:
273
235
274
-
Modify the IP address to use your information, for example:
275
236
```output
276
-
http://192.168.64.39:3000
237
+
Name: m1u
238
+
State: Running
239
+
Snapshots: 0
240
+
IPv4: 192.168.73.29
241
+
Release: Ubuntu 24.04.1 LTS
242
+
Image hash: e380b683b0c4 (Ubuntu 24.04 LTS)
243
+
CPU(s): 4
244
+
Load: 0.00 0.03 0.01
245
+
Disk usage: 2.0GiB out of 15.4GiB
246
+
Memory usage: 355.3MiB out of 3.8GiB
247
+
Mounts: --
277
248
```
278
249
279
-
You now have a running VS Code Server in your Multipass instance with Ubuntu 22.04 running on Arm.
280
-
281
250
### Mount a host directory
282
251
283
252
To access a large number of files on the host machine without copying or transferring them into the instance use the `mount` command. This command makes a host directory visible in the instance and all files can be accessed. Modifications made from inside the instance will directly change the files on the host.
0 commit comments