Skip to content

Instantly share code, notes, and snippets.

@sulincix
Created February 17, 2026 10:38
Show Gist options
  • Select an option

  • Save sulincix/a7b660913082f3c524c5487854ea3e19 to your computer and use it in GitHub Desktop.

Select an option

Save sulincix/a7b660913082f3c524c5487854ea3e19 to your computer and use it in GitHub Desktop.
destroy journald
#!/bin/bash
# remove init symlink (or move)
rm /sbin/init
# write preinit
cat > /sbin/init <<EOF
mkdir /run/systemd
touch /run/systemd/journal
exec /lib/systemd/systemd
EOF
# make executable
chmod 755 /sbin/init
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment