Last active
November 23, 2025 00:08
-
-
Save sulincix/1aeeb6ff99ea14e1ff76afc301b25785 to your computer and use it in GitHub Desktop.
debian remove systemd
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| if [[ $UID -ne 0 ]] ; then | |
| echo "You must be root" | |
| exit 1 | |
| fi | |
| apt update | |
| # Block service invoke | |
| echo -e "#!/bin/sh\nexit 101" > /usr/sbin/policy-rc.d | |
| chmod +x /usr/sbin/policy-rc.d | |
| # Remove systemd preremove script. | |
| rm -f /var/lib/dpkg/info/systemd.prerm | |
| # Install openrc and elogind (if you want use sysv-rc instead of openrc) | |
| apt install elogind sysvinit-core openrc systemd- systemd-sysv- -y --allow-remove-essential | |
| apt-mark hold systemd libsystemd0 libsystemd-shared | |
| apt install -f | |
| apt full-upgrade -y | |
| apt autoremove --purge -y | |
| # create empty systemctl command for some hardcoded stuffs | |
| ln -s /bin/true /bin/systemctl | |
| # cleanup journal garbages | |
| rm -rf /var/log/journal | |
| # fix pipewire | |
| wget https://github.com/aleyna-tilki/pipewire-launcher/releases/download/current/pipewire-launcher_1.0.0_all.deb | |
| dpkg -i pipewire-launcher_1.0.0_all.deb | |
| rm -f pipewire-launcher_1.0.0_all.deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment