[SOLVED] qm create/set --boot parameter

Flix

New Member
Aug 24, 2021
4
0
1
37
Hi,

when trying to use the --boot parameter either with "qm create" or "qm set" with any of these variants I always get errors.
Bash:
qm create --boot order=net0;scsi0;ide2
qm create --boot order=net0,scsi0,ide2
Using only one parameter
Bash:
qm create --boot order=net0
qm create --boot order=scsi0
works.

What is the correct syntax to define the boot order net0,scsi0,ide2?
 
You need to set them in single quotes for example try as qm create --boot order='net0;scsi0;ide2' because there is a semicolon in your commands
 
  • Like
Reactions: Flix