User Tools

Site Tools


proxmox

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
proxmox [2014/03/05 07:27] joseproxmox [2015/07/27 09:10] (current) jose
Line 19: Line 19:
  
 Des de esta URL podemos descargarlos y copiarlos ahí: Des de esta URL podemos descargarlos y copiarlos ahí:
 +
 +http://download.proxmox.com/appliances/system/
  
 http://wiki.openvz.org/Download/template/precreated http://wiki.openvz.org/Download/template/precreated
Line 102: Line 104:
 ====== NFS ====== ====== NFS ======
 Hay que habilitar el NFS al contenedor: Hay que habilitar el NFS al contenedor:
-  # vzctl set 102  --features "nfs:on" --save+  # vzctl set 102  --features "nfsd:on" --save
      
 ====== Cambiar hora ====== ====== Cambiar hora ======
Line 112: Line 114:
 hay que marcar el paquete así: hay que marcar el paquete así:
   echo upstart hold | dpkg --set-selections   echo upstart hold | dpkg --set-selections
 +  
 +====== KVM ======
 +
 +
 +  root@proxmoxescorxador:~# qm list
 +
 +      VMID NAME                 STATUS     MEM(MB)    BOOTDISK(GB) PID       
 +       106 mik1escp.matarosensefils.net running    2048               1.00 43631     
 +       108 voip2escp.matarosensefils.net stopped    512               32.00 0         
 +       109 voip3escp.matarosensefils.net stopped    512               32.00 0         
 +
 +  root@proxmoxescorxador:~# qm start 106
 +  
 +====== Montar recursos ======
 +Directorio configuración y recursos montados:
 +  /etc/vz/conf
 +
 +Ejemplo:
 +  102.mount
 +
 +<code>
 +#!/bin/bash
 +if [ ! -e /var/lib/vz/root/102/mnt/sdc ]; then mkdir -p /var/lib/vz/root/102/mnt/sdc; fi
 +mount -n -t simfs /mnt/sdc /var/lib/vz/root/102/mnt/sdc -o /mnt/sdc
 +
 +if [ ! -e /var/lib/vz/root/102/mnt/sdd ]; then mkdir -p /var/lib/vz/root/102/mnt/sdd; fi
 +mount -n -t simfs /mnt/sdd /var/lib/vz/root/102/mnt/sdd -o /mnt/sdd
 +
 +if [ ! -e /var/lib/vz/root/102/mnt/sdd2 ]; then mkdir -p /var/lib/vz/root/102/mnt/sdd2; fi
 +mount -n -t simfs /mnt/sdd2 /var/lib/vz/root/102/mnt/sdd2 -o /mnt/sdd2
 +</code>
 +
 +
 +
proxmox.1394004435.txt.gz · Last modified: 2015/04/13 20:19 (external edit)