Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

35 total results found

CIP Core Project

Embedded Linux HowTos

Website: https://wiki.linuxfoundation.org/civilinfrastructureplatform/cip-core OSBL: open-source base layer SLTS: super long-term support CIP core has two profiles: The tiny profile is built from Debian source code and is useful for devices with storage rest...

Bitbake on Ubuntu 24.04

Embedded Linux HowTos

Bitbake funktioniert nicht mit der Ubuntu 24.04 AppArmor konfiguration, siehe bug ticket. Lösung: Basierend auf https://discourse.ubuntu.com/t/ubuntu-24-04-lts-noble-numbat-release-notes/39890. Erstelle ein AppArmor Konifguration /etc/apparmor.d/bitbake mit fo...

Dateisysteme

Embedded Linux HowTos

Der Phoronix Artikel vergleicht die Performance verschiedener Linux Dateisyteme. EROFS EROFS ist ein "modernes" read-only Dateisystem das auf Lese-Performance optimiert ist und u.a. von Android verwendet wird. Links: Kernel Dokumentation Android Architektur E...

Linux Test Project (LTP)

Embedded Linux HowTos

LTP Dokumentation Install and run Requirements git autoconf automake make gcc m4 pkgconf / pkg-config libc headers linux headers Clone and build git clone --recurse-submodules https://github.com/linux-test-project/ltp.git cd ltp make autotools ./configure m...

Embedded Linux Security

Embedded Linux HowTos

Based on Introduction to Embedded Linux Security - part 1 and Introduction to Embedded Linux Security - part 2 STRIDE: DREAD: Secure Element: A Secure Element is a secure computing system. It is basically secure storage with its own secure applications (usu...

RustDesk

Linux Desktop

RustDesk installieren wget installieren: sudo apt update; sudo apt install wget RustDesk Debian Packet von Github herunterladen: cd ~; wget https://github.com/rustdesk/rustdesk/releases/download/1.3.9/rustdesk-1.3.9-x86_64.deb Rust-Desk installieren: sudo apt...

Cost Variance (CV)

Projektmanagement Begriffe

The cost variance (CV) is a key measure that illustrates the gap between the project’s earned value (EV) and its actual cost (AC). CV = EV – AC A CV value of 0 indicates that the project is on budget. A positive CV value indicates that the project is under bu...

Schedule Variance (SV)

Projektmanagement Begriffe

The schedule variance (SV) is a metric that helps project teams determine if a project is on schedule or lagging. SV is determined by comparing earned value (EV) to planned value (PV). SV = EV – PV An SV value of 0 indicates that the project is on schedule. A...

Cost Performance Index (CPI)

Projektmanagement Begriffe

The cost performance index (CPI) measures how efficiently work is being performed regarding the budgeted cost of the work. CPI is expressed as the ratio of earned value (EV) to actual cost (AC). CPI = EV / AC A CPI value of 1 indicates that the project is on ...

Schedule Performance Index (SPI)

Projektmanagement Begriffe

The schedule performance index (SPI) compares earned value (EV) and planned value (PV) to gauge adherence to timelines. SPI = EV / PV An SPI value of 1 indicates that the project is on schedule. An SPI value greater than 1 indicates that the project is ahead ...

Rallly

Self Hosting Services

Rallly ist ein open-core Service um Termine und Treffen zu organisieren, vergleichbar mit Doodle. Ich betreibe auf meinem Cloud Gateway auch eine Rallly Instanz die unter meet.tomirgang.de erreichbar ist. Auch Rallly betreibe ich mit Hilfe von Docker-Compose i...

Infrastruktur

Self Hosting

Meine Infrastruktur basiert auf einem Cloud Gateway, realisiert über einen Hetzner VPS, und einen VPN Tunnel der Dienste von anderen Maschinen einbindet, und über den VPS zur Verfügung stellt. Maschinen Aktuell basiert meine Infrastruktur auf folgenden Maschin...

Github Pages

Self Hosting Meine Webseite

Aktuell ist meine Website, https://tomirgang.de/, mit dem statischen Seitengenerator Zola gebaut und über GitHub Pages aus dem Repository tomirgang.github.io gehostet. Ich plane die Seite demnächst zu überarbeiten und auf meine Cloud Gateway VPS umzuziehen.

Transfer Docker image between hosts

Linux Tricks

Solution form Stack Overflow: Transferring a Docker image via SSH, bzipping the content on the fly: docker save <image> | bzip2 | ssh user@host docker load Note that docker load automatically decompresses images for you. It supports gzip, bzip2 and xz. It's a...

New Hompage using Hugo and Forgejo

Self Hosting Meine Webseite

I'm running a small homepage and blog, primary as personal profile and self-marketing, but also to share my projects, experiences and learning. I want the homepage to be lightweight, fast and secure, and therefore I use a static site generator to render the co...