Slashdot Mirror


Making Linux Printing as Easy as in Windows

Jonny5 writes: "In preparation for the transition from windows to a Linux based workstation, the main focus is that of peripheral compatibility. Sure Linux is rock solid stable, and has an almost totally customizable GUI, but dammit, if my hardware won't work, what's the point? ...After hearing about TurboPrint, and their claim to provide 'Printer set-up and configuration is as simple as on Windows or MacOS,' I had to rise to the challenge. LinuxLookup.com has done a full review of TurboPrint For Linux."

30 of 278 comments (clear)

  1. What's wrong with KPrint/CUPS? by Second_Derivative · · Score: 4, Insightful

    I use KPrint (part of KDE infrastructure) with CUPS... I dont think I could ask for much more, though admittedly I think you still have to set the thing up via the CUPS web interface.

    Still, it's better than using lpr/lpq and wondering what bit of the pipeline ate your document =)

  2. What I would like to see.. by brunes69 · · Score: 5, Interesting

    .. is some kind of wine-driven printer emulation layer, that would let you use windows printer driver sin Linux. Why? Because I have a printer that I have had for 4 years now, and is still nowhere near a Linux solution. Is this idea even possible? I think it would be great if it were, since I could finally use my printer!

  3. Windows isn't easy neither... by pinkpineapple · · Score: 4, Insightful

    Have you ever tried to set up a shared printer on a windows box attached to a LocalTalk network (Mac)? This is NOT easy :-(
    Granted that is not the most popular case, but you've got to admit that MS didn't make that option too obvious. Those bastards. My HP 2000NT is still printing 2 pages of PS crap at the end of each printing session ONLY from the windows box (with latest drivers and 4 days watch in hand with MS/HP tech support.)

    PPA -- the girl next door.

    --
    -- I feel better now. Thanks for asking.
  4. doesn't seem comparable to Mac or Windows by tim_maroney · · Score: 5, Insightful

    What's wrong with this picture?

    Printer set-up and configuration is as simple as on Windows or MacOS

    TurboPrint for Linux comes as a tarball containing 'install' and 'uninstall' shell scripts, installation instructions, and all the binary software.

    Yes, it's a command-line installer!

    The default printing would be in black and white, and when I want to print in colour, I can just change the print command used by the program from 'lpr' to something like 'lpt -Ptp0'.

    Yes, you have to give command line options to set printing modes every time you print with a different mode!

    And yet this gets an 18 out of 20 in the review. It's amazing to me that this late in the game, there are still so many Linux-heads who just don't get it. This is not just inferior to Mac and Windows -- it's a giant quantum leap backward from where Mac has been for seventeen years and Windows for six. Real end users don't memorize command languages.

    Tim

    1. Re:doesn't seem comparable to Mac or Windows by Suicide · · Score: 3, Informative

      I love it when people post without actually making sure that they read the article correctly.

      You do not have to give command line options to set printing modes, the author just decided it would be easier for him to enable different modes as different printers. If you simply want to change printing modes, you can use a graphical method similar to that used by Windows or Mac OS.

    2. Re:doesn't seem comparable to Mac or Windows by tim_maroney · · Score: 3, Interesting

      Either I read the article correctly or it is misleading. It says that different command line parameters are necessary for different printing modes, and that the parameters are set by the user. In order to set up his different printers, he had to change the printing command line options in each of the different printer instances. It's true that this only needs to be done once per mode and the user can then select different "virtual" printers for the right option set without re-typing the stored command line, but it does need to be done once per mode -- or else the article is false in saying that "when I want to print in colour, I can just change the print command used by the program from 'lpr' to something like 'lpt -Ptp0'". That states that the user changes the command line; it does not state at any point that using GUI options changes the command line for the user.

      Tim

  5. Printing, and then maybe fonts by Beautyon · · Score: 5, Insightful

    The next problem after printing is ironed out is the lack of a single, easy to use tool to add, temporarily disable, manage and remove fonts in any Linux setup, that makes one set of fonts (both ttf and Type 1) in a single directory available to all applications system wide, in the way that Adobe Type Manager does.

    We then need CMYK capability in The Gimp. After these are in place, it will be possible to assemble a desktop publishing suite that will have mass appeal, because anyone will be able to design and publish to QuarkXpress/Photoshop/Illustrator quality, and print the results, all in a rock solid, free alternative to Windoze and OSX, without any pain.

    --
    ATH0 Bitcoin: 1DnwFLXczVZV8kLJbMYoheUrpqHesjxrSi
    1. Re:Printing, and then maybe fonts by tim_maroney · · Score: 3, Interesting

      We then need CMYK capability in The Gimp.

      Easier said than done. Color science is still serious voodoo, and entire companies have foundered on the rock of device-specific color correction. There are now a few fairly good color management systems out there, but they're not free. Creating a good free one would involve the uncompensated labor of some talented color scientists for a few years, and guess what -- the open source ideal doesn't really exist in color science, and good color scientists with a grasp of computability are very hard to find. They'll also require several supporting programmers.

      Then, once you've got the basic system, you have to create profiles for all the color printers in the market; or, you can boost the difficulty level by an order of magnitude and try to create a general-purpose adaptive color calibration system so that users can calibrate their own printers -- which requires a color-calibrated scanner, and so merely shifts the per-device calibration cost, as well as requiring the user to have a scanner.

      It's really hard for me to see how those things could happen in an open source environment. You're probably talking an investment of at least five million dollars.

      Tim
      (former employee of EFI and Light Source)

    2. Re:Printing, and then maybe fonts by tim_maroney · · Score: 3, Interesting

      Interesting links, but they still leave open the device profiling cost, and their web pages smack of amateurism. Have there been any comparisons between their print quality and the quality of commercial color management systems? The field is littered with color management systems that never produced consistently good prints, and lacking any comparative data I'm skeptical that these two amateur projects have beat the trend.

      A Google search did not turn up comparative or review information on either project, except for this negative user review of Argyll. I did turn up this page of free color management links, but no feedback from publishers or designers on how well any of them work.

      Tim

  6. The Windows GDI by rcw-home · · Score: 5, Informative
    Windows print drivers work by accepting Windows GDI (Graphics Device Interface) commands and using them to plot a page.

    UNIX apps don't send GDI commands - they usually send postscript commands.

    So unless someone wants to write a postscript to GDI filter, that approach won't work.

    Oh, and things that need to communicate directly with your hardware (like this printer driver) may not be able to run in wine anyway.

    1. Re:The Windows GDI by printman · · Score: 3, Informative

      There's a big difference between GDI and PostScript. GDI is a very limited "draw here" type of interface, while PostScript is a full-blown language that must be interpreted in order to produce a page.

      That said, Ghostscript already provides a GDI interface, so it might be possible to use WINE with Ghostscript and the vendor print driver to produce a print driver. *However*, many Windows printer drivers have their own parallel/USB drivers, so it may not be possible to do this within WINE (maybe VMWARE, tho)

      --
      I print, therefore I am.
  7. CUPS by Enahs · · Score: 4, Informative

    Even on Debian, it was pretty much point-and-click for me...fire up a web browser, point it at http://localhost:631, click on "Manage Printers", click "Add Printer," enter a superuser name and password, and follow the steps from then on.

    It really is that simple, unless you've got a distro that has a weird installation of CUPS.

    Heck, on Mandrake boxes, one can often have the printer autodetected, and the installer can often (in my experience) choose the correct driver.

    --
    Stating on Slashdot that I like cheese since 1997.
  8. Same kind of problem I have been having... by Lostman · · Score: 3, Interesting

    Sure Linux is rock solid stable, and has an almost totally customizable GUI, but dammit, if my hardware won't work, what's the point?

    I set up a windows xp box for someone the other day. It was QUITE an upgrade from their old 133 mhz computer -- they were excited that all their programs will run SUPER FAST and that their printers/scanners/etc will be OH SO nice...

    ... and then we find out that most of their software WILL NOT RUN under XP (yes even by using compatibility mode) and that they will have had to have gotten a new scanner and printer because they wont work either.

    Now I'm sure that windows xp has changed QUITE a few things but come on... they have used winxp for a bit now to see if they can put up with it.. they now want me to install windows 98 on there... quite an upgrade (if you ask me)...

    Now before you say "Put them on Linux!" -- get real.. would you put your mother-in-law on linux --> knowing you dont want to put up with her "Whats this? BASH? Is this a joke??"... feh on them all..

  9. Why not Lexmark? by Bowie+J.+Poag · · Score: 5, Informative



    In my experience, Lexmark has wonderful Linux support for its products. $79 at Best Buy got me a very high quality 1200dpi inkjet printer (the Lexmark Z23) with both Windows and Linux support. The Linux side actually works better than its Windows counterpart, oddly enough. It runs as a daemon process, does PostScript exactly the way it should, and the fact that its a USB printer doesn't complicate the situation either. It all just plain works, out of the box. Even has a nice graphical config utility

    Kudos to Lexmark for doing it right!

    --
    Bowie J. Poag

  10. Re:This is sorely needed by Clived · · Score: 3, Interesting

    Well, Linux is the type of operating system where you are EXPECTED to go under the hood (as the mechanics would say..*grin*). It's part of the challenge. Initially I had problems with printing on my Slackware 7.1 box. So I installed a script called apsfilter (which came along with the distribution and is available at freshmeat.net or tucows). This little beauty did everything needed to be done for my printer setup, including editing the /etc/printcap file. In my four years of running Linux, I have yet to find anything that there wasn't software regularly available on the net, and print tools such as apsfilter is just one example

    My two bits

    --
    Clive DaSilva Email: clive.dasilva@gmail.com Ubuntu 18.10 Kernel 4.18
  11. How is this different than cups + (kups | xpp) ? by Phibz · · Score: 3, Interesting

    I've recently rediscovered cups. For my printing needs, mixed unix and some windows it beats everything else hands down. It provides easy web based administration or if you're fimilar with the bsd or sysv (big bonus for me since i primarly use solaris) style command line tools it has those as well. But the number one thing that makes me choose cups overy anything else is its support for using PPD drivers. Need a driver for that freaky printer, Xerox DocuCenter 332ST in our case? Download the PPD stick it in /usr/share/cups/model and off you go. Now i can use all the features of the printer. Not just simply print to it. Eg. now i can colate, staple, duplex print etc. Couple this with kups or xpp which are "print setup" like programs that let you adjust your print settings and its almost as easy as on a mac. So aside from support for "winprinters" how is turbo print different from cups?

  12. Linux needs a standard printing API by leeward · · Score: 4, Interesting

    This is, in my opinion, one of the areas that will continue to limit the ability of Linux to be used on the desktop. The printing process is simple and flexible for a hacker, if it is a supported printer, but fails the mom test miserably.

    What is really needed is an organization with some clout to get behind an API that can be integrated into applications, with a standard, integrated menu selected printer control. Just like the Macs have had for 17 years and Windoze has had for 10? years. There have been a couple of attempts in this direction, which seem to have mostly fizzled. That is why heavyweight clout will be required to make such a thing work.

    CUPS is an improvement and a little easier to use for the printer driver installation and setup. But this does not address the user interface. This is something that perhaps Redhat, on the Gnome side, and perhaps some other organization on the KDE side, should have handled years ago. I think this is far more important than having a Gnome/KDE office suite.

    The fundamentals should be the first priority, and in an office, printing is absolutely fundamental and critical. A big enough busines can perhaps afford to hire a Linux guru to set up printing, but that should not be required and will remain a roadblock. In fairness, Windoze printer installation and setup is often no picnic either, but that is no excuse for Linux being so lame in this area.

  13. Re:Oh, Joy. by augustz · · Score: 3, Informative

    You obviously have not tried Windows 2000/XP etc.

    The simple fact is almost every printer out there works with these OS's, out of the box. That is important.

    Plug-n-play means you get a dialog box, and half the time the driver is already loaded with windows, otherwise you can use the supplied diskette.

    Users are comfortable and familiar with this system, and it work 90% of the time nowadays. I havn't had a problem recently on a whole range of systems and printers.

    Now, getting printing going under Linux is NO WHERE near that easy. Vendor supplied disks don't have drivers, and linux simply has a smaller driver base than windows overall.

    That your rather silly post got modded up indicates that most people reading slashdot don't actually have to support computer installations or havn't actually used linux to print. The fact is for things like printers which require large driver bases, Windows with its monopoly power has linux beat.

    So please, get a clue before posting.

  14. what "side"? by Anonymous Coward · · Score: 5, Interesting
    What is this "our side" you're talking about? I mean this seriously.

    "My side" wrt Linux is a place where things really ARE modular and logical. Where, if you have an extraordinary knowledge of systems and computer science as a whole, you can enjoy your time in it. Where, if something isn't working, you can change and recompile it within hours.

    Your "our side" seems to be that awful "I want Linux to be a better Windows than Windows!" garbage. Here's some advice: Linux is not Windows, and Linux will never be Windows. It will never be worse than Windows; it will never be better than Windows -- IT WILL NEVER BE COMPARABLE TO WINDOWS. If you want something like Windows, use Windows. If you want something kind of like Windows but different, use Windows. If you want something better than Windows -- sorry to say it -- you're going to have to live with Windows. LINUX IS NOT WINDOWS.

    And why on Earth would you be trying to "win over" someone to "your side"?! Can you even THINK of anything more dishonest? Linux is not Britney Spears; it is not a Happy Meal. If people use it, it's because they want a free Unix-like operating systems, they've done their research, and they WANT to use it. It's not because they've been tricked into something (sorry -- "won over"), so that when they finally do try out Linux, they're horribly disappointed at how un-Windows-like it is, and hold some kind of great resentment towards it.

    Look around the web. How many "Linux sucks" posts and websites do you find? A LOT. Is it because Linux actually sucks? Not likely. It's because some "helpful" friend tried to "win them over". They probably said something like "if you're tired of Windows crashing all the time, try this other operating system called Linux". They try Linux, expecting it to be better than Windows, and SURPRISE SURPRISE find out that it "sucks". If you use Linux expecting it to be Windows, guess it, it sucks donkey balls. Not just any donkey balls either -- big ones. LINUX IS NOT WINDOWS. DON'T PRETEND IT IS. AND FOR THE LOVE OF GOD, FOR THE GOOD OF HUMANITY AND COMPUTER USERS EVERYWHERE, DO NOT "WIN OVER" SOMEONE EVER AGAIN.

    1. Re:what "side"? by kitts · · Score: 3, Interesting

      Woo, someone got your panties in a bunch.

      "My side" wrt Linux is a place where things really ARE modular and logical.

      "Logical" how? It may seem logical to some to have the sum of an operating system be a massive collection of different parts, but look how long it's taken for there to be any sort of standardization with Linux because of it. Meanwhile, most people would tend to think that it would be "logical" to locate all main administration tasks in one umbrella, and subdivide from there.

      Your "our side" seems to be that awful "I want Linux to be a better Windows than Windows!" garbage.

      My side is the same side as yours, my anonymous little friend (missed karma points, too -- should've posted under your own steam). I just want to see the operating system be the best that it can be, and that sort of thing only gets accomplished with more work and more eyes criticizing it.

      And there's nothing that says that modularity has to come at the expense of user-friendliness -- but unfortunately, historically, that's been our case.

      If people use it, it's because they want a free Unix-like operating systems, they've done their research, and they WANT to use it.

      Oh. Well, just in case you care, I started using it because I wanted an alternative to Windows. Didn't know a damn thing about Unix beforehand, and I was really happy with what I got. I still see some shortcomings -- the topic of this discussion being one of them -- but on the whole I think the OS is definitely worthy of trying to win over my friends, many of whom are growing skeptical at Microsoft's business practices and the crappy OS they put out.

      LINUX IS NOT WINDOWS.

      Now, to me, this sounds like rationalizing one's way into an excuse not to grow and evolve. One might as well start this sort of argument regarding different kernel versions. Linux today is not the same OS as it was last year, nor is Windows today the same OS as it was last year. That there's some convergence in the tasks that the two OS's perform is not pure happenstance. The two don't exist in a vacuum. To not try to steal the best aspects of a competitor is silly, to justify it because it rocks your comfort level is at best willfull ignorance, at worst dangerous.

      --
      -------------------------------------------------- ----
      charlton heston is more of a man than yo
  15. Printerdrake by MicroBerto · · Score: 3, Interesting
    I don't ever print much, so when I read these threads, I decided to try setup my mama's shared printer upstairs. She's got an HP PSC 500 (multifunction printer, doubted it was even supported).

    Loaded up printerdrake in my Mandrake 8.1 installation.

    2 minutes later, I run upstairs to find see the printer goin to work on a perfect test page!

    Mandrake rules, kids. No need to spend 20 dollars on anything else.

    --
    Berto
  16. We don't really need this! by xise · · Score: 3, Interesting

    All thats lacking for linux printing is the knowledge of whats avaliable, check out linuxprinting.org As a summary if you use Redhat use printtool, suse have there own setup in yast, Mandrake probably have something too, for debian or most other distributions use aps though as with most setups you need ghostscript(for postscript conversion) and a printer spooler such as lpd or lprng. Never used it but CUPS is supposed to be easy to use and of course you could just buy a postscript printer. I don't see why this commercial program is needed, use whats out there and free as in beer and speech!

  17. To all you CUPS advocates out there... by SCHecklerX · · Score: 5, Informative
    ...Just make sure you set
    PreserveJobHistory No
    PreserveJobFiles No
    in your /etc/cupsd.conf, or your cupsd process will get HUGE over time!! Mine grew to over 17 Meg on my own box. Sheesh!

    Also, make sure there are no spaces after the 'No's. The first time I tried configuring this, I had a space after the word and the braindead parser couldn't recognize the option because of it(not sure if they've fixed it in the newer versions or not)...so I swore for a couple hours before actually checking my syslog as to why the damned thing kept ignoring the option :)

    The GUI should let you purge completed jobs, IMNSHO. For a basically single-user system, it's best to just disable those two options, unless you are into checking your /var/spool/cups directory on a regular basis (I have better things to do with my time)

  18. Re:CUPS by Jeffrey+Baker · · Score: 3, Interesting
    I had some problems getting CUPS setup on my Debian installation because it wasn't perfectly clear what packages to install to get everything working. But, after I poked around in dselect for a while, I figured it out and once it is running, CUPS is a breeze.

    My perception is that most people have problems not with printing, but with their printer. People buy printers that only work with oddball command languages or expect the host CPU to do absolutely everything and send them raster lines. Whem I am asked about these marginal printers at LUG meetings and installfests, I advise people to get postscript or pcl/hpgl printers. These are standard printer languages. I have never seen a printing situation that postcript couldn't handle.

    But people still buy these cheapo printers and when they find out that Linux mostly supports elegant, standard printer interfaces they jump directly into "Linux sucks" rants.

    One way to convince these people to buy "real" printers is to point out that a printer with some specialized driver might not be supported in the future. Suppose the manufacturer made a driver for printer yzx-ii for Windows 3.11. They discontinued the printer in 1994 but they still released a driver for Win95. They updated their driver for Win98, but they never did bother porting it to WinNT. Now they don't support Windows 2000 or XP, and you can't expect them to keep writing drivers for printers they last sold eight years ago.

    Now look at the alternative case. Instead of yzx-ii you layed out a little more cash for a postscript printer. This printer is going to work with any past, present, or future operating system until the hardware falls to pieces. The buyer of a postscript (or pcl) printer never has to worry about printer drivers. He's got a postscript printer! It's just like HTML, TeX, and so on: the standard is out there, you can't kill it, and it will be supported for eternity.

    My printer is an Apple LaserWriter II NTR, which I found in the trash. It has a postscript processor, so I can use it with Linux and like operatings systems, Windows [3,95,NT,XP], OS/2, and vintage of MacOS, and so forth. This printer was introduced in 1992 and it still works great, without software problems of any kind. I'll never need a new "driver" for it because I already have the postscript printer description file and I don't believe the hardware is changing! If I had paid money for this printer, I would consider it a wonderful purchase.

    (end of rant)

  19. Re:Oh, Joy. by nmos · · Score: 3, Informative

    " You obviously have not tried Windows 2000/XP etc. "

    Or maybe he's just used NT/95/98 more. What is the Win2k/XP installed base? 10%?

    "The simple fact is almost every printer out there works with these OS's, out of the box. That is important."

    I've run into just as many printers that don't work right under Win2k as under Linux.

    "Plug-n-play means you get a dialog box, and half the time the driver is already loaded with windows, otherwise you can use the supplied diskette. "

    At which point you either use the drivers built into Windows and give up 2/3 of the printer's feature set or you use the drivers that came on the cd only to find that they are badly broken.

    "linux simply has a smaller driver base than windows overall."

    Not really, remember that a single driver on Linux may work with dozens of different printers. The actual number of printers supported is probably pretty similar.

    "That your rather silly post got modded up indicates that most people reading slashdot don't actually have to support computer installations or havn't actually used linux to print."

    Frankly I think you either arn't all that experienced yourself or your convienently forgetting about the times Win2k has failed to work right with a printer.

  20. The Problems with Printing in Linux by Greyfox · · Score: 3, Insightful
    The problems with printing in Linux (or any other UNIX for that matter) go beyond simple setup and configuration of the printer. Until just recently, setup and configuration have been the only problems that anyone has addressed.

    I used to maintain printer drivers for Windows and OS/2, and the implementation of the print subsystem on those operating systems is one of the very few areas where I've thought the design was more elegant than any UNIX solution I've seen. I suspect this is due to the modular nature of UNIX, which in this case turns out to be a weakness.

    In a nutshell, the OS/2 and Windows kernels export an interface that you write functions to when you're writing a driver. This interface covers page rendering as well as printer set-up and configuration. That means anyone who wants to render a page need only call those functions and doesn't need to worry about what printer he's sending to. Integration of feature selection into your application program is also much simpler and takes advantage of the code written by the printer driver programmer.

    The down side to all this of course, that since the GUI subsystems of OS/2 and Windows ran in kernel space, a poorly written printer driver can easily crash your entire system.

    Only recently have efforts been made to address the rendering side of the problem with the Xprt extension to XF86 and the toolbox-level gnome-print library (I assume the KDE people have something similar as well.) While these efforts are good, a printer manufacturer is not likely to put the effort into supporting all of them. This means that we will continue to write our own rendering code to render into PostScript.

    Ghostscript seems to have become the de-facto printer driver for Linux and the only real complaints I have about it are that it's much harder to integrate printer features into your program when Ghostscript is in use. I ended up trying to get around these problems by writing an incomplete PPD parser for the printers I was working with. This parser generated information files about the printer features and a lpr replacement program would present these features to the user. We did a pretty good job of making a GUI installer and front-end for printer feature selection, but it only supported our printers.

    Technically it wouldn't be a very difficult problem to address these issues and make everything seamless for the programmer and the users. Politically it's rather more difficult though. This is one area where you're going to need a single standard if you want the printer manufacturers to write drivers for you. There needs to be one render interface, ideally at the X level so the toolkits can make use of it and one feature communication interface so that various programs can query for printer features. Queueing and spooling is already pretty well addressed.

    --

    I'm trying to teach myself to set people on fire with my mind... Is it hot in here?

  21. Hardware is not the problem of linux printing! by tempfile · · Score: 3, Insightful

    The real problem and reason why printing in Linux, esp. from the GUI, is a pain in the behind is that no distribution has a working system-wide font configuration mechanism where X and gs can painlessly access the same fonts (Recently I stated that Debian does, but it still has problems with font names with spaces in them, rendering it practically useless because many common truetype fonts have spaces in them) and the lack of a working printing toolkit. I don't know about libgnomeprint, but Qt/KDE's printing is horribly, horribly broken.

    This leads to the dilemma that GUI application developers not only have to write routines to display their data on screen, but also ones to bring everything to Postscript. Web browsers are a prime example where the screen display is complex enough so that there's no more resources left to reinvent the wheel in Postscript, leading to Mozilla's broken printing.

    The final problem is the lack of Unicode support in the ancient Postscript/Type 1 font standard. The introduction of the Euro made this painfully obvious for European Linux users.

    Before we look at the hardware, we need a reliable printing library that surpasses Postscript's stone-age encoding, rendering out every single character. I believe libgnomeprint wants to do that, but I haven't been tracking it. We need a printing system that does not rely on printer drivers that are compiled into the PS rasterizer (lpr, ugh!) or has other quirks (cups is a step forward with its modularity and two behind with its own rasterizing program, effectively introducing a separate app for PS->screen and PS->printer). The hardware support is already here, but what use is a fast car if you can't get the door open? (Don't you just love metaphors?)

    1. Re:Hardware is not the problem of linux printing! by printman · · Score: 4, Informative

      Um, CUPS does not use "its own rasterizing program", it uses GNU Ghostscript with the "cups" driver which outputs a generic raster stream that can be configured as needed by the printer driver (i.e. the driver can say it needs a 6-color image at 720 DPI, and Ghostscript will generate it through the cups driver)

      We include a version of Ghostscript with CUPS because 1) most non-Linux operating systems don't come with Ghostscript pre-installed, and 2) the standard Ghostscript is bug-filled and doesn't come with that all-important cups driver compiled in. See the ESP Ghostscript project on SourceForge for a more generic replacement that can be configured with the standard Ghostscript drivers + cups.

      CUPS also provides an image file RIP which provides faster/better image printing than is possible with Ghostscript.

      Similarly, the GNOME folks could provide a rasterizer for GNOME metafiles that would be used for printing - the metafiles are generally a more compact representation than PostScript, and would provide faster printing for clients in a network configuration.

      In short, it is the very design of CUPS that will allow it to support a wide variety of devices and applications today and in the future.

      --
      I print, therefore I am.
  22. The power of the Dark Side by fm6 · · Score: 3, Interesting
    For once we have to give Microsoft its due. The main reason setting up a printer on is easy (or more precisely, easier than the alternatives) is that MS has gone and written (and, more importantly, tested) drivers for every printer imaginable. Granted these are not always the most reliable or most feature-complete drivers available, but most users find them adequate. Indeed MS does a better job of tracking out-of-production feature sets than HP does!

    Open Source advocates assume that Open software will always be better, in every sense, than Closed, because so many people are examining the source code. It's true that objective source code scrutiny does make better source code. But there's more to good software than absence of code errors. You need testing. Regression testing, usability testing, stress testing... MS can pay for all this because of their huge revenue stream. Development models that attempt to compete with Microsoft's closed model forget this at their peril.

  23. The problem isn't just command line by Ukab+the+Great · · Score: 4, Insightful

    It doesn't really get much better if the "linux-heads" try to put a GUI front-end on things. Widget layouts are often poorly thought out and often covey contradictory or ambiguous choices for configuration. These sad attempts at usability are even praised more highly than the supposedly "easy" command line stuff. The real problem is that the linux hackers designing interfaces in the linux community get sugar-coated reviews of their stuff by other linux hackers who are far too eager to say something is usable out of their ignorance of user interface design and out of their belief that anything under GPL is inherently superior to anything proprietary, interface or otherwise. As a personal experience, I once talked to a person who created a linux installer for a very prominent linux distribution and I mentioned a few of the dozens of confusing or ambiguous or inconsistent things I found in its interface. He couldn't understand what the problem was: he thought I thought that it "wasn't pretty enough". And yet die-hard linux zealots who remember vi commands before they remember their wife's anniversary claim that this interface is perfectly easy and that this installer is perfectly ready for the desktop.

    The few people with interface design knowledge who point out these problems are usually called "whiners", and are told to shut up and code their own improvements.

    Putting it bluntly, the linux development community is doing more to kill linux on the desktop than Bill Gates ever could. Microsoft realizes this, and that's they have never considered linux on the desktop a threat.