Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CUPS Server compiled for Windows?

Tags:

windows

cups

Is there a version of the CUPS server available for Windows? Looking at the CUPS source code it seems it is ready for Visual Studio compilation, but I did not find any trace of an actual supported package. I'd like to set up a CUPS server on Windows so that I can print form Linux/MacOSX/Win clients to printers I set up on this server.

like image 490
Peter Illes Avatar asked May 16 '10 17:05

Peter Illes


People also ask

Can you use CUPS on Windows?

I found the easiest solution to add a CUPS printer to Windows is to manually connect to it via IPP and the http address. IPP support has to be enabled in the Turn Windows features on and off dialog. Sharing via Samba works well too, but is a little more difficult to set up on the server.

What is Cupsd service?

cupsd is a type of scheduler for CUPS (Common Unit Printing System). It implements the printing system on the basis of the Internet Printing Protocol(Version 2.1). If no options is being specified on the command-line then the default configuration file /etc/cups/cupsd. conf will be automatically be used.


1 Answers

I've got a new answer for you:

  1. Since some time there is a project called ippsample on GitHub. It's slowly approaching a mature version 1.0 release.

  2. Here are the first two sentences of given as self-description in the mandatory README file:

    "This code provides sample implementations of IPP Clients, Printers, and Proxies. It is largely based upon the CUPS software, with substantial changes to the ippproxy and ippserver implementations to make them more general-purpose and configurable." (my emphasis)

  3. This project is hosted by the ISTO Printer Working Group (PWG), the same industry organization which develops and promotes the IPP as a general standard.

  4. The ippserver, ipptool, ippfind, ippproxy and ipptransform components of the IPP Sample project together make up for a standard-conforming IPP Everywhere implementation, covering the client as well as the server side of printing.

  5. The GitHub code for IPP Sample project is maintained by the very same Mike Sweet who also develops CUPS -- so it's the real thing.

  6. Yes, it compiles and works nicely on Windows, and there are a bunch of .vclxproj and .sln files available to make the build process with MS Visual Studio as smooth as possible.

  7. Yes, the IPP Sample code is working and can print to a CUPS server (or receive print jobs from there) running on macOS or any blend of Linux.

  8. No, this is not yet a fully-blown CUPS server for Windows which can serve as a drop-in replacement for a Windows print server. It does not have with ALL the features which would be required.

  9. But if you want to create such a beast:

    • this is the place were you would have to poke around first;
    • this is were you possibly could fork the code and start adding functionality to get where you want to go.
  10. Oh, and did you know that Apple recently changed the license conditions for CUPS and made it more permissive, moving away from GPL2 to Apache 2.0 licensing?

  11. You have never heard of "IPP Everywhere" before? It is the future of "driverless" printing.

  12. Never heard of "driverless printing"? A slightly modified (and stripped down) version of it already implemented as "Apple AirPrint" for iPhone and iPad devices.

  13. The current implementation of the CUPS-based printing stack includes new pieces of code in the cups-drivers project which recently moved to GitHub. This new code implements IPP Everywhere functionality.

  14. This cups-filters project is under the stewardship by The Linux Foundation's OpenPrinting department ever since Apple handed over these parts of the original CUPS source code to them when they became no longer useful for macOS but were still important to Linux.

  15. What are the basic ideas of driverless printing then?

    • Have the devices automatically announce their presence and their type of service in the local network. Use the IETF standard protocols mDNS and DNS-SD (which are implemented in macOS under the name of "Bonjour" and in Linux as "Avahi") to take note of the offered services.

    • Tell the print clients that they can use the IPP protocol in order to get a query response when they make a get-printer-attributes request. This request will tell them which set of print options the devices support. The print clients can then show an exactly tailored print dialog to show to the printing user a selection of choices. The print client will also be told what job submission formats each devices supports. This MUST be either PDF or a simple raster format called "PWG-Raster".

    • So... where would you need a specific "printer driver" in such an environment? Everything and everyone can create PDF documents nowadays. Check! No need for a device-specific conversion to any other print language.

  16. Are there printers which support IPP Everywhere already? Oh yes, look here -- they are all said to be fully compliant with the standard:

    • List of IPP Everywhere printer models
like image 62
Kurt Pfeifle Avatar answered Sep 29 '22 14:09

Kurt Pfeifle