Proxmox 管理虛擬機器 使用「qm」指令
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
qm <command> <vmid> [OPTIONS]qm [create|set] <vmid> --memory <MBYTES> memory in MB (64 - 8192) --sockets <N> set number of CPU sockets <N> --cores <N> set cores per socket to <N> --ostype NAME specify OS type --onboot [yes|no] start at boot --keyboard XX set vnc keyboard layout --cpuunits <num> CPU weight for a VM --name <text> set a name for the VM --description <text> set VM description --boot [a|c|d|n] specify boot order --bootdisk <disk> enable booting from <disk> --acpi (yes|no) enable/disable ACPI --kvm (yes|no) enable/disable KVM --tdf (yes|no) enable/disable time drift fix --localtime (yes|no) set the RTC to local time --vga (gd5446|vesa) specify VGA type --vlan[0-9u] MODEL=XX:XX:XX:XX:XX:XX[,MODEL=YY:YY:YY:YY:YY:YY] --ide<N> [volume=]volume,[,media=cdrom|disk] [,cyls=c,heads=h,secs=s[,trans=t]] [,cache=none|writethrough|writeback] [,snapshot=on|off][,cache=on|off][,format=f] [,werror=enospc|ignore|report|stop] [,rerror=ignore|report|stop] [,backup=no|yes] --ide<N> <GBYTES> create new disk --ide<N> delete remove drive - destroy image --ide<N> undef remove drive - keep image --cdrom <file> is an alias for --ide2 <file>,media=cdrom --scsi<N> [volume=]volume,[,media=cdrom|disk] [,cyls=c,heads=h,secs=s[,trans=t]] [,snapshot=on|off][,format=f] [,cache=none|writethrough|writeback] [,werror=enospc|ignore|report|stop] [,backup=no|yes] --scsi<N> <GBYTES> create new disk --scsi<N> delete remove drive - destroy image --scsi<N> undef remove drive - keep image --virtio<N> [volume=]volume,[,media=cdrom|disk] [,cyls=c,heads=h,secs=s[,trans=t]] [,snapshot=on|off][,format=f] [,cache=none|writethrough|writeback] [,werror=enospc|ignore|report|stop] [,rerror=ignore|report|stop] [,backup=no|yes] --virtio<N> <GBYTES> create new disk --virtio<N> delete remove drive - destroy image --virtio<N> undef remove drive - keep imageqm monitor <vmid> connect to vm control monitorqm start <vmid> start vmqm shutdown <vmid> gracefully stop vm (send poweroff)qm wait <vmid> [time] wait until vm is stoppedqm stop <vmid> kill vm (immediate stop)qm reset <vmid> reset vm (stop, start)qm suspend <vmid> suspend vmqm resume <vmid> resume vmqm cad <vmid> sendkey ctrl-alt-deleteqm destroy <vmid> destroy vm (delete all used/owned volumes)qm unlock <vmid> clear migrate/backup lockqm status <vmid> shows the container statusqm cdrom <vmid> [<device>] <path> set cdrom path. <device is ide2 by default>qm cdrom <vmid> [<device>] eject eject cdromqm unlink <vmid> <volume> delete unused disk imagesqm vncproxy <vmid> <ticket> open vnc proxyqm vnc <vmid> start (X11) vncviewer (experimental)qm showcmd <vmid> show command line (debug info)qm list list all virtual machinesqm startall start all virtual machines (when onboot=1)qm stopall [timeout] stop all virtual machines (default timeout is 3 minutes) |