Skip to content

Instantly share code, notes, and snippets.

@skull-squadron
Created May 1, 2011 15:45
Show Gist options
  • Save skull-squadron/950593 to your computer and use it in GitHub Desktop.
Save skull-squadron/950593 to your computer and use it in GitHub Desktop.
Disable quiet booting and plymouth on Debian/Ubuntu
sudo sed -i 's/\(GRUB_CMDLINE_LINUX_DEFAULT="\)quiet"/\1"/' /etc/default/grub  
sudo sed -i 's/\(GRUB_CMDLINE_LINUX="[^"]*\)"/\1 nosplash noplymouth"/' /etc/default/grub  
sudo update-grub  

Caveat: This breaks anything requiring plymouth to interact with user interaction, likely debsel stuff.

@skull-squadron
Copy link
Author

also init=/sbin/init -v

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment