Changes

Jump to navigation Jump to search
m
no edit summary
(MAJOR INFO: NOT EVERY PRINTER IS SUPPORTED BY LINUX-CUPS go [http://www.openprinting.org/printers link Hardware-List] mostly older are known! read first if you want to buy)

If you want to Print on Linux you will need 2 things

- Printer Driver from the Manufacterer ( mostly 2 Parts!! Driver and Cups Wrapper Driver for Line Wrapping DIN-A4 Letter Formats)
- Cups Printer Server Software

first install the cups Printing Server Software, i ALWAYS install Print-to-PDF too! for paperless Office:
<pre>
sudo apt-get install cups cups-pdf
</pre>
add your user to Group lpadmin!
<pre>
sudo adduser yourusername lpadmin
</pre>
go to manufacterer support site like brother.com and download the ".deb" files! to install them do:
<pre>
sudo dpkg -i *.deb
</pre>
force lib32-install on 64bit Systems cause most older Printersoftware is written for 32bit!!!
<pre>
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get -f install -y
</pre>
This will force the OS to install 32Libs for 64bit and you got a Multi-Arch Linux ! [https://wiki.debian.org/Multiarch/HOWTO link Debian-Wiki-Source]

If the Software is installed successful, you can open a Browser and change settings Controls on:
<pre>
http://localhost:631
</pre>
Remark on ubuntu disabled by default, then go system settings (Logout Menu) to control your printers there!

Paperless Print to PDF is well done by cups and every User found the pdf files inside their homes on PDF Folder!

Navigation menu