Skip to content

Instantly share code, notes, and snippets.

@alanpullen
Last active October 18, 2018 19:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alanpullen/cdfeb71bd6d85edabf87 to your computer and use it in GitHub Desktop.
Save alanpullen/cdfeb71bd6d85edabf87 to your computer and use it in GitHub Desktop.
Plymouth Pango Fix
#!/bin/bash
cd ~
echo "Downloading libpango ..."
wget http://ftp.uk.debian.org/debian/pool/main/p/pango1.0/libpango1.0-0_1.30.0-1_armhf.deb
echo "Extracting libpango ..."
dpkg --extract libpango1.0-0_1.30.0-1_armhf.deb /home/pi/pango
echo "Making pango folder ..."
sudo mkdir /usr/lib/arm-linux-gnueabihf/pango
echo "Copying pango modules ..."
sudo cp -r /home/pi/pango/usr/lib/arm-linux-gnueabihf/pango/* /usr/lib/arm-linux-gnueabihf/pango/
echo "If no errors, all is done and you can remove downloaded files"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment