Skip to content

GeekPie Printer

There is a Panasonic KX-MB2138CN printer at SIST 1B-203. It can be accessed via ipp://10.11.12.13:631/printers/Panasonic_KX-MB2138CN.

Windows

  1. Select Start and then select Settings > Bluetooth & devices > Printers & scanners.
  2. In the Bluetooth & devices > Printers & Scanners window, next to Add a printer & scanner, select the Add device button.
  3. Next to The printer that I want isn't listed, select Add a new device manually.
  4. In the Add Printer window that opens, select Add a printer using an IP address or hostname. Then select Next.
  5. For Device type, select IPP Device. For Hostname or IP address, enter ipp://10.11.12.13:631/printers/Panasonic_KX-MB2138CN. Then select Next.
  6. Select Finish.

Linux

Generic

Set up CUPS, then run the following command:

lpadmin -E -p 'Panasonic_KX-MB2138CN' -m 'everywhere' -v 'ipp://10.11.12.13:631/printers/Panasonic_KX-MB2138CN' -D 'Panasonic KX-MB2138CN' -L 'SIST 1B-203'

NixOS

{
  services.printing.enable = true;

  hardware.printers.ensurePrinters = [
    {
      name = "Panasonic_KX-MB2138CN";
      description = "Panasonic KX-MB2138CN";
      location = "SIST 1B-203";
      model = "everywhere";
      deviceUri = "ipp://10.11.12.13:631/printers/Panasonic_KX-MB2138CN";
    }
  ];
}