File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ Unlike `vde_vmnet`, `socket_vmnet` does not depend on VDE.
13
13
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
14
14
15
15
- [ Install] ( #install )
16
+ - [ From binary] ( #from-binary )
16
17
- [ From source] ( #from-source )
17
18
- [ From Homebrew] ( #from-homebrew )
18
19
- [ From MacPorts] ( #from-macports )
@@ -39,6 +40,27 @@ Unlike `vde_vmnet`, `socket_vmnet` does not depend on VDE.
39
40
40
41
Requires macOS 10.15 or later.
41
42
43
+ ### From binary
44
+
45
+ ``` bash
46
+ VERSION=" $( curl -fsSL https://api.github.com/repos/lima-vm/socket_vmnet/releases/latest | jq -r .tag_name) "
47
+ FILE=" socket_vmnet-${VERSION: 1} -$( uname -m) .tar.gz"
48
+
49
+ # Download the binary archive
50
+ curl -OSL " https://github.com/lima-vm/socket_vmnet/releases/download/${VERSION} /${FILE} "
51
+
52
+ # (Optional) Attest the GitHub Artifact Attestation using GitHub's gh command (https://cli.github.com)
53
+ gh attestation verify --owner=lima-vm " ${FILE} "
54
+
55
+ # (Optional) Preview the contents of the binary archive
56
+ tar tzvf " ${FILE} "
57
+
58
+ # Install /opt/socket_vmnet from the binary archive
59
+ sudo tar Cxzvf / " ${FILE} " opt/socket_vmnet
60
+ ```
61
+
62
+ This downloads and installs the latest release from < https://github.com/lima-vm/socket_vmnet/releases > .
63
+
42
64
### From source
43
65
``` bash
44
66
sudo make install.bin
You can’t perform that action at this time.
0 commit comments