Search results

  1. Richard

    Headers error when updating

    Check whether the respective kernel modules are loaded respectively they can be loaded by modprobe. If not reinstall the kernel (maybe `apt -f install` is sufficient).
  2. Richard

    RFE: is vm virtual disk naming scheme optimal ?

    The focus of disk naming scheme is rather the usage by system (scripts) than by humans. Assuming mainly WEB GUI is used for administration the name scheme is not very important for the user. However, it's possible to use the dedicated disk names and implemented as a feature to use them by CLI...
  3. Richard

    [SOLVED] Migration to a 10 Gbps network

    When running the speedtest from ookla you have much more complexity compared with running just iperf3 and it's more difficult to detect the bottlemneck. AFAIU in the current case there is mainly the question if VM versus host is ok (respectively if VM is able to use the host's 10GBps...
  4. Richard

    Netzwerkprobleme zwischen den Knoten seit 7.1 bis 7.3

    Da verlieren nicht die (physikalischen) nodes die Verbindung sondern die VM1998 bzw. der Container 125 verlieren diese oder werden abgeschaltet o.ä. Für Details müsste man in die log files (/var/log/syslog*) sehen.
  5. Richard

    Install on DELL R630 with Hardware RAID

    When you want to use zfs - but zfs is not a must, use Hardware RAID and on top of it "LVM[-thin]" or "Directory" Storage is not a problem. Correct!
  6. Richard

    Port Fowarding

    Run simply the command mentioned before: iptables -t nat -A POSTROUTING -j MASQUERADE
  7. Richard

    Install on DELL R630 with Hardware RAID

    Everything of the above will work, what is the best option depends also on the expectations and needs you have. Assuming you plan a stand alone server and you want to have data security I would (and this is last but not least also a matter of personal approach, i.e. what you are most familiar...
  8. Richard

    Port Fowarding

    Port forwarding without 'MASQUERADE' may cause problems (since the source-destination at seen endpoint appears asymmetric then). Best practice: to avoid this is when using part forwarding simply to configure iptables -t nat -A POSTROUTING -j MASQUERADE for having MASQUERADE unconditionally...
  9. Richard

    Port forwarding from host to VM's troubleshooting

    As long as you want to access to your VM's application only from home LAN (it is the case AFAIU) no port forwarding is necessary. VM is in the same subnet as your PC. Despite this port forwarding would work theoretically but in this case the tcp connection would be asymmetric: for the client...
  10. Richard

    Intel® UHD Graphics 11th passthrough with hardware accelleration

    See https://forum.proxmox.com/threads/gpu-passthrough-to-lxc-container.114106/
  11. Richard

    cannot mount SMB/CIFS over yggdrasil (ipv6)

    Check whether it works when mounting via command line (in Proxmox host as well in a bare Linux, e.g. Ubuntu): mount.cifs //201:xxx/backup <mountpoint> If it works something is maybe wrong with Proxmox (however: in this case you can use the mountpoint and configure a "Directory" Storage on...
  12. Richard

    Intel® UHD Graphics 11th passthrough with hardware accelleration

    No, GPU passthrough is only possible if you have a graphic card which is not used by host OS (in case UHD is is used by the hist OS). As an alternative use spice monitor for you VM, allows full screen and is fast.
  13. Richard

    Slow internet connection in host and LXCs but not VMs

    Maybe gateway 192.168.0.1 is extremely slow and the VM uses a different gateway? For further analyzis it's necessary to know configuration of VM (/etc/pve/qemu-server/<vm-id>.conf), container (/etc/pve/lxc/<ct-id>.conf) as well as network configuration from inside the VM.
  14. Richard

    Dataset cannot be destroyed with error "dataset already exists"

    Probably yes, try to add -r option: zfs destroy -r rpool/crypt/vm-100-disk-0-alt
  15. Richard

    Fast CT shutdown, very slow (minutes) CT stop

    Regardless you stop the container via `pct shutdown`, shutdown in WEB-GUI or shutdown caused by host shutdown the same process for/in the container takes place. /var/log/syslog from container shows what happens, typical output: Dec 1 09:25:13 debct systemd[1]: Received SIGRTMIN+3. Dec 1...
  16. Richard

    Installing Proxmox no video and the frozen installation

    In case your graphic adapter does not support video which is used during Proxmox installation there are two options: 1. install Debian 11 and on top of it proxmox VE (see https://pve.proxmox.com/pve-docs/pve-admin-guide.html#_install_proxmox_ve_on_debian) 2. put your disk into another system...
  17. Richard

    Create Test Scenario for PVE boot failure

    Sure, therefore I suggested to proof the concept for your setup with a VM before in order to avoid a situation having the need to to "reset" the system; respectively: get familiar how to recover a "damaged" RAIDZ2 by try it out with a VM. In principle explained in...
  18. Richard

    No more network devices

    Looks like graphic is not working properly - try different Display settings (VMware compatible works im most cases for Linux OS).
  19. Richard

    Create Test Scenario for PVE boot failure

    In this case I would do the following: * Install Proxmox VE in VM and configure it exactly as you plan it for your physical server * Play then around by removing (virtual) disks etc and see the effect * In order to be able to go back to a certain state of your experiments make snapshots * As...
  20. Richard

    output video of VM to host's display

    AFAIU you have only one graphic adapter, you cannot pass through it to a VM. Use spice monitor Easiest solution: use SPICE display which allows to go into full screen mode and you will have the same effect.