Recent content by CaptainPsycho

  1. C

    change Proxmox boot disk from mirrored to single disk

    https://docs.oracle.com/cd/E37838_01/html/E61017/remove-devices.html zpool remove rpool diskid Sollte dann wohl gehen. Aber eventuell erstmal mit zwei vdisks testen. ;)
  2. C

    change Proxmox boot disk from mirrored to single disk

    Depends on what you have chosen on installation. mdadm or ZFS?
  3. C

    change Proxmox boot disk from mirrored to single disk

    You could mark one disk as faulty / missing and continue using it for other things. Without additional work you will then work with a degraded array. On one point this is no problem, when not needing the mirror and you could add a disk anytime again. On the other hand you would need to live...
  4. C

    [SOLVED] Container are loosing network connect when networking is restarted on host

    I added additional NAT rules for other services to the interfaces file. e.g. #Wordpress http post-up iptables -t nat -A PREROUTING -i vmbr0 -p tcp --dport 80 -j DNAT --to 192.168.0.2:80 post-down iptables -t nat -D PREROUTING -i vmbr0 -p tcp --dport 80 -j DNAT...
  5. C

    [SOLVED] Container are loosing network connect when networking is restarted on host

    Hi, I am using a NAT+Maquerading configuration in /etc/network/interfaces to expose services running in a pivate internal network. So far everything is working. When adding a new service and restarting networking service with "systemctl restart newtorking.service" on the host, all guest CT...