Skip to content

Instantly share code, notes, and snippets.

@dnavarrom
Created February 24, 2020 01:43
Show Gist options
  • Save dnavarrom/19c1817178d2901f82bd963890b77df9 to your computer and use it in GitHub Desktop.
Save dnavarrom/19c1817178d2901f82bd963890b77df9 to your computer and use it in GitHub Desktop.
Install ARM Driver for Brother HL-1202 (HL-1200 Series) to fix blank pages
# Instala el driver correcto para la impresora Brother HL-1202 (o cualquiera de la serie HL-1200)
# * Ademas repara el problema de impresion en pagina en blanco
# * Install arm drivers that fix blank pages on HL-1202 (or HL-1200 series)
# * Tested on orangepi zero - using Armbian_20.02.1_Orangepizero_bionic_current_5.4.20.7z and CUPS 2.2.7
#
#!/usr/bin/env bash
pushd /tmp
wget http://download.brother.com/welcome/dlf103361/brgenprintml2pdrv-4.0.0-1.armhf.deb
sudo dpkg -i brgenprintml2pdrv-*.armhf.deb
# Remove the printer created by the driver
sudo lpadmin -x BrGenPrintML2
sudo rm -f brgenprintml2pdrv-*.armhf.deb
popd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment