Category: Container

Qemu & KVM

General: https://wiki.ubuntuusers.de/KVM/ https://www.qemu.org/ Higher Resolution: The Windows 10 QXL driver is called “QXL-WDDM-DOD”: https://www.spice-space.org/download/windows/qxl-wddm-dod/ TPM2: https://www.codingblatt.de/virt-manager-qemu-kvm-tpm2-emulieren/ Commands: virsh list –all Resource: https://shallowsky.com/blog/linux/virt-manager-tips.html https://stafwag.github.io/blog/blog/2018/04/22/high-screen-resolution-on-a-kvm-virtual-machine-with-qxl/ https://www.codingblatt.de/virt-manager-qemu-kvm-tpm2-emulieren/

Good to know: Linux services and Docker

Docker and Unix services As a general rule of thumb there is one docker container for each service. It’s like a mantra echoing in the internet to separate concerns and to follow the Unix design principle of doing one thing, and doing one thing right (see Wikipedia) (Btw. look at this video from the vaults explaining the UNIX operating system...

VSCode devcontainer (part 1)

Coding SAP is Eclipse based ADT, it’s Business Application Studio and.. oh sure it’s VSCode. I’m playing around with CDS, UI5 and CAP. But – and this is important – i don’t want to pollute my system with strange dependencies like npm (see here). But there is a solution for that.. – using devcontainers in VSCode. What is a Devcontainer?...

Docker – Good to know

I don’t run docker containers locally, but on a docker VM on a remote server. Management is done through Portainer.io which adds a nice GUI to Docker and Kubernetes. However sometimes, the CLI is still the place to be: Useful commands: docker run –rm -it = run/pull image docker ps = list all active containers docker attach = attach to...