jump to navigation

Print to PDF using cups-pdf March 23, 2006

Posted by Carthik in ubuntu.
trackback

I have been looking for a solution to print any file to pdf using a pdf printer driver.

cups-pdf is the package I was looking for apparently. But unfortunately, this takes just a little setting up.

Install cups-pdf by using:
$sudo apt-get install cups-pdf

Edit /etc/cups/cupsd.conf and change the line that says:
RunAsUser Yes
to
RunAsUser No

Restart cupsys:
$sudo /etc/init.d/cupsys restart

Add a new printer (System->Administration->Printing) selecting the “Local Printer” “PDF Printer” option. In the next step choose “Generic Printer” and then used the “Postscript Color Printer (Ver 3)” driver.

Now you should be able to print to pdf by selecting the newly setup printer.

Cribs:
1) The output .pdf files are stored in your “Home” directory. I can’t find a way to change this output directory to something of my liking
2) The output files are named with pre-defined names (job_8-untitled_document.pdf is an example). It would have been nice to select a name while printing.
3) One shouldn’t have to edit the cupsd.conf file to enable printing! (I found that I might have to edit the configuration file by visiting the homepage of the package, and trying out what I did). At the very least, the README.Debian file for the package should have informed me of the need to edit the configuration file.

Comments»

1. Andre - March 23, 2006

I use a somewhat different approach. When printing I substitute kprinter for lpr. This pops up the KDE print dialog, which includes an option to produce PDF. It doesn’t matter that I use GNOME instead of KDE, it still works fine. You need to install the kdeprint package to do this.

2. ubuntonista - March 23, 2006

Andre, nice solution! Had I known of that, I peobably wouldn’t have spent the time I did configuring cups-pdf.

3. Marius - March 23, 2006

Just tried this, and the generated PDF is unreadable, the font seems to be messed up (way too small). Also, the pdf file name is strange, the print dialog box (in Firefox) says one thing and then on the filesystem there is some long strange file.

I am using Breezy. What version of Ubuntu did you use?

4. manuel - March 23, 2006

first i’d like to thank you for your great blog – it’s always interesting to read and helps me a lot with my “newbies-day-to-day” problems…keep up the excellent work 🙂

but i have some problems getting andre’s solution to work – i installed kprinter, but what are the next steps? when the print dialogue pops up there is no option for printing to pdf…what else do i have to do?

thanks,
manuel

5. Andre - March 24, 2006

Manuel,

I’m using version 3.4.3 of kdeprint (the version in Breezy). The printer pull-down lets me choose which printer to use. One of the printers is “Print to File (PDF)”, which then lets you enter the file name.

6. Stephen Paulger - March 31, 2006

I found this very useful, thank you. Now if I could figure out a way to share the pdf printer to make a network PDF printer.

7. Kumbakara - April 8, 2006

Good post..helped me to get cups-pdf installed on Ubuntu 5.10!
Editing the cupsd.conf..and restarting…a confusing step to take in the overall good Gnome/Ubuntu desktop support for adding printers in general…
Anyway..tnx

8. Brian Dailey - April 28, 2006

Another (easier for the rare occasion) way is to use the default Ubuntu install, choose the ‘Postscript/default’ printer, then print to a file. Then in terminal use ps2pdf to convert the postscript document into a PDF.

9. Ricardo Yanez - May 6, 2006

cups-pdf didn’t work right with firefox until I installed xprint (Breeze Badger).

10. Casey Watson - May 9, 2006

I followed these steps, but I had to use the “Postscript Printer” instead of “Postscript Color Printer (Ver 3)”. I still get color though.

Also the pdfs are placed into ~/PDF on dapper.

11. Allan - May 13, 2006

I cheated nd printed to a file as pdf, then run the following shell script every minute or so, saving the pdf version to workarea/pdf:
#!/bin/sh
# -*- shell-script -*-

