Search results

  1. O

    Suggestion: Add lrzip to Backup compression options

    I vote for lrzip as a further option for backup jobs. More choices makes more flexible ;) In my opinion gzip (pigz) for fast dumps with good compression and lrzip for slow(er) dumps with better compression, if size matters (ie for archiving purposes).
  2. O

    Suggestion: Add lrzip to Backup compression options

    I made some quick tests. VM image is a 8GB RAW on raid5, compressing to tmpfs (edit: I was wrong, my /tmp isn't tmpfs): edit: machine is a 2*quad xeon E5620 / 32GB RAM with hyperthreading enabled time lzop vm-911-disk-1.raw -o /tmp/lzo-default.lzo real 0m20.990s user 0m11.284s sys 0m5.452s...
  3. O

    Proxmox VM via php Script beenden und starten

    Moin, guck mal hier (https://forum.proxmox.com/threads/update-wake-and-other-on-lan-for-vms-v0-3.26381) - ich hatte da neulich etwas ganz ähnliches im Sinn. Ohne GUI und sonstigem Schnickschnack, aber für mich hat meine Idee gereicht und bin glücklich damit. Vielleicht gibt es Dir aber ein paar...
  4. O

    Identifying backup files

    You haven't to get curious. Just use the search function and read the docs more attentive ;) As usual somebody had the same question or idea before you: https://forum.proxmox.com/threads/put-vm-name-into-backup-name.27495
  5. O

    gentoo unable to detect OS distribution

    I did my last test with gentoo as a lxc container around 2015-12 which failed with the entitled message. Today I did a new test - and HOORAY it worked (nearly) out of the box! I built the template on a physical arch-Linux as described in https://github.com/globalcitizen/lxc-gentoo which took...
  6. O

    Put VM name into backup name

    You can set a script in /etc/vzdump.conf for this, ie script: /usr/local/bin/vzdump-rename Have a look to https://pve.proxmox.com/pve-docs/vzdump.1.html which describes everything you'll need. edit: There's an example script at /usr/share/doc/pve-manager/examples/vzdump-hook-script.pl also.
  7. O

    [SOLVED] lxc and 'exclude-path' in /etc/vzdump.conf

    Ah, I see. Great! It is working now. Thank you very much! Is it correct that the parameter stdexcludes is missing in the default vzdump.conf ? My setup is based on the 4.0 ISO and I haven't this parameter... BTW: Got'nt a notification about your answer yesterday. No entry in mail logs. Haven't...
  8. O

    [SOLVED] lxc and 'exclude-path' in /etc/vzdump.conf

    It seems to me that backing up a lxc excludes some paths per default as mentioned, but not explicit called, in [1]. But in my opinion excluding /var/log/* MAY be a bad idea as this excludes everything - although some programs are expecting existing log paths after restoring, apache2 for example...
  9. O

    Network settings don't work after upgrade (LXC, Hetzner network)

    I've no tip for you. But having a similiar setup on two Hetzner EX-Servers it looks like a misconfiguration at your setup, as both of my systems are'nt having any issues. Both had a setup with Hetzners debian default system and even the first one survived the upgrade from pve 3.x to 4.x flawlessy.
  10. O

    Proxmox VMs with single IP

    I did the following on my providers root server and got a wonderful setup with one external and one internal IP/subnet (edit: server has a singleport NIC): auto lo iface lo inet loopback auto eth0 iface eth0 inet static address a.b.c.d netmask 255.255.255.255...
  11. O

    [update] Wake (and other) on LAN for VMs (v0.3)

    Update time! - dosthol.service: Fixed a typo which led service to fail (call of dosthol.sh instead of dosthold.sh, leftover from v0.1) - Client: Parameter parsing, help extended, some beautifyings and option to send MagicPacket to a specific IP or subnet
  12. O

    [update] Wake (and other) on LAN for VMs (v0.3)

    Project finished. Enclosed daemon, client and systemd service file. dosthol ist now able to wakeup, shutdown, poweroff (stop), suspend, resume and reset qemu and lxc VMs (reset n/a with lxc). Was a funny project :cool: Have fun!
  13. O

    [update] Wake (and other) on LAN for VMs (v0.3)

    (EDITED) I ever wondered why there's no solution to startup VMs by WOL 'til now, so I helped myself and wrote a bash script that I want to share. I called this baby dosthol (Do something on LAN) which will do other tasks some day, i.E. remote shutdown and others. Maybe someone will find this...
  14. O

    pve 4 / customized pxe roms

    In pve 3.x I used to have pxe-* roms in /usr/share/kvm that I had created on my own including script, comboot and some other functions. That worked great until pve 4 - no matter what I do, the vm seems to use the original rom from the qemu package. Are they fixed/hardcoded now or something linke...
  15. O

    [SOLVED] pve4 lxc arch / problems with systemd 226 in container

    [solved] Re: pve4 lxc arch / problems with systemd 226 in container As mentioned at https://bugzilla.proxmox.com/show_bug.cgi?id=755 this bug IS fixed. I waited for updated lxcfs/cgmanager packages, but either I missed that or other things were going - I set up another pve4 last weekend and...
  16. O

    [SOLVED] pve4 lxc arch / problems with systemd 226 in container

    Yes. It IS your standard archlinux template, which is working very good, including installing packages, fiddling, updating - EXCEPT updating to systemd[xx]-226.
  17. O

    [SOLVED] pve4 lxc arch / problems with systemd 226 in container

    ...seems NOT to be an arch-thing but systemd in lxc containers: https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1497420So I turn down my hands for now and will keep an eye on this.
  18. O

    [SOLVED] pve4 lxc arch / problems with systemd 226 in container

    Thanks, Dietmar.Seems this is an arch-thing then IMHO, but how to stop this behaviour? I mean, I changed nothing at this container, except installing some packages, but the only service I turned to on, is sshd.
  19. O

    [SOLVED] pve4 lxc arch / problems with systemd 226 in container

    Clean and fresh install of pve4 at a Dell R410 for testing and discovering potentially issues when migrating from pve3.4 at main machine.Did some testing with a lxc arch-template (archlinux-base_2015-24-29-1_x86_64.tar.gz) which is working fine and fast with all dozens of packages I installed.I...