mirror of https://github.com/klirichek/zj-58
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
278 B
14 lines
278 B
10 years ago
|
#!/bin/bash
|
||
|
|
||
|
# Installs zj-58 driver
|
||
|
# Tested as working under Ubuntu 14.04
|
||
|
|
||
|
/etc/init.d/cups stop
|
||
|
cp rastertozj /usr/lib/cups/filter/
|
||
|
cp ZJ-58.ppd /usr/share/cups/model/zjiang/
|
||
|
cd /usr/lib/cups/filter
|
||
|
chmod 755 rastertozj
|
||
|
chown root:root rastertozj
|
||
|
cd -
|
||
|
/etc/init.d/cups start
|