Jump to content

Printing: Difference between revisions

From NixOS Wiki
Apple AirPrint: mention AirPrint by name, add required cups-browsed and cups-filters configuration
Improve formatting, add more syntax highlighting, add more links (to packages/options)
 
Line 1: Line 1:
Printing in NixOS is done via the <code>services.printing</code> module, to configure the local printing services which is provided by the software [https://openprinting.github.io/projects/00-cups CUPS]. Setting up physical printer devices is done using <code>hardware.printers</code> option.
Printing in NixOS is done via the {{nixos:option|services.printing}} module, to configure the local printing services which is provided by the software [https://openprinting.github.io/projects/00-cups CUPS]. Setting up physical printer devices is done using {{nixos:option|hardware.printers}} option.


== Installation ==
== Installation ==
Line 11: Line 11:
== Configuration ==
== Configuration ==


=== Enable autodiscovery of network printers ===
=== Enable auto-discovery of network printers ===


Most printers manufactured after 2013 support the [https://www.pwg.org/ipp/everywhere.html IPP Everywhere] protocol, i.e. printing without installing drivers. This is notably the case of all WiFi printers marketed as Apple AirPrint-compatible ([https://support.apple.com/en-ca/HT201311 list]).
Most printers manufactured after 2013 support the [https://www.pwg.org/ipp/everywhere.html IPP Everywhere] protocol, i.e. printing without installing drivers. This is notably the case of all WiFi printers marketed as Apple AirPrint-compatible ([https://support.apple.com/en-ca/HT201311 list]).
Line 36: Line 36:
=== Adding printers ===
=== Adding printers ===


Beside manually adding printers with client tools, it is possible to permanently add printers to your system configuration (but be aware of [https://github.com/NixOS/nixpkgs/issues/78535 this bug] that sometimes expect the printer to be plugged in your system). The following example configures a network printer called <code>Dell_1250c</code> to your local system, reachable via IPP at <code>http://192.168.178.2:631/printers/Dell_1250c</code>
Beside manually adding printers with client tools, it is possible to permanently add printers to your system configuration (but be aware of [https://github.com/NixOS/nixpkgs/issues/78535 this bug] that sometimes expect the printer to be plugged in your system). The following example configures a network printer called <code>Dell_1250c</code> to your local system, reachable via IPP at <code><nowiki>http://192.168.178.2:631/printers/Dell_1250c</nowiki></code>


<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">
Line 76: Line 76:


<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">
hardware.printers = {
hardware.printers.ensurePrinters = [
  ensurePrinters = [
  {
    {
    name = "Dell_1250c";
      name = "Dell_1250c";
    location = "Home";
      location = "Home";
    deviceUri = "usb://Dell/1250c%20Color%20Printer?serial=YNP023240";
      deviceUri = "usb://Dell/1250c%20Color%20Printer?serial=YNP023240";
    model = "Dell-1250c.ppd.gz";
      model = "Dell-1250c.ppd.gz";
    ppdOptions = {
      ppdOptions = {
      PageSize = "A4";
        PageSize = "A4";
    };
      };
  }
    }
];
  ];
};
</syntaxhighlight>
</syntaxhighlight>


To add a printer over the smb protocol, [[Samba]] needs to be enabled:<syntaxhighlight lang="nix">
To add a printer over the smb protocol, [[Samba]] needs to be enabled:
hardware.printers.ensurePrinters = [{
<syntaxhighlight lang="nix">
hardware.printers.ensurePrinters = [
  {
     # (other stuff...)
     # (other stuff...)
     deviceUri = "smb://print-server.com/printername";
     deviceUri = "smb://print-server.com/printername";
   }];
   }
];


services.samba.enable = true;
services.samba.enable = true;
</syntaxhighlight>
</syntaxhighlight>


 
Some local or network printers might need additional drivers. You can add them using the <code>drivers</code> option:
Some local or network printers might need additional drivers. You can add them using the <code>drivers</code> option


<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">
Line 141: Line 141:
</pre>
</pre>


The <code>model</code> string is the first column. For example, for the Samsung SCX-4300 series, set <code>model = "samsung/SCX-4300.ppd";</code>
The <code>model</code> string is the first column. For example, for the Samsung SCX-4300 series, set <syntaxhighlight inline lang="nix">model = "samsung/SCX-4300.ppd";</syntaxhighlight>.


=== Printer sharing ===
=== Printer sharing ===


Enable network sharing of the default local printer, also known as "AirPrinting". Note that <code>listenAddresses = [ "*:631" ];</code>, <code>allowFrom = [ "all" ];</code> and <code>openFirewall = true;</code> will enable anonymous access to your printer on all interfaces, you might want to restrict this.
Enable network sharing of the default local printer, also known as "AirPrinting". Note that <syntaxhighlight inline lang="nix">listenAddresses = [ "*:631" ];</syntaxhighlight>, <syntaxhighlight inline lang="nix">allowFrom = [ "all" ];</syntaxhighlight> and <syntaxhighlight inline lang="nix">openFirewall = true;</syntaxhighlight> will enable anonymous access to your printer on all interfaces, you might want to restrict this.


<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">
Line 166: Line 166:
</syntaxhighlight>
</syntaxhighlight>


Once printer sharing is enabled, it could be additionally advertised in the home network via the Samba protocol, [[Samba#Printer_sharing|see]].
Once printer sharing is enabled, it could be additionally advertised in the home network via the Samba protocol, see [[Samba#Printer_sharing]].


== Usage ==
== Usage ==
Line 172: Line 172:
After enabling the printing service you'll be able to configure and add network printers via http://localhost:631. You may need to authenticate with your local user when you add the printer.
After enabling the printing service you'll be able to configure and add network printers via http://localhost:631. You may need to authenticate with your local user when you add the printer.


Depending on your desktop environment, there are several graphical tools available which will connect to this backend service and allow you a more convenient printer management, for example <code>system-config-printer</code>.
Depending on your desktop environment, there are several graphical tools available which will connect to this backend service and allow you a more convenient printer management, for example {{nixos:package|system-config-printer}}.


=== Command line ===
=== Command line ===
Line 179: Line 179:


<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
# lpstat -p
lpstat -p
</syntaxhighlight>
</syntaxhighlight>


Line 185: Line 185:


<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
# lp -o job-sheets=standard,none -d HP-LaserJet-1020 /dev/null
lp -o job-sheets=standard,none -d HP-LaserJet-1020 /dev/null
</syntaxhighlight>
</syntaxhighlight>


Line 191: Line 191:


<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
# lpstat
lpstat
</syntaxhighlight>
</syntaxhighlight>


Line 197: Line 197:


<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
# cancel 1
cancel 1
</syntaxhighlight>
</syntaxhighlight>


Line 205: Line 205:


===== Provide the PPD imperatively =====
===== Provide the PPD imperatively =====
If no driver is found for your printer, even when <code>services.printing.drivers</code> is correctly populated (see above),
If no driver is found for your printer, even when {{nixos:option|services.printing.drivers}} is correctly populated (see above), you can try to give cups a PPD file.  
you can try to give cups a PPD file.  
* Download the required PPD file, for example from [https://openprinting.org/printers openprinting.org]
* Download the required PPD file, for example from [https://openprinting.org/printers openprinting.org]
* Open the PPD as a text file, and check that it does not mention FHS paths like <code>/usr/bin</code>. If it does, this method is unlikely to work, as the PPD file depends on executables not present on your system. You can certainly install the binaries yourself and point to the new binary, but it is certainly easier to patch the executables in a derivation (see below) to avoid garbage collection of your binaries.
* Open the PPD as a text file, and check that it does not mention FHS paths like <code>/usr/bin</code>. If it does, this method is unlikely to work, as the PPD file depends on executables not present on your system. You can certainly install the binaries yourself and point to the new binary, but it is certainly easier to patch the executables in a derivation (see below) to avoid garbage collection of your binaries.
Line 265: Line 264:


=== Upgrade required ===
=== Upgrade required ===
Described in: [https://github.com/NixOS/nixpkgs/issues/23993 Github issue 23993]<br />
Described in: [https://github.com/NixOS/nixpkgs/issues/23993 Github issue 23993]
 
'''Problem'''<br />
'''Problem'''<br />
Using the cups web interface, the page tells you "Upgrade Required" and then redirects you to a page that fails to load.<br />
Using the cups web interface, the page tells you "Upgrade Required" and then redirects you to a page that fails to load.<br />
Line 274: Line 274:


'''Solution'''<br />
'''Solution'''<br />
Either we can help cups to get ssl keys, or we can tell it to not use https at all.<br />
Either we can help cups to get ssl keys, or we can tell it to not use https at all.
 
''Generating ssl keys:''<br />
''Generating ssl keys:''<br />
First make sure the directory /etc/cups/ssl exists:<br />
First make sure the directory <code>/etc/cups/ssl</code> exists:
<code>sudo mkdir -p /etc/cups/ssl</code><br />
 
Try restarting cups and using the web interface again. This might be enough to get it working.<br />
<syntaxhighlight lang="bash">
If this didn't help, then check if cups has generated ssl keys in /etc/cups/ssl<br />
sudo mkdir -p /etc/cups/ssl
</syntaxhighlight>
 
Try restarting cups and using the web interface again. This might be enough to get it working.
If this didn't help, then check if cups has generated ssl keys in <code>/etc/cups/ssl</code>.
 
''Disabling ssl:''<br />
''Disabling ssl:''<br />
Edit your <code>/etc/nixos/configuration.nix</code> and add the following lines:<br />
Edit your <code>/etc/nixos/configuration.nix</code> and add the following lines:<br />
<code><pre>services.printing.extraConf = ''
 
    DefaultEncryption Never
<syntaxhighlight lang="nix">
  '';</pre></code>
services.printing.extraConf = ''
  DefaultEncryption Never
'';
</syntaxhighlight>


===Unable to launch Ghostscript: gs: No such file or directory===
===Unable to launch Ghostscript: gs: No such file or directory===
Described in: [https://github.com/NixOS/nixpkgs/issues/20806 Github issue 20806]
Described in: [https://github.com/NixOS/nixpkgs/issues/20806 Github issue 20806]
and [https://github.com/NixOS/nixpkgs/issues/22062 issues 22062]<br />
and [https://github.com/NixOS/nixpkgs/issues/22062 issues 22062]<br />
'''Problem'''<br />
'''Problem'''<br />
When printing, cups will report an error: Unable to launch Ghostscript: gs: No such file or directory<br />
When printing, cups will report an error: <code>Unable to launch Ghostscript: gs: No such file or directory</code><br />


'''Cause'''<br />
'''Cause'''<br />
Some drivers use the ghostscript binary.<br />
Some drivers use the ghostscript binary.<br />
Cups will look for the binary path in it's config file: cupsd.conf<br />
Cups will look for the binary path in it's config file: <code>cupsd.conf</code><br />
This file is normally a link. But it can be overwritten, and consequentially become outdated.<br />
This file is normally a link. But it can be overwritten, and consequentially become outdated.<br />


'''Solution'''<br />
'''Solution'''<br />
You could try to manually fix the path variable in /var/lib/cups/cupsd.conf<br />
You could try to manually fix the path variable in <code>/var/lib/cups/cupsd.conf</code><br />
Alternatively you could try to delete the file and run <code>sudo nixos-rebuild switch</code>
Alternatively you could try to delete the file and run <code>sudo nixos-rebuild switch</code>


Line 306: Line 316:


'''Problem'''<br />
'''Problem'''<br />
But, later you may experience an error like '''"/nix/store/.../lib/cups/filter/pstospl not available: No such file or directory"'''.  
But, later you may experience an error like <code>/nix/store/.../lib/cups/filter/pstospl not available: No such file or directory</code>.  


'''Cause'''<br />
'''Cause'''<br />
Line 316: Line 326:
=== Debugging a broken printer driver ===
=== Debugging a broken printer driver ===


Add to <code>/etc/nixos/configuration.nix</code>
Add to <code>/etc/nixos/configuration.nix</code>:


<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">
Line 324: Line 334:
Rebuild
Rebuild


<pre>
<syntaxhighlight lang="bash">
sudo nixos-rebuild switch
sudo nixos-rebuild switch
</pre>
</syntaxhighlight>


Watch the cups logs
Watch the cups logs


<syntaxhighlight lang=console>
<syntaxhighlight lang="bash">
$ journalctl --follow --unit=cups
journalctl --follow --unit=cups
</syntaxhighlight>
</syntaxhighlight>
or
or
<syntaxhighlight lang=console>
<syntaxhighlight lang="bash">
$ journalctl --follow --unit=cups | grep -C10 --color=always -i -e 'No such file or directory' -e 'error:'
journalctl --follow --unit=cups | grep -C10 --color=always -i -e 'No such file or directory' -e 'error:'
</syntaxhighlight>
</syntaxhighlight>


Line 352: Line 362:


'''Solution'''<br />
'''Solution'''<br />
Use <code>NIXPKGS_ALLOW_UNFREE=1 nix-shell -p hplipWithPlugin --run 'sudo -E hp-setup'</code> to add the printer.
Use <syntaxhighlight inline lang="bash">NIXPKGS_ALLOW_UNFREE=1 nix-shell -p hplipWithPlugin --run 'sudo -E hp-setup'</syntaxhighlight> to add the printer.
[[Category:Hardware]]
[[Category:Hardware]]

Latest revision as of 22:54, 2 September 2025

Printing in NixOS is done via the services.printing module, to configure the local printing services which is provided by the software CUPS. Setting up physical printer devices is done using hardware.printers option.

Installation

To enable the local print service on your machine, simply add following lines to your configuration

services.printing.enable = true;

Configuration

Enable auto-discovery of network printers

Most printers manufactured after 2013 support the IPP Everywhere protocol, i.e. printing without installing drivers. This is notably the case of all WiFi printers marketed as Apple AirPrint-compatible (list).

To detect these printers, add the following to your system configuration:

services.avahi = {
  enable = true;
  nssmdns4 = true;
  openFirewall = true;
};

services.printing = {
  enable = true;
  drivers = with pkgs; [
    cups-filters
    cups-browsed
  ];
};

Discovery is done via the opened UDP port 5353. Printers should get automatically detected and visible in your printer configuration client.

Adding printers

Beside manually adding printers with client tools, it is possible to permanently add printers to your system configuration (but be aware of this bug that sometimes expect the printer to be plugged in your system). The following example configures a network printer called Dell_1250c to your local system, reachable via IPP at http://192.168.178.2:631/printers/Dell_1250c

hardware.printers = {
  ensurePrinters = [
    {
      name = "Dell_1250c";
      location = "Home";
      deviceUri = "http://192.168.178.2:631/printers/Dell_1250c";
      model = "drv:///sample.drv/generic.ppd";
      ppdOptions = {
        PageSize = "A4";
      };
    }
  ];
  ensureDefaultPrinter = "Dell_1250c";
};

A similar network based, driverless approach using the very widely supported IPP Everywhere protocol (thanks to this Discourse post), would look something like:

hardware.printers = {
  ensureDefaultPrinter = "Brother_HL-L2340D";
  ensurePrinters = [
    {
      deviceUri = "ipp://192.168.1.20/ipp";
      location = "home";
      name = "Brother_HL-L2340D";
      model = "everywhere";
    }
  ];
};

You can run lpinfo -m to ensure you have the everywhere driver currently available.

To add a local printer, connected via USB, change the deviceUri to a USB address and optionally define which driver to use by adding the model option.

hardware.printers.ensurePrinters = [
  {
    name = "Dell_1250c";
    location = "Home";
    deviceUri = "usb://Dell/1250c%20Color%20Printer?serial=YNP023240";
    model = "Dell-1250c.ppd.gz";
    ppdOptions = {
      PageSize = "A4";
    };
  }
];

To add a printer over the smb protocol, Samba needs to be enabled:

hardware.printers.ensurePrinters = [
  {
    # (other stuff...)
    deviceUri = "smb://print-server.com/printername";
  }
];

services.samba.enable = true;

Some local or network printers might need additional drivers. You can add them using the drivers option:

services.printing.drivers = [ YOUR_DRIVER ];

where YOUR_DRIVER is the driver package appropriate for your printer. Commonly used driver packages include:

  • pkgs.gutenprint — Drivers for many different printers from many different vendors.
  • pkgs.gutenprintBin — Additional, binary-only drivers for some printers.
  • pkgs.hplip — Drivers for HP printers.
  • pkgs.hplipWithPlugin — Drivers for HP printers, with the proprietary plugin, see also Setting up HP printers with proprietary drivers.
  • pkgs.postscript-lexmark — Postscript drivers for Lexmark
  • pkgs.samsung-unified-linux-driver — Proprietary Samsung Drivers
  • pkgs.splix — Drivers for printers supporting SPL (Samsung Printer Language).
  • pkgs.brlaser — Drivers for some Brother printers
  • pkgs.brgenml1lpr and pkgs.brgenml1cupswrapper — Generic drivers for more Brother printers (Proprietary drivers) [1]
  • pkgs.cnijfilter2 — Drivers for some Canon Pixma devices (Proprietary driver)
  • pkgs.epson-escpr2 — Drivers for newer Epson devices.
  • pkgs.epson-escpr — Drivers for some other Epson devices.

Search for other printer drivers in the NixOS package directory: the official list of packages is here. Add the driver to services.printing.drivers, not environment.systemPackages.


To get the specific string for model, run lpinfo -m which will produce output similar to

...
samsung/SCX-3200.ppd Samsung SCX-3200 Series
samsung/SCX-3400.ppd Samsung SCX-3400 Series
samsung/SCX-4100.ppd Samsung SCX-4100 Series
samsung/SCX-4200.ppd Samsung SCX-4200 Series
samsung/SCX-4300.ppd Samsung SCX-4300 Series
samsung/SCX-4500.ppd Samsung SCX-4500 Series
samsung/SCX-4500W.ppd Samsung SCX-4500W Series
samsung/SCX-4600.ppd Samsung SCX-4600 Series
samsung/SCX-4623.ppd Samsung SCX-4623 Series
...

The model string is the first column. For example, for the Samsung SCX-4300 series, set model = "samsung/SCX-4300.ppd";.

Printer sharing

Enable network sharing of the default local printer, also known as "AirPrinting". Note that listenAddresses = [ "*:631" ];, allowFrom = [ "all" ]; and openFirewall = true; will enable anonymous access to your printer on all interfaces, you might want to restrict this.

services.avahi = {
  enable = true;
  nssmdns = true;
  openFirewall = true;
  publish = {
    enable = true;
    userServices = true;
  };
};
services.printing = {
  listenAddresses = [ "*:631" ];
  allowFrom = [ "all" ];
  browsing = true;
  defaultShared = true;
  openFirewall = true;
};

Once printer sharing is enabled, it could be additionally advertised in the home network via the Samba protocol, see Samba#Printer_sharing.

Usage

After enabling the printing service you'll be able to configure and add network printers via http://localhost:631. You may need to authenticate with your local user when you add the printer.

Depending on your desktop environment, there are several graphical tools available which will connect to this backend service and allow you a more convenient printer management, for example system-config-printer.

Command line

List printers

lpstat -p

Print test page for printer called HP-LaserJet-1020

lp -o job-sheets=standard,none -d HP-LaserJet-1020 /dev/null

List jobs

lpstat

Cancel job

cancel 1

Tips and tricks

Manually supplying printer driver

Provide the PPD imperatively

If no driver is found for your printer, even when services.printing.drivers is correctly populated (see above), you can try to give cups a PPD file.

  • Download the required PPD file, for example from openprinting.org
  • Open the PPD as a text file, and check that it does not mention FHS paths like /usr/bin. If it does, this method is unlikely to work, as the PPD file depends on executables not present on your system. You can certainly install the binaries yourself and point to the new binary, but it is certainly easier to patch the executables in a derivation (see below) to avoid garbage collection of your binaries.
  • add the printer with system-config-printer (for example) and at the 'choose driver' screen choose 'provide PPD file'
Provide the PPD declaratively

You can also declaratively add the PPD as a new driver by creating a simple derivation. You just need to create a derivation that puts the PPD file in $out/share/cups/model/yourfile.ppd (you can also put it in a subfolder like $out/share/cups/model/HP/yourfile.ppd to limit conflicts between ppd having the same name). Note that the name of the file does not change the way cups will list it as the model/manufacturer is written inside the (text) ppd.

As in the imperative method, first check that your file does not contain any reference to binaries outside the store like /bin/ or /usr/. If it does not contain any reference then you should be able to simply do this:

{
  ...
  services.printing.enable = true;
  services.printing.drivers = [
    (writeTextDir "share/cups/model/yourppd.ppd" (builtins.readFile ./yourppd.ppd))
  ];
  ...
}

If your ppd contains links to external binaries, you can instead patch the file using for instance substituteInPlace. For that, create a file, say, myPrinter.nix containing something like:

{ stdenv }:
stdenv.mkDerivation rec {
  name = "myprinter-${version}";
  version = "1.0";

  src = ./.;

  installPhase = ''
    mkdir -p $out/share/cups/model/
    cp myprinter.ppd $out/share/cups/model/
    # If you need to patch the path to files outside the nix store, you can do it this way
    # (if the ppd also comes with executables you may need to also patch the executables)
    substituteInPlace $out/share/cups/model/myprinter.ppd \
      --replace "/usr/yourProgram/" "${yourProgram}/bin/yourProgram"
  '';
}

Of course update the name of the files and adapt the substituteInPlace command to your needs. Then add your driver as:

{
  ...
  services.printing.enable = true;
  services.printing.drivers = [
    (pkgs.callPackage ./myPrinter.nix {})
  ];
  ...
}

Your PPD file should now appear next to the other PPD files installed on your system when you add a new printer.

For debugging purpose, it may be interesting to note that the data folder used by cups (containing the drivers and more) can be obtained by looking in the environment $CUPS_DATADIR (the contents of $out/share/cups/ contained in your drivers are linked in this folder).

Troubleshooting

Upgrade required

Described in: Github issue 23993

Problem
Using the cups web interface, the page tells you "Upgrade Required" and then redirects you to a page that fails to load.

Cause
When you are using http and cups wants authentication it will redirect you to a https version by default.
In order to use https it needs ssl keys. However it is possible that cups fails to generate these keys, and then the page will fail to load.

Solution
Either we can help cups to get ssl keys, or we can tell it to not use https at all.

Generating ssl keys:
First make sure the directory /etc/cups/ssl exists:

sudo mkdir -p /etc/cups/ssl

Try restarting cups and using the web interface again. This might be enough to get it working. If this didn't help, then check if cups has generated ssl keys in /etc/cups/ssl.

Disabling ssl:
Edit your /etc/nixos/configuration.nix and add the following lines:

services.printing.extraConf = ''
  DefaultEncryption Never
'';

Unable to launch Ghostscript: gs: No such file or directory

Described in: Github issue 20806 and issues 22062

Problem
When printing, cups will report an error: Unable to launch Ghostscript: gs: No such file or directory

Cause
Some drivers use the ghostscript binary.
Cups will look for the binary path in it's config file: cupsd.conf
This file is normally a link. But it can be overwritten, and consequentially become outdated.

Solution
You could try to manually fix the path variable in /var/lib/cups/cupsd.conf
Alternatively you could try to delete the file and run sudo nixos-rebuild switch

File is missing (Gnome 3)

When you add an printer in Gnome (using gnome-control-center printers) you create a profile for your printer.

Problem
But, later you may experience an error like /nix/store/.../lib/cups/filter/pstospl not available: No such file or directory.

Cause
When you create a printer profile you get a freeze version of cups filter and when cups is updated, because you have upgraded your system, and garbage collected this version is gone.

Solution
Go into the gnome-control-center printers settings, remove the printer and recreate it.

Debugging a broken printer driver

Add to /etc/nixos/configuration.nix:

services.printing.logLevel = "debug";

Rebuild

sudo nixos-rebuild switch

Watch the cups logs

journalctl --follow --unit=cups

or

journalctl --follow --unit=cups | grep -C10 --color=always -i -e 'No such file or directory' -e 'error:'

Start a print job

Now watch the cups logs for errors like No such file or directory

Setting up Panasonic printers

See this blog post.

Setting up HP printers with proprietary drivers

Problem
Regular CUPS UI may not be able to add HP printers with proprietary drivers.

Solution
Use NIXPKGS_ALLOW_UNFREE=1 nix-shell -p hplipWithPlugin --run 'sudo -E hp-setup' to add the printer.