s.koch blog
Kategorien Impressum RSS
Tutorial: Your Own Cloud Computing Tutorial: Betriebssystem-Programmierung

Categories

  • AWS
  • Algorithmen
  • Assembler
  • Betriebssystem
  • Big Data
  • Blockchain
  • C
  • Crawling
  • Croatian
  • Data Science
  • Data-Mining
  • Datenbanken
  • English
  • Fremdsprachen
  • Hacking
  • Hosting
  • Japanisch
  • Kroatisch
  • Linux
  • Maschinelles Lernen
  • Mikroelektronik
  • Molescrape
  • Monitoring
  • Natural Language Processing
  • Networking
  • Niederländisch
  • PHP
  • Python
  • R
  • RFC-Standards
  • Sammelsurium
  • Software Development
  • Software-Entwicklung
  • Spieleentwicklung und -programmierung
  • Suchmaschinen
  • Tools
  • Universität
  • Version Control
  • Virtualisierung
  • Visualisierung
  • Wissensdatenbank
  • Dec 10, 2020

    Graceful Shutdown of QEMU Guest from Python

    • Hosting
    • Linux

    In this tutorial I want to show how you can trigger a clean shutdown of your QEMU guest VM from Python. This is not as simple as one might expect, but also not so difficult. If you only stop the QEMU process, it will be a reset inside the guest VM. For a clean shutdown of a QEMU guest we have to use the QEMU monitor and send a shutdown command there.

    Ganzen Artikel lesen
  • Dec 6, 2020

    Persistent QEMU Instances with systemd

    • Hosting

    If you’re running QEMU instances without libvirt, you have the problem that there is no daemon managing your instances. If your host reboots, the VMs will not be re-created. In this part of my cloud computing tutorial I will use systemd to create QEMU VMs that are managed by a daemon (in this case systemd). If you haven’t followed along my tutorial series, you can just read the systemd info and skip the Python parts.

    Ganzen Artikel lesen
  • Nov 28, 2020

    VDE Networking for our Cloud Computing

    • Hosting

    If you’ve followed the first part of this series, you’ll remember that our server script currently requires root privileges to setup a TAP device for each QEMU instance. It would be much nicer if this was not needed and instead our script could run in user-mode. This is possible with VDE networking.

    Ganzen Artikel lesen
  • Nov 25, 2020

    Using flask-log-request-id in Backend Workers without an HTTP Request

    • Python

    flask-log-request-id is a small extension for Flask to forward a request ID from HTTP requests to logging. By default, it works with X-Request-ID, X-Correlation-ID, and AWS’s X-Amzn-Trace-Id. I recently wanted to propagate the request ID to a worker that does not use HTTP and thus does not receive any of the above headers.

    Ganzen Artikel lesen
  • Nov 22, 2020

    Let's Program our own Cloud Computing Provider with Python, RabbitMQ and QEMU

    • Hosting

    In this tutorial I show how we can create a very simple scalable cloud computing provider for fun. It will allow us to start VMs from base images by sending messages to a message broker. All of this will be based on QEMU to run VMs, RabbitMQ to handle messaging and Python for the code.

    Ganzen Artikel lesen
Ältere Einträge Neuere Einträge

s.koch blog

  • RSS Subscribe via RSS

I am a Software Engineer interested in all kinds of different technology. While I still love to try out new things, I recently started to avoid hype technology and prefer mature stuff that does not change so often.