Recent content by ib.pl

  1. I

    Disabling USB in guest

    Hello, Is it possible in PVE3/4 to configure guest without USB devices (no virtual USB hubs, devices) for better security (in case of bugs in USB virtualization)? Regards, Pawel
  2. I

    Possibly unstable pve-kernel-3.10.0-15-pve and pve-kernel-3.10.0-16-pve

    Hi, We've hit PVE3 hypervisor hang (blank console, no hints in syslog, only reset helps) after upgrading 3.10 kernel to pve-kernel-3.10.0-15-pve_3.10.0-40 (after 2-3 days of work). No such problems with earlier 2.6 and 3.10 kernels on this machine (after downgrade t 3.10.0-14-pve system...
  3. I

    Possible problem with pve-kernel-3.10.0-15-pve

    Hi, After upgrade to pve-kernel-3.10.0-15-pve PVE3 kernel on our hypervisor died after 2 days of work; piece of kernel messages that was saved in logs before system died: kernel: [183957.122107] BUG: unable to handle kernel NULL pointer dereference at 0000000000000018 kernel: [183957.123019]...
  4. I

    VMs left locked after VZDump

    Updaded package resolved the issue - snapshot backup of running KVM/LVM machine does not leave lock now. Thank you for help! Regards, Pawel
  5. I

    VMs left locked after VZDump

    Hi, We've noticed problem after updating PVE 3.3 yesterday from # pveversion -v proxmox-ve-2.6.32: 3.3-139 (running kernel: 2.6.32-34-pve) pve-manager: 3.3-5 (running version: 3.3-5/bfebec03) pve-kernel-2.6.32-32-pve: 2.6.32-136 pve-kernel-2.6.32-27-pve: 2.6.32-121 pve-kernel-2.6.32-24-pve...
  6. I

    Guest disk data security

    Thank you for pointing the saferemove parameter! Attached please find our two patches: Storage.pm-ib.patch (saferemove was not working without it) and LVMPlugin.pm-ib.patch (this one allows to limit I/O load during zeroing with new saferemove_throughput parameter - must have in our opinion...
  7. I

    Guest disk data security

    Hello, Please consider extending virtual disk add/remove (extend may be difficult) functions to wipe (de)allocated space before it's visible to other guests. We've send similar idea to LVM mailing list http://www.redhat.com/archives/linux-lvm/2014-October/msg00018.html but more general...
  8. I

    /etc/cron.daily/pve fix

    After swiching from https to http (please verify: html editor at this forum does not work in https mode and messes up messages like in previous post). Hi, There is typo in PVE31 /etc/cron.daily/pve file that prevents dir /var/log/pve/tasks/D celanups. Fix: - foreach my $subdir (qw(0 1 2 3 4...
  9. I

    /etc/cron.daily/pve fix

    Hi, There is typo in PVE31 /etc/cron.daily/pve file that prevents dir /var/log/pve/tasks/D celanups. Fix: - foreach my $subdir (qw(0 1 2 3 4 5 6 7 8 9 A B C F E F)) { + foreach my $subdir (qw(0 1 2 3 4 5 6 7 8 9 A B C D E F)) { Question: for security reasons we would like to stop external...