Make devcontainers work on Fedora with SELinux / rootless podman

I needed to add the following to my .devcontainer.json to get it going: "runArgs": [ "--userns=keep-id:uid=1000,gid=1000", "--security-opt=label=disable" ], "containerUser": "vscode", (Assuming your user ID is 1000. Find it by running …
Read more →

Intune on Fedora 39

Based on https://taoofmac.com/space/com/microsoft/intune Install dependencies: sudo dnf install alien rpmrebuild sdbus-cpp java-11-openjdk Download latest package versions of: https://packages.microsoft.com/ubuntu/22.04/prod/pool/main/m/msalsdk-dbus…
Read more →

Intune on Fedora 40

Based on https://taoofmac.com/space/com/microsoft/intune Install dependencies: sudo dnf install alien rpmrebuild sdbus-cpp java-11-openjdk Download latest package versions of: https://packages.microsoft.com/ubuntu/22.04/prod/pool/main/m/msalsdk-dbus…
Read more →

Intune on Fedora 38

title: Superseded These notes have been superseded by [[20240112-1400 - Intune on Fedora 39]]. Based on https://taoofmac.com/space/com/microsoft/intune Install dependencies: sudo dnf install alien sdbus-cpp java-11-openjdk Download latest package v…
Read more →

SSH authorized_keys permission denied on Fedora until SELinux labels were reloaded

Ran into this on February 14th, 2022 where I couldn't authenticate to localhost with public keys on Fedora. Setting up: # /etc/systemd/system/sshd.service.d/override.conf [Service] ExecStart= ExecStart=/usr/sbin/sshd -D $OPTIONS -d ..and restarting …
Read more →

Upgrading Fedora from the CLI

Make sure the system is fully up to date: dnf --refresh upgrade Download the updated packages: dnf system-upgrade download --refresh --releasever=$(source /etc/os-release && printf $((VERSION_ID+1))) Trigger the upgrade process (will immediately re…
Read more →