Recent content by kunus

  1. K

    Any performance differences between Proxmox Bare Metal ISO and Wheezy Box?

    Sorry to bother, Is checking "Standard system utilities" in Debian installation required for Proxmox VE to function properly? I intend to check only SSH server.
  2. K

    Any performance differences between Proxmox Bare Metal ISO and Wheezy Box?

    Hello everyone, I'm forced to install proxmox on a debian wheezy box but before that, Is there any performance differences between Proxmox Bare Metal ISO and Installing on a clean wheezy box? Thank you.
  3. K

    How to resize /dev/pve/data without breaking Proxmox?

    Really Thanks, I defined pve as Volume Group in storage and for every VM I create a new Logical Volume will be created too. but what I see in defined storage is a Logical volume with RAW format. Is this correct? I mean is this a RAW image or Logical Volume? Edit: Actually I want to make sure...
  4. K

    How to resize /dev/pve/data without breaking Proxmox?

    Yes sure, It was just something I did wrong. If you want to reduce /dev/pve/data to 10GB, the following will work without any problem: umount /var/lib/vz e2fsck -f /dev/pve/data resize2fs /dev/pve/data 10G lvreduce -L 10G /dev/pve/data resize2fs /dev/pve/data mount /dev/pve/data Note: If...
  5. K

    How to resize /dev/pve/data without breaking Proxmox?

    Hello, I tried to reduce size of /dev/pve/data in order to have much free space to create logical volumes for VMs. I did as below: e2fsck -f /dev/pve/data resize2fs /dev/pve/data 5G lvreduce -L 5G /dev/pve/data and now Proxmox can't boot because of some error related to: /dev/mapper/pve-data...
  6. K

    Can I create a User to manage his own VM ?

    Thanks a lot, I found the solution within "Path" and adding a role using "pveum roleadd"
  7. K

    Can I create a User to manage his own VM ?

    Thanks, I've read this before but I couldn't find any solution. I want user-1 with permissions to manage only vm-1 not all VMs. Is this possible? If so could you make an example please?
  8. K

    Can I create a User to manage his own VM ?

    Hello, Can I create a user with permission to manage specific VMs? Thank you.
  9. K

    Does Proxmox VE Support LVM as block Disk for KVM guests?

    Hello, Does Proxmox VE Support LVM as block storage for KVM guests to avoid the overhead of going through the filesystem layer on the host system? Thanks everyone.