OLD_WD=”${PWD}”
cd ${HOME}/workarea/pdf/
for f in ${HOME}/*.ps
do
if [ -f “$f” ]; then
RES=$(tail -n1 “${f}” | grep -q ‘%%EOF’ ; echo $?)
if [[ ${RES} -eq 0 ]]; then
ps2pdf14 “$f” && rm -f “$f”
fi
fi
done
cd “${OLD_WD}”

12. evershade - May 25, 2006

unfortunately i’ve had no luck with either the blog method or the kprinter method on dapper.

but it looks like you can change the output location in:
/etc/cups/cups-pdf.conf

13. Simon - May 27, 2006

As one can read on CUPS-PDF the RunAsUser option is not anymore awailable in CUPS version 1.2 (which is used in UBUNTU 6.06 dapper drake).

It says on the amove mentioned webpage that: “Starting with version 1.2.0 CUPS implements the “RunAsOption” no longer. In order to ensure CUPS-PDF is running with the required root privileges you have to make ‘root’ the owner of the cups-pdf backend and set the file permissions of the backend to 0700 (root only).”

the cups-pdf backend is at /usr/lib/cups/backend/

I’ve tried to sudo chmod 0700 cups-pdf but without success. Is there anyone who know who to deal with this?

Simon

14. Simon - May 27, 2006

Ok. Finally found out how it works (here):

Simply do a “sudo chmod +s /usr/lib/cups/backend/cups-pdf”.

Good luck

Simoin

15. Brian - June 12, 2006

For those who like everything in once place, following method worked great for me on Dapper – Thanks for the tips!

In a terminal:
sudo apt-get install cups-pdf
(You can use synaptic to install cups-pdf too if you like)

sudo chmod +s /usr/lib/cups/backend/cups-pdf

In Gnome:
System > Administration > Printing
New Printer
Local Printer & Use A Detected Printer click on PDF Printer
Choose “Generic” as the manufacturer
Choose “postscript color printer rev3b”
Leave the driver set to “Standard (suggested)”

Too bad you can’t choose a name & location for it to save too, but at least it’s in a sensible location (~/PDF)

Too bad this isn’t enables by default, I love KDE’s built-in PDF printer.

16. Tobias - June 12, 2006

In my /etc/cups/cups-pdf.conf on my debian box I can find this:
### Key: Out
## CUPS-PDF output directory
## special qualifiers:
## ${HOME} will be expanded to the user’s home directory
## ${USER} will be expanded to the user name
## in case it is an NFS export make sure it is exported without
## root_squash!
### Default: /var/spool/cups-pdf/${USER}

Out ${HOME}/PDF

Changing the value should help. There are also options for changing the output name. Without having changed anything in my cups-pdf.conf file I get the webpage or document title as pdf title.

17. Deborah - June 21, 2006

Thanks, Brian, for the pdf printer info! Worked like a champ!

18. HeXonX - June 24, 2006

I’m Running Dapper and followed Brian’s example and have perfect PDF printing. Thanks for the insight. I really don’t mind that it creates a PDF folder in your home directory. This keeps me organized, besides I’ve created a sym link to it in my Documents folder.

19. Russell - June 26, 2006

This will not work to use pdf printer for OpenOffice Impress handouts.
use instead:
1) install cups-pdf
2) run from cli /usr/lib/openoffice/program/spadmin
3) click “New Printer”
4) select “Connect a PDF converter” -> Next
5) select “The default driver” -> Next
6) for command line select line beginning with ” /usr/bin/gs…”
7) change “PDF target directory” to suit -> Next
8) Change the name or Finish
9) if OO is open then close it, then reopen OO
10) open Impress file
11) to print to pdf: File -> Print
12) select printer name “PDF converter”
13) check print to file
14) click “options” -> in “contents”, check “handouts”, clear the rest: click OK
15) in print dialog “OK”
16) select file name and location -> “OK”

thats it!

20. Gustavo Vega - July 26, 2006

OpenOffice can export directly to pdf format. It’s not necesary to use cups-pdf printer generated.

21. Andreas - July 31, 2006

Thanks Simon – you have the solution of my Problem . . .

🙂

22. Noble Baker - July 31, 2006

If two web pages have the same title, printing the second one will overwrite the first. the following setting in /etc/cups/cups-pdf.conf will prepend a job number on the file:

### Key: Label
## label all jobs with a unique job-id in order to avoid overwriting old
## files in case new ones with identical names are created; always true for
## untitled documents
## 0: label untitled documents only, 1: label all documents
### Default: 0

Label 1

23. henk - August 2, 2006

help!

I can’t choose kprinter! The ONLY options I get when clicking on properties is page size, color or grayscale and margins. No other options whatsoever!

24. triple DDD - August 13, 2006

Hi
I thought I would add my two cents. At least when you are browsing in Firefox you can save to a pdf by simply clicking the “print to file” option in the print dialogue window ( I hate that word – window!). It provides an empty area for typing a title and magically saves it as a pdf. I am using Kubuntu, “kdeprint” was installed as part of the system. I am assuming that it is the same in the Ubuntu system as well. I hope this helps.

Dave

25. Robertjm - August 14, 2006

Thanks Brian! That worked great and I didn’t have to edit the CUPS file at all. Now if there was a way to rename the ugly name it installed as to simply Cups-PDF, or something like that!!

26. Peter Anderson - August 16, 2006

Thanks everyone,

However, there is always a ‘kill-joy’; all these PDF printing options seem to work well with the limited testing I have done EXCEPT for THIS page! When I try to print THIS page (either as a PDF, a file or to hard copy using my laser printer I only get two pages of which only the first has any content. Printing stops after the first line of “3. Marius – March 23, 2006…

Very strange!

But thanks anyhow for the great ideas.

Regards,
Peter

27. Mac 2 Ubuntu » Ubuntu does everything my Mac did but better! - September 1, 2006

[…] install cups-pdf sudo chmod +s /usr/lib/cups/backend/cups-pdf Go to System > Administration > Printing Double-Click “New Printer” Use the detected PDF Printer and click Forward Select Generic for the manufacture and click Forward Give it a more informative name such as “Print-PDF” (sorry, no spaces) and click Apply Now when you print, select your “Print-PDF” printer, and print! Your PDF will be saved in the PDF directory in your Home directory. Thanks to Brian’s comment on this ubuntu blog entry. The body of this post does not contain up-to-date directions. Follow mine! […]

28. Ted Roche - October 3, 2006

A minor correction to the original post: the URL for cups-pdf is:

http://www.physik.uni-wuerzburg.de/~vrbehr/cups-pdf/

Great post! Thanks for the tips and thanks to the commenters for the help!

29. Sergio Ruiz - November 1, 2006

Thanks Russell. PDF export didn’t work for me as I was using a PostScript font, now it is perfect with your solution… THANK YOU!!!

30. Biosphere.silene » Blog Archive » Add a PDF printer - November 17, 2006
31. Craig’s Blog » cups-pdf installing - November 17, 2006

[…] The following steps are by Brian for cups-pdf version 1.2 at – https://ubuntu.wordpress.com/2006/03/23/print-to-pdf-using-cups-pdf/#comment-2233 […]

32. krishan - November 21, 2006

Responding to Brian (comment 8), one can use ps2pdf directly for the print
print instead of using the default ‘lpr …’

choose the ‘Postscript/default’ printer -> properties

Then, in the print command box, use the following command

ps2pdf – > $HOME/mozillaprint_$$.pdf

this creates a pdf file in your home directory called mozillaprint_$$
the $$ means to tag in the pid of the ps2pdf process, which is unique every time
you run it. Which means you get a different pdf file for each job.

The downside of this method is that whenever you press the print button, you
ALWAYS end up with a pdf file.

krishan

33. denise - December 20, 2006

Thanks for info.

I always seem to have a problem printing from WordPress sites in Firefox. For example, I printed this blog page using CUPS-PDF. Two pages were created, but only the first had the text block. This text block bleeds off the page cutting off the text at the third comment.

No text appears on page two.

Anything that can be done about printing WordPress pages such as this page?

34. bubu - January 1, 2007

Instead of
sudo chmod +s /usr/lib/cups/backend/cups-pdf
use
sudo dpkg-statoverride –update –add root root 4755 /usr/lib/cups/backend/cups-pdf
This will ensure correct permissions even after update.

35. JMarie - February 1, 2007

I have exactly the same problem as Denise and Peter Anderson; THIS page does not print entirely with cups-pdf: only the 1st page prints and the 2nd is blank.

36. Making PDFs with free software - PureTalkForum.com - Talk about anything community, arcade & more! - February 10, 2007

[…] versatile as PDFCreator, it provides the base functionality needed to be effective. Check out the Print to PDF using cups-pdf blog entry for installation and usage tips; read through the comments for some additional use scenarios and […]

37. RinkleFree.com - Sam Daoud’s Personal Website » Making PDFs with free software - February 12, 2007

[…] versatile as PDFCreator, it provides the base functionality needed to be effective. Check out the Print to PDF using cups-pdf blog entry for installation and usage tips; read through the comments for some additional use scenarios and […]

38. Drakke - February 13, 2007

The problem printing this page (and some others) is not cups-pdf. I can print all the pages (about 6) using cups-pdf and Konqueror; with Iceweasel 2.0.0.1 (Firefox for non-Debian distros) was imposible for me. I thing that maybe is some strange behavior in the way that firefox parses CSS.
If you try the print preview, you can see than the frame that had the “content” don’t break at the end of the page, it continue, go on behind of the next page… I don’t know if the problem is only in this version or only in the Debian distro…

P.D. My english is bad, so I’m sorry if I write something strange o wrong 😉

39. Ike Hall - February 27, 2007

Brian, your solution worked brilliantly. I’m running Ubuntu Edgy. Thanks to everyone for their suggestions!

40. dmom - March 4, 2007

Thanks for this !

I followed the steps you outline here generally, but I used the Synaptic GUI and the CUPS web interface, and didn’t change system settings (run as user). These were all there already on a default install of Ubuntu (6.10/Edgy).

I think this might be a little more friendly for some people, if so, you can see my description and some screen shots @ http://cuasan.wordpress.com/2007/03/01/print-anything-to-a-pdf-document-in-gnulinux/

Thanks again for outlining this !

41. ‘Print’ anything to a PDF Document in GNU/Linux « An Cuasán - March 4, 2007

[…] however, to find that Envince wouldn’t output Postscript to PDF. A quick search showing this made me happy again. It’s a more elegant solution in that it  goes directly to PDF rather […]

42. shiva - March 11, 2007

OK I can find the .pdf in the ~/pdf directory. But my printer (Canon S330) doesn’t churn out a hard copy. It otherwise works out well from OpenOffice

43. Wydruk do pdf przy użyciu cups-pdf « Bazyl 2.0 - March 18, 2007

[…] Posted marzec 18, 2007 Poradnik ten jest praktycznie wiernym tłumaczeniem tekstu ze strony ubuntu.wordpress.com , poprawionym na moje własne […]

44. Maurice Fellay - April 4, 2007

Hey, regarding where to put the pdf file, on the print screen (besides the printer selected) there is a check mark to print to a file, using that option it is quite easy to tell cups-pdf where to send and how to name the generated PDF.

45. forum - April 8, 2007

It’s really works for me.Thanks dude.

46. Receptes Linux » Imprimir a fitxer PDF - April 11, 2007

[…] la primera pedra…).Com que no hi havia versió per a gnu/linux, vaig buscar a St. Google i vaig veure que era molt simple:En un terminal, cal cridar la següent comanda:sudo aptitude install […]

47. Pavel Chovančík | BLOG » Blog Archive » Tisk dokumentů do PDF v Ubuntu 6.06 Dapper a 6.10 Edgy Eft - April 14, 2007

[…] Ubuntu Linux Lover’s Blog […]

48. Wendell - May 2, 2007

FWIW, this solution works great in Feisty Fawn.

49. Lord Xyrer - May 12, 2007

the kdeprint solutions is cleaner and the easiest, just change the postcript/default printer command to kdeprint –stdin an it’s done, it pops out the kde printing dialogue with the option to select print to pdf file and where to save it.
Thanks a lot for this, I have been looking for it a while.

50. Creating PDF's with Free, Open Source and Commercial Apps « Linux In Novell’s East Region - May 22, 2007

[…] Another possibility in the print driver replacement side of things is CUPS (Common Unix Printing System), and in particular the CUPS-PDF module that effectively gives you a network printer that produces PDF’s on demand. Here is a link to the documentation that explains how this all works. Someone blogged about this too, nice helpful post. […]

51. Imprimir a PDF (o “Como guardar a PDF cualquier documento, pagina o imagen”) — Leonardo Andrés Gallego - June 6, 2007

[…] Fuente de la versión cups-pdf […]

52. MICHAEL PERMANA - June 16, 2007

lpadmin -x NAMEYOURPRINTER
lpadmin -p NAMEYOURPRINTER -v cups-pdf -P /usr/share/ppd/cups-pdf/PostscriptColor.ppd
cupsenable NAMEYOURPRINTER
accept NAMEYOURPRINTER

53. [Chicche] Stampa in PDF per le vostre pagine « P o l l o S k y - June 28, 2007

[…] ho trovato questo post in cui si spiega come fare: https://ubuntu.wordpress.com/2006/03/23/print-to-pdf-using-cups-pdf/ […]

54. Dave - August 1, 2007
55. Guru - August 14, 2007

Hi, I am using the PDF Converter option in the Print button to convert the Webpage to a PDF. Can anyone tell me how can i add a default name to the page that i am going to to PDF? My PDF Converter name is Amyuni PDF Coverter.
Thanks in Advance.

56. Marwan ALJu'beh - August 22, 2007

it’s also a good idea to actually replace the PDF folder in the home directory with a symbolic link to the folder where you place your pdf files… i find this a much better way than running a script…

57. JS - September 4, 2007

From Kubuntu, I did not have to change the config file. RunAsUser was not even there.

58. kill_u - September 7, 2007

Thanks

59. joypadeux - September 14, 2007

excellent it works great!!

60. bgtroll - September 28, 2007

Great new,
In the Gutsy Gabon it is installed by default 🙂 🙂 🙂 🙂 🙂 🙂
When you go to System->Administration->Printing, you can find PDF under Local Printers 🙂 :).
Tested with Firefox and it’s working – yes, there are some minor problems with some colors, but atleast is preinstalled 🙂

61. PDF creation « Azitech - October 9, 2007

[…] PDF creation All information is a summary from this article. […]

62. print to pdf « Azitech - October 9, 2007

[…] print to pdf  All information is a summary from this article. […]

63. OSX Troubleshooting: PrintJobMgr exited unexpectedly with code 105 | Rick Tech - October 12, 2007

[…] a large number of their printers are not postscript compatible. The driver bypasses the CUPS printing daemon. Locally this is fine because the driver is providing the translation. But when you throw it […]

64. Cymen - October 17, 2007

Good post! My CUPS installation is running on another server though. I run KDE so I modifed my Firefox configuration like so:

http://ubuntuforums.org/showthread.php?t=205050

But I setup CUPS to print to PDF too as a backup. Thanks!

65. DDT-MODELS - October 21, 2007

How about addressing the mess of STREAMS. And why don’t some channels show up, like mine!?

66. DDT-WEBKINZ - October 22, 2007

We wanted to clear up a misconception about the nine localized sites we launched on June 19: the content has not been “broken down” by region. All of your videos are available to everyone, no matter which site you set as your default. So even if you choose a particular country as your preference, the content available to you is still the same.

67. TvAddicted - November 22, 2007

Wow, i’m impressed. Your blog is very well structured and one can find alot of useful info here. Keep it up!

68. vaquerito - November 30, 2007

Andre. What a hack. THANK you man!!!

69. rytis - December 14, 2007

To simply make cups do what it ought after typing something like
lpr -Ppdf somefile,
First cups-pdf should be present. Then you might add a cups-pdf printer in cups configuration, and add in /etc/cups/client.conf a line
ServerName 127.0.0.1
Should work…

70. octoberdan - December 18, 2007

Now prints to ~/PDF by default. You don’t need to manually restart the service or manually install the printer. the apt-get is enough. To configure:
/etc/cups/cups-pdf.conf
I then used imagemagick to convert the pdf to jpg

sudo apt-get install imagemagick
convert ~/PDF/foo.pdf foo.jpg

71. michael - December 20, 2007

I visit the blog,I find the life interesting,and I will not be upset.

72. Daniel - December 31, 2007

To print to a specific localtion, just select “Print to File” when you print it, give him a name and select location where you want the pdf saved. Thats all. THANKS for this wunderfull and easy PDF Printer setup guide.

73. Fake - January 12, 2008

Select the print as a file option don’t create a PDF file but a PS file… even when the cups-pdf printer is selected.

74. Mime to PDF - January 30, 2008

Does it offer server-side PDF conversion like Adlib Software products?

75. jesus - April 1, 2008

hi everybody,

There’s another way, just print document to PS format and once done open it up using kpdf,once done if you go ahead and print the file it will automatically convert file from ps to pdf

76. Folder Printing - April 22, 2008

Thanks for this information.

In my /etc/cups/cups-pdf.conf on my debian box I can find this:
### Key: Out
## CUPS-PDF output directory
## special qualifiers:
## ${HOME} will be expanded to the user’s home directory
## ${USER} will be expanded to the user name
## in case it is an NFS export make sure it is exported without
## root_squash!
### Default: /var/spool/cups-pdf/${USER}

Out ${HOME}/PDF

Changing the value should help. There are also options for changing the output name. Without having changed anything in my cups-pdf.conf file I get the webpage or document title as pdf title.

77. demard - June 4, 2008

How about addressing the mess of STREAMS. And why don’t some channels show up, like mine!?

78. Greg - July 15, 2008

I have managed to share the PDF printer from my Ubuntu box to a Windows box. When adding the printer to windows, I used the following print driver
http://www.pdfhacks.com/virtual_printer/

Printing to the shared printer results in a pdf being created in the default pdf location.

79. Micheil - October 11, 2008

hmm.. I used a similar method to print svg’s from Inkscape out as pdf’s, although, I also used pdftk to burst and concatenate the files as they came out, due to it being a multi-document document.. If that makes sense.

80. Alex - February 18, 2009

Maybe you like Printruler (http://code.google.com/p/printruler/) for formatting, etc

81. Marcus - March 9, 2009

“…In my /etc/cups/cups-pdf.conf on my debian box I can find this:
### Key: Out
## CUPS-PDF output directory
## special qualifiers:
## ${HOME} will be expanded to the user’s home directory
## ${USER} will be expanded to the user name
## in case it is an NFS export make sure it is exported without
## root_squash!
### Default: /var/spool/cups-pdf/${USER}

Out ${HOME}/PDF…”

Don’t forget to create this directory in ${HOME} otherwise it will continue to fail!!!

82. Prefabrik - August 7, 2009

It is wonderful and successfully! Perfect izahing. Thanks you all.

83. гей клуб Майкоп - December 17, 2009

и всё эе: прелестно!!

84. miki - December 17, 2009

installed cups-pdf just fine and without any change to cupsd.conf it works….only that it does not ask me for a name of a document…it just puts a file in pdf folder in my home folder

85. Larry Bradley - January 1, 2010

All this terminal stuff is a totally unnecessary if you are running ubuntu 9.10 (why would you NOT be?). Open the Synaptics Package Manager, search for cups-pdf, click to mark it for installation, click apply. That’s it. As one commentor pointed out, look for your printed pages at /home/pdf. That’s all there is to it.

86. Stefaan - February 8, 2010

This all does not work for my Koala (Ubuntu 9.10) 😦
Whatever I tried

87. Stefaan - February 8, 2010

Sorry for my former message, I was to fast in showing my discourage. But now I followed, at the finally end, the wonderful advice of Larry Bradley and this finally works to have a pdf-file printer!! Thanks a lot Larry! I cannot be made easier.

88. Artem - March 1, 2010

If cups-pdf error saying “cups-insecure-filter”,
type:

sudo chown -hR root /usr/lib/cups/filter
sudo chown -hR root /usr/lib/cups/backend
sudo chgrp -hR root /usr/lib/cups/filter
sudo chgrp -hR root /usr/lib/cups/backend

Doing this solved problem.

89. Alquiler de yates - April 23, 2010

regarding where to put the pdf file, on the print screen (besides the printer selected) there is a check mark to print to a file, using that option it is quite easy to tell cups-pdf where to send and how to name the generated PDF.

90. algdfa - April 28, 2010

Subject Mfbd can not forget the experience, thank you

91. Alquiler de barcos en Ibiza - May 10, 2010

To print to a specific localtion, just select “Print to File” when you print it, give him a name and select location where you want the pdf saved.

92. Alquiler de barcos en Ibiza - May 29, 2010

Editing the cupsd.conf..and restarting…a confusing step to take in the overall good Gnome/Ubuntu desktop support for adding printers in general…

93. bayu suwarning hadi - June 9, 2010

I really successfully print with my documents but i can’t print to pdf from flash web 😦

94. Leaflet Printing - July 12, 2010

Cups-pdf works really well, admittedly there is some setting up but once you’ve done so its great.

95. BETA Weblog, educación y tecnología en Argentina - July 23, 2010

[…] posterior: También es posible agregar una impresora que cree archivos PDF, pero no es lo que yo estaba necesitando en este […]

96. rwrick44 - July 27, 2010

your nice blog post…………
Houston Website Design, Web Design Houston, Search Engine Optimization,
Optimization of a Business when coupled with a strategic plan for Website and Internet Marketing Optimization leads to better results.
thanks………

97. Ypho - July 29, 2010

I always used fpdf, but it was too limited. Will try this one.

98. rwrick44 rwrick44 - August 9, 2010

this is a good blog.
Oil and Filter Change Service, Scheduled Factory Maintenance, Engine Service & Repairs

When your Porsche, Ferrari, BMW or Mercedes Benz needs service or repairs, you want top-quality and professional work performed right the first time and done at a reasonable price. TruSpeed Motorwerks provides an alternative to the high priced automobile dealership and service facility.
http://www.truspeedoc.com/

99. e-k-o - August 28, 2010

hi,
cups-pdf works fine, but any links/hyperlinks in pdf file doens’t work. any idea?

100. porno sikiş - September 27, 2010

Good post..helped me to get cups-pdf installed on Ubuntu 5.10!
Editing the cupsd.conf..and restarting…a confusing step to take in the overall good Gnome/Ubuntu desktop support for adding printers in general…

101. sex sikiş - September 28, 2010

Thanks, Brian, for the pdf printer info! Worked like a champ!

102. Graphic Design Evesham - October 7, 2010

I agree with eko, any links that are in the pdf do not work when using cups-pdf, unless i’m doing something wrong?

test king - December 23, 2010
103. Sr. Dorothy Robinson - October 7, 2010

I’ve been struggling with the pdf thing for a good while; the pdf export in oo.org just doesn’t always do what I want, especially with Presentation. I had used cups-pdf on other computers, but somehow forgotten that this was what made the print to pdf magic. thank you!

104. Sr. Dorothy Robinson - October 7, 2010

Another note: I’m using Presentation as a DT Publisher –yes, I know it isn’t meant for that, but it is so much easier to place elements on the page than with Writer. And finding the best way to print to pdf may be the last barrier! thanks again…

105. Print to PDF using cups-pdf « Ubuntu Blog « Записки Миханика. - October 23, 2010

[…] Print to PDF using cups-pdf « Ubuntu Blog. Рубрика: C других сайтов, Linux, Новости Комментарии […]

106. arlen - December 23, 2010

ı like to free goood

107. leaflet printing - April 29, 2011

This is nice effort to get things done from conversion.Printing to pdf has been difficult to work but this post makes it done easily.

108. Sticker Printing - June 7, 2011

this post is a new information and that is certainly going to help people using cups pdf

109. דפוס - September 12, 2011

looks good i tell you

110. vodkanockers - October 25, 2011

thanks 88. worked for me updating to 11.10

111. Kvisoft - December 1, 2011

That’s good, thanks for sharing!

112. news blog - December 21, 2011

You really make it seem so easy with your presentation however I to find this topic to be really something which I feel I’d by no means understand. It kind of feels too complicated and very extensive for me. I am having a look forward for your subsequent publish, I will try to get the dangle of it!

113. Sinhala MP3 - March 15, 2012

GREAT ARTICLE..!!
THANK YOU FOR SHARING THIS..!!

114. RafaLinux » Instalar impresora virtual PDF en GNU/Linux - May 1, 2012
115. Nicholas - December 25, 2012

In the final result, we realize this metallic in addition
degrades prefer other materials for you a
variety of new ways to eliminate in which. Skype 2.
However she mentions that she was not happy and yearned for more
in life.

Phillip - January 1, 2013

Tried this in Mint 14 and installing the cups-pdf package was all you needed to do 🙂 .
The PDF printer is automatically added and configured.

116. balloons games - February 9, 2013

Hi there! This is my first visit to your blog! We are a team of volunteers and starting a new project in a community in
the same niche. Your blog provided us valuable information to work on.
You have done a wonderful job!

117. opuntia opus opuscule oquassa or ora ora pro nobis oracle oracular oral orang orange orange blossom orange pekoe orangeade orangery orangewood orangutan orangy orate oration orator oratorical oratorio oratory orb orbicular orbiculate orbit orbital orbital - July 22, 2013

I have a keen analytical vision intended for fine detail and may
anticipate complications before these people occur.

118. studio reklamy lubin - July 22, 2013

I just like the helpful information you supply for your articles.
I’ll bookmark your blog and test again right here frequently. I’m slightly sure I will be told a lot of new stuff right
right here! Good luck for the next!

119. real estate rapper real estate rapper san diego real estate records real estate records brooklyn ny real estate records california real estate records denver real estate records el paso county real estate records florida real estate records for hudson cou - July 25, 2013

I like to share information that will I have built up through the 12 months to help improve group functionality.

120. Executive Travel Ware - December 29, 2013

Heyy there! This post couldn’t be written any better! Reading this post reminds me of my good old room mate!
He always kept talking about this. I will forward this post to
him. Fairly certain he will have a good read. Many thanks for sharing!

121. NHSEO Honest Review - January 24, 2014

With No Hands SEO I have been having hundreds of high PR links every day without needing to elevate a finger, for only $77 pricey overall great buy.

122. epil.io - January 30, 2014

Hello superb website! Does running a blog similar to this take a great
deal off work? I have virtually no understanding of oding however I
was hoping to start my own blog iin tthe near future. Anyway, shokuld you have any suggestions oor techniques
for new blog owners please share. I understand this is off subjec but I simply had to ask.
Cheers!

123. kliknij aby zobaczyć źródło - February 20, 2014

Greetings! This is my first visit to your blog!
We are a team of volunteers and starting a new initiative in a community in the same niche.

Your blog provided us useful information to work on.
You have done a extraordinary job!

124. web design london - March 7, 2014

whoah this weblog is wonderful i like reading your articles.

Keep up the great work! You know, a lot of persons are looking around
for this info, you can help them greatly.

125. greymare.org - March 13, 2014

Right here is the perfect blog for everyone who wishes to understand this topic.
You know a whole lot its almost tough to argue with you
(not that I personally would want to…HaHa). You definitely put a fresh spin on a topic
which has been written about for years. Great stuff,
just great!

126. http://oo-gierkach.pl - April 12, 2014

It’s actually a nice and helpful piece of info. I’m happy that you just shared this helpful information with us.
Please stay us up to date like this. Thanks for sharing.

127. دانلود فیلم - May 20, 2014

I have got read some great products listed here. Absolutely benefit book-marking to get returning to. I ponder just how much hard work you place to create this type of superb insightful web page.

128. Jill Rivas - June 27, 2014

Good ideas very helpful. I was able to fill out a form online yesterday (http://goo.gl/Quzpgh) you might want to try. It was easy and it works for me.

129. wohnzimmer einrichten ikea - August 2, 2014

I was pretty pleased to find this website. I
wanted to thank you for ones time just for this wonderful read!!

I definitely savored every little bit of it and I have you book-marked to look at new things on your blog.

130. more length and girth - August 19, 2014

Whatt i don’t realize is actually how you’re now not actually much more well-preferred than you may be now.
You are vedy intelligent. You understand therefore considerably with regardxs to this subject, produced me individually imagine it from a lot of various angles.
Its like men and women don’t seem to be involved unless it iss one thing to do with Girl gaga!
Your own stuffs great. Always deal with it up!

131. jual hijab online - August 26, 2014

what if using CLI with ubuntu server?

132. referat nasza galaktyka i inne galaktyki - September 26, 2014

My family members always say that I am killing my time here at web, but I know I am
getting know-how every day by reading thes pleasant articles or
reviews.

133. Bogowie zobacz online za darmo 2014 - November 21, 2014

Marvelous, what a web site it is! This weblog presents useful facts to us, keep it up.

134. دانلود فیلم - December 12, 2014

very good

135. jpg to pdf en ubuntu - January 27, 2015

[…] in CUPS version 1.2 (which is used in UBUNTU 6.06 dapper drake). It says on the amove … Download Print to PDF using cups-pdf | Ubuntu Blog | […]

136. Jaqueline Gregor - January 29, 2015

Faraday muses in some detail about what a connection between gravity and electricity would look like: In searching for some principle on which an experimental inquiry after the identification or relation of the two forces could be founded Jesse

137. Brenna - February 15, 2015

Want to copy posts from other sources rewrite them in seconds and
post on your site, or use for contextual backlinks? You can save a lot of writing work, just search in gogle:
Daradess’s Rewriter

138. Web site - August 1, 2015

Excellent blog you’ve got here.. It’s difficult
to find good quality writing like yours these days.

I seriously appreciate individuals like you! Take care!!

139. web design magazine - September 18, 2015

Having read this I believed it was very informative.
I appreciate you taking the time and energy to put this content together.
I once again find myself spending a lot of time both reading and commenting.
But so what, it was still worth it!

140. sebab ginjal bengkak - October 8, 2015

Yes! Finally something about jeligamat.

141. personality - October 11, 2015

There’s definately a great deal to learn about this
topic. I like all of the points you made.


Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: