Siduction Forum

Siduction Forum => Hardware - Support => Thema gestartet von: dieres in 2013/08/31, 20:57:07

Titel: Brother HL-2070n
Beitrag von: dieres in 2013/08/31, 20:57:07
Ich scheitere meinen alten Drucker installiert zu bekommen.
Er ist an meinem Gargoyle 1043nd router an USB angeschlossen.
Die Verbindung auf der IP 192.168.3.252 steht, unter localhost:631
lässt sich der Drucker einrichten, MacOS und Windows drucken wie blöd nur meien Linux-kisten bringen nur die grüne LED zum Blinken.
Wenn man dann die Go Taste drückt, schmeißt er die Seite raus auf der dann steht, das wenn man diesen Text liest, der falsche Treiber
installiert ist. Aber für den Drucker gibt es gleich mehrere Treiber mit cups mitgeliefert. Nur keiner funktioniert.

Letztes Jahr lief das noch ohne Probleme. Hat jemand ne Idee wie ich das löse?
Titel: Brother HL-2070n
Beitrag von: dieres in 2013/09/01, 00:02:52
es geht jetzt nur noch mit den cupswrapper und lpr Paketen von brother. Man muss dazu multiarch i386 aktivieren und mit den Bauchschmerzen leben an apt vorbei 2 mäßig bewertete brother pakete installiert zu haben.

Begeisterung geht anders!
Titel: Brother HL-2070n
Beitrag von: piper in 2013/09/01, 01:35:11
mkdir /var/spool/lpd/
dpkg  -i  --force-all brhl2070nlpr-2.0.1-1.i386.deb

dpkg  -i  --force-all cupswrapperHL2070N-2.0.1-2.i386.deb

http://localhost:631/printers
when choosing a printer model, don't choose any of the options, instead, there's a place for you to set up using a PPD driver, and browse to /usr/share/cups/model/HL2070N.ppd
/etc/init.d/cups restart
dpkg  -l  |  grep  Brother
Which for me gives the outputdpkg  -l  |  grep  Brother
ii  cupswrappermfc420cn                                   1.0.2-3                        i386         Brother MFC420CN CUPS wrapper driver
ii  mfc420cnlpr                                           1.0.2-1                        i386         Brother lpr Inkjet Printer Definitions
Titel: Brother HL-2070n
Beitrag von: ReinerS in 2013/09/01, 10:28:59
Re:
mkdir /var/spool/lpd/
I always make that a symbolic link to /var/spool/cups instead. Might not be the "cleanest" way but created no problems until now.
Is now usually among the first things I do when dealing with drivers from brother.

regards

Reiner
Titel: Brother HL-2070n
Beitrag von: piper in 2013/09/01, 18:12:23
I have been using brother printers since kanotix days and never had a problem using the above ;)

I will try on my next test/install /var/spool/cups and see what happens.

I will be getting a new printer soon as my MFC420CN is getting old and my wife needs it more than me (uses windows 7) as this is our "network printer" used across our home network

I have modified a script someone here posted a while back to reflect my drivers.

I have looked at several scripts on the web and they all include mkdir /var/spool/lpd && echo.

When I first started with this printer, the brother website had that (above) included in their directions to install, I stuck with it over the years

