/ Published in: Bash
If you want to run an old cheap canon i250 printer on linux try this.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
#!/bin/sh #if you dont have these packages already uncomment this one: #gksudo "aptitude -y install libpng3 libtiff4 cupsys alien" cd /tmp echo "Fetching drivers from Canon Australia" wget http://download.canon.com.au/bj/i250linux/bjfilteri250-2.3-0.i386.rpm wget http://download.canon.com.au/bj/i250linux/bjfiltercups-2.3-0.i386.rpm #Then alien the files like this: alien bjfiltercups-2.3-0.i386.rpm alien bjfilteri250-2.3-0.i386.rpm #and if you dont have a i386 but a amd64 do this: dpkg --force-arch -i bjfiltercups-2.3-0.i386.rpm bjfilteri250-2.3-0.i386.rpm #then you should be fine.