Skip to content

Commit b7d5010

Browse files
author
Max Roby
committed
add doublequotes to VNC invocation
1 parent 0ffff35 commit b7d5010

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

docs/12-self-hosting/03-host-creation/03-QEMU/02-linux-cloudimage.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ customize the cloud-image immediately upon booting, prior to user-space initiali
153153
-drive if=virtio,format=raw,file=seed.img,index=0,media=disk \
154154
-bios /usr/share/ovmf/OVMF.fd \
155155
-usbdevice tablet \
156-
-vnc $HOST_ADDRESS:$VNC_PORT
156+
-vnc "$HOST_ADDRESS":"$VNC_PORT"
157157
```
158158
159159
- Boot existing guest
@@ -172,7 +172,7 @@ customize the cloud-image immediately upon booting, prior to user-space initiali
172172
-drive if=none,id=disk,cache=none,format=qcow2,aio=threads,file=disk.qcow2 \
173173
-bios /usr/share/ovmf/OVMF.fd \
174174
-usbdevice tablet \
175-
-vnc $HOST_ADDRESS:$VNC_PORT
175+
-vnc "$HOST_ADDRESS":"$VNC_PORT"
176176
```
177177
178178
## Connect to the VM

docs/12-self-hosting/03-host-creation/03-QEMU/03-linux-liveiso.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ physical machines and are suited for use in long-lived virtual-private servers.
9999
-netdev user,id=network,hostfwd=tcp::"${VM_SSH_PORT}"-:"${HOST_SSH_PORT}" \
100100
-bios /usr/share/ovmf/OVMF.fd \
101101
-usbdevice tablet \
102-
-vnc $HOST_ADDRESS:$VNC_PORT
102+
-vnc "$HOST_ADDRESS":"$VNC_PORT"
103103
```
104104

105105
- Boot existing guest:
@@ -120,7 +120,7 @@ physical machines and are suited for use in long-lived virtual-private servers.
120120
-netdev user,id=network,hostfwd=tcp::"${VM_SSH_PORT}"-:"${HOST_SSH_PORT}" \
121121
-bios /usr/share/ovmf/OVMF.fd \
122122
-usbdevice tablet \
123-
-vnc $HOST_ADDRESS:$VNC_PORT
123+
-vnc "$HOST_ADDRESS":"$VNC_PORT"
124124
```
125125

126126
## Connect via VNC

docs/12-self-hosting/03-host-creation/03-QEMU/04-windows.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ Windows version during setup.
182182
-serial stdio -vga virtio -parallel none \
183183
-device virtio-net-pci,netdev=network \
184184
-netdev user,id=network,hostfwd=tcp::3389-:3389 \
185-
-vnc $HOST_ADDRESS:$VNC_PORT
185+
-vnc "$HOST_ADDRESS":"$VNC_PORT"
186186
```
187187

188188
- Boot existing guest:
@@ -200,7 +200,7 @@ Windows version during setup.
200200
-serial stdio -vga virtio -parallel none \
201201
-device virtio-net-pci,netdev=network \
202202
-netdev user,id=network,hostfwd=tcp::3389-:3389 \
203-
-vnc $HOST_ADDRESS:$VNC_PORT
203+
-vnc "$HOST_ADDRESS":"$VNC_PORT"
204204
```
205205

206206
### Manual Install With Virtio Drive
@@ -224,7 +224,7 @@ Windows version during setup.
224224
-serial stdio -vga virtio -parallel none \
225225
-device virtio-net-pci,netdev=network \
226226
-netdev user,id=network,hostfwd=tcp::3389-:3389 \
227-
-vnc $HOST_ADDRESS:$VNC_PORT
227+
-vnc "$HOST_ADDRESS":"$VNC_PORT"
228228
```
229229

230230
- Boot existing guest:
@@ -247,7 +247,7 @@ Windows version during setup.
247247
-serial stdio -vga virtio -parallel none \
248248
-device virtio-net-pci,netdev=network \
249249
-netdev user,id=network,hostfwd=tcp::3389-:3389 \
250-
-vnc $HOST_ADDRESS:$VNC_PORT
250+
-vnc "$HOST_ADDRESS":"$VNC_PORT"
251251
```
252252

253253
### Boot from CD

docs/12-self-hosting/03-host-creation/03-QEMU/05-macos.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ problematic but modern AMD Ryzen processors work just fine.
127127
-usbdevice tablet \
128128
-device usb-kbd,bus=ehci.0 \
129129
-netdev user,id=network,hostfwd=tcp::"${VM_SSH_PORT}"-:"${HOST_SSH_PORT}" \
130-
-vnc $HOST_ADDRESS:$VNC_PORT
130+
-vnc "$HOST_ADDRESS":"$VNC_PORT"
131131
```
132132

133133
- Boot an existing guest
@@ -157,7 +157,7 @@ problematic but modern AMD Ryzen processors work just fine.
157157
-usbdevice tablet \
158158
-device usb-kbd,bus=ehci.0 \
159159
-netdev user,id=network,hostfwd=tcp::"${VM_SSH_PORT}"-:"${HOST_SSH_PORT}" \
160-
-vnc $HOST_ADDRESS:$VNC_PORT
160+
-vnc "$HOST_ADDRESS":"$VNC_PORT"
161161
```
162162

163163
## Connect to the VM using VNC.

0 commit comments

Comments
 (0)