The original script#! bin/bash
# DCP-9010CN_Treiberinstall.sh
if test $(id -u) != 0; then
echo "\033[1;31mFehler: werde zu su oder sux und starte das script neu! \033[0m"
exit 1
fi
mkdir -p $HOME/DCP-9010CN && cd $HOME/DCP-9010CN && echo "Verzeichnis erstellt"
mkdir /var/spool/lpd && echo "Verzeichnis erstellt"
wget www.brother.com/pub/bsc/linux/dlf/dcp90 ... 1.i386.deb && echo "\033[500C\033[4D\033[1;32mOK\033[0m"
wget www.brother.com/pub/bsc/linux/dlf/dcp90 ... 1.i386.deb && echo "\033[500C\033[4D\033[1;32mOK\033[0m"
apt-get update && apt-get install --assume-yes sane-utils && echo "\033[500C\033[4D\033[1;32mOK\033[0m"
if [ "$(uname -m)" = "x86_64" ]; then
  wget www.brother.com/pub/bsc/linux/dlf/brsca ... .amd64.deb && echo "\033[500C\033[4D\033[1;32mOK\033[0m"
  wget www.brother.com/pub/bsc/linux/dlf/brsca ... .amd64.deb && echo "\033[500C\033[4D\033[1;32mOK\033[0m"
  apt-get install --assume-yes cups csh lib32stdc++6 && echo "\033[500C\033[4D\033[1;32mOK\033[0m"
  dpkg -i --force-all --force-architecture dcp9010cnlpr-1.1.2-1.i386.deb && echo "\033[500C\033[4D\033[1;32mOK\033[0m"
  dpkg -i --force-all --force-architecture dcp9010cncupswrapper-1.1.2-1.i386.deb && echo "\033[500C\033[4D\033[1;32mOK\033[0m"
  dpkg -i --force-all brscan3-0.2.11-5.amd64.deb && echo "\033[500C\033[4D\033[1;32mOK\033[0m"
  dpkg -i --force-all brscan-skey-0.2.4-0.amd64.deb && echo "\033[500C\033[4D\033[1;32mOK\033[0m"
  brsaneconfig3 -a name=SCANNER model=DCP-9010CN ip=192.168.178.21 echo "\033[500C\033[4D\033[1;32mOK\033[0m"
  ln -s /usr/lib64/sane /usr/lib/sane && echo "\033[500C\033[4D\033[1;32mOK\033[0m"
  ln -s /usr/lib64/libbrscandec3.so /usr/lib/libbrscandec3.so && echo "\033[500C\033[4D\033[1;32mOK\033[0m"
  dpkg -l | grep Brother
  brsaneconfig3 -q | grep SCANNER
  rm -rf $HOME/DCP-9010CN && echo "\033[1;32mTreiber wurden erfolgreich installiert \033[0m"
  exit 1
elif [ $(uname -m) = "i386" -o $(uname -m) = "i686" ]; then
  wget www.brother.com/pub/bsc/linux/dlf/brsca ... 4.i386.deb && echo "\033[500C\033[4D\033[1;32mOK\033[0m"
  wget www.brother.com/pub/bsc/linux/dlf/brsca ... 0.i386.deb && echo "\033[500C\033[4D\033[1;32mOK\033[0m"
  dpkg -i --force-all dcp9010cnlpr-1.1.2-1.i386.deb && echo "\033[500C\033[4D\033[1;32mOK\033[0m"
  dpkg -i --force-all dcp9010cncupswrapper-1.1.2-1.i386.deb && echo "\033[500C\033[4D\033[1;32mOK\033[0m"
  dpkg -i --force-all brscan3-0.2.11-4.i386.deb && echo "\033[500C\033[4D\033[1;32mOK\033[0m"
  dpkg -i --force-all brscan-skey-0.2.4-0.i386.deb && echo "\033[500C\033[4D\033[1;32mOK\033[0m"
  brsaneconfig3 -a name=SCANNER model=DCP-9010CN ip=192.168.178.21 echo "\033[500C\033[4D\033[1;32mOK\033[0m"
  dpkg -l | grep Brother
  brsaneconfig3 -q | grep SCANNER
  rm -rf $HOME/DCP-9010CN && echo "\033[1;32mTreiber wurden erfolgreich installiert \033[0m"
  exit 1
else
  echo "\033[1;31mTreiber konnten nicht installiert werden \033[0m"
  exit 1
fi
Titel: Brother HL-2070n
Beitrag von: dieres in 2013/09/01, 18:42:28
Zitat
I have been using brother printers since kanotix days and never had a problem using the above

Thanks, that calms me down.
Titel: Brother HL-2070n
Beitrag von: ReinerS in 2013/09/01, 19:01:37
well, as I mentioned the way I suggested is not the "cleanest" one. But as I found out just creating the link to the cups directory instead didnot do any harm.

regards

Reiner
Titel: Brother HL-2070n
Beitrag von: dieres in 2013/09/11, 03:44:13
just found that using HP-Laserjet-series Driver works without that brother debs.

This will be my way. Absolutly clean solution without brother debs.
Titel: Brother HL-2070n
Beitrag von: DeepDayze in 2013/09/15, 23:54:12
Zitat von: "dieres"just found that using HP-Laserjet-series Driver works without that brother debs.

This will be my way. Absolutly clean solution without brother debs.

Don't the Brother printers use HP print engines? I have a Brother MFC465CN that is 6 years old and soon will be replaced with a newer one. Should I stick with Brother or should I go with HP?
Titel: Brother HL-2070n
Beitrag von: dieres in 2013/09/16, 12:30:13
It depends on your device, in my case the simple black and white laserprinter has no Options not useable in the HP driver.

So I have decided to use HP driver.

If you own a multifunktion printer you probably have to use Brother driver if you want to use all Options.

Simple try it out.