Search results

  1. S

    How to enter safe mode in windows 2003 f8 does not work

    You can configure windows to boot into safe mode on reboot: http://www.itzgeek.com/how-tos/windows/enter-into-windows-7-safe-mode-without-pressing-f8-key.html http://www.7tutorials.com/5-ways-boot-safe-mode-windows-8-windows-81
  2. S

    New mini-itx Proxmox Build

    Re: New Mini-itx Proxmox Build I'm not sure about USB. This things are fragile. HDD/SSD is better choice for install/boot (for SSD: ext4 as filesystem and add cron job to run discard command).
  3. S

    unable to install windows 2012 r2 server as a guest OS - install boot loop

    Please verify the ISO checksum before installing (you can upload iso with filezilla to folder /var/lib/vz/template/iso). https://pve.proxmox.com/wiki/Windows_2012_guest_best_practices
  4. S

    Poor disk speed using KVM on ZFS

    offtopic: is this direct/native ZFS install on pve host with raid controller or is just pool of striped mirrors that operates like 'raid10'?
  5. S

    kvm hotplug info

    + subject: gettext('Hotplog'), is this a typo: Hotplog -> Hotplug ?
  6. S

    root password rejected by Web Control Panel

    Try with: /etc/init.d/pvedaemon restart Make sure date/time is the same on all nodes.
  7. S

    SSD on RAID1 ... BEWARE of disk degradation over the time!

    I guess it would be better without RAID controller then and using trim function like is explained here: http://forum.proxmox.com/threads/17248-pveperf-and-ext4 Also installing host on regular HDD would reduce unnecessary writes to the SSD.
  8. S

    New packages in pvetest! Firewall, Html5 Console, Two-factor authentication

    will be there support for clipboard (copy/paste)? And firewall does not like security groups names with minus symbol (for example: "pve-admin" you'll get error: status update error: unable to apply firewall changes). thanks.
  9. S

    New packages in pvetest! Firewall, Html5 Console, Two-factor authentication

    If I understand this correctly: the settings for host zone are inside /etc/pve/firewall/cluster.fw and settings for the vm zone are inside /etc/pve/firewall/{VMID}.fw ?
  10. S

    Kernel Panic when disconnecting USB hardware

    syslog message: http://www.linuxquestions.org/questions/linux-newbie-8/usb-port-nn-disabled-by-hub-emi-re-enabling-841593/ and this triggers kernel panic (at least in my case).
  11. S

    1 IP - 3 Webserver

    maybe this will help you: http://en.wikipedia.org/wiki/HAProxy https://www.digitalocean.com/community/tutorials/how-to-use-haproxy-to-set-up-http-load-balancing-on-an-ubuntu-vps
  12. S

    Analysing crashes

    Have you tried with new SATA cables for hard drives?
  13. S

    Adding VLAN tag to openvz container

    Thanks for reply. This command line is working for me: vzctl set 100 --netif_add veth10,,,,vmbr0v10 --save
  14. S

    Remote Spice access *without* using web manager

    #!/bin/bash # needs pve-manager >= 3.1-44 USERNAME=user@pve or @pam PASSWORD=pass # select VM VMID=id of vm NODE=node name PROXY=node ip DATA=`curl -k -d "username=$USERNAME&password=$PASSWORD" https://$PROXY:8006/api2/json/access/ticket` TICKET=`echo $DATA|sed 's/\\\\\//\//g' | sed...
  15. S

    Adding VLAN tag to openvz container

    What is the best way to this: adding VLAN tag to openvz container? Something like we have for KVM machines.
  16. S

    Proxmox 3.2 - dead web interface

    http://superuser.com/questions/173535/what-are-close-wait-and-time-wait-states netstat -ant | grep 443 does not need to return anything..my mistake;)
  17. S

    limiting writes / reads with Read limit (MB/s) - proxmox GUI

    See also: http://wiki.qemu.org/Features/DiskIOLimits http://pve.proxmox.com/pipermail/pve-devel/2013-December/009290.html http://pve.proxmox.com/pipermail/pve-devel/2013-December/009293.html
  18. S

    Proxmox 3.2 - dead web interface

    run this two commands on pve host netstat -ant | grep 8006 netstat -ant | grep 443 and you should get something like this:
  19. S

    limiting writes / reads with Read limit (MB/s) - proxmox GUI

    hi, i guess iops are a little more complicated - the rate 100-120 iops doesn't tell you much in this case. Run some test with iometer and you'll see that rate can go above 20k iops. For more infos: http://www.brentozar.com/archive/2013/09/iops-are-a-scam/