Skip to content

Instantly share code, notes, and snippets.

View CULTofBEETROOT's full-sized avatar

cultofbeetroot CULTofBEETROOT

View GitHub Profile
@CULTofBEETROOT
CULTofBEETROOT / gist:c01fa1985c280aa24a8d458dbe82e18d
Last active January 11, 2026 15:07
debian trixie gdm.service inactive after x11 install: waste no time, reinstall gdm3 and gnome.
#!/bin/bash
echo "stuck at boot on debian, trixie gdm.service inactive after x11 install: waste no time, reinstall gdm3 and gnome..."; sleep 4s;
sudo apt install -y lightdm;
echo "next select lightdm"; sleep 2s;
dpkg-reconfigure lightdm;
sudo apt autoremove gnome-shell gnome-session gnome-common gnome-control-center gnome-software gnome-session-bin gdm3 gdm;
sudo apt autoremove -purge gnome-shell gnome-session gnome-common gnome-control-center gnome-software gnome-session-bin gdm3 gdm;
sudo apt install -y gnome-shell gnome-session gnome-common gnome-control-center gnome-software gnome-session-bin gdm3;
sudo apt autoremove lightdm;