- Go to “HP Linux Imaging and Printing” project in SourceForge.net http://sourceforge.net/projects/hplip/
- Download the latest .tar.gz file
-
Follow the instruction given here http://hplipopensource.com/hplip-web/install/install/index.html
to install
Archive for April, 2011
Making HP Deskjet 1050 All-in-One printer to work in Ubuntu 10.10
April 26, 2011Installing Kindle For PC on Ubuntu 10.10 Maverick Meerkat
April 17, 2011I wanted to use Kindle For PC in Ubuntu 10.10 Maverick Meerkat using “Wine”, but got the below error while running install .exe
fixme:system:SetProcessDPIAware stub!
After some Google search, found that upgrading Wine to latest version “Wine 1.3″ will solve this problem.
Follow the steps given in this link to upgrade Wine to 1.3 – http://www.winehq.org/download/ubuntu
After that open Wine Configuration, and set Windows version to “Windows 98″ .
Now again run the Kindle installation exe to install and run Kindle without problems.
Ubuntu Linux command line tool to Convert PDF to Image and from Image to PDF
April 7, 2011To convert Convert PDF to Image and from Image to PDF, follow the below steps,
- Install ImageMagick – https://help.ubuntu.com/community/ImageMagick
- For PDF to Image, from linux shell, type command
convert abc.pdf abc.jpg - For Image to PDF, from linux shell, type command
convert *.jpg abc.pdf
Note- To get a higher quality image while converting from PDF to image, use options, like for example below
convert -quality 100 -density 600x600 multipage.pdf single%d.jpg
More about the options are available here -http://manpages.ubuntu.com/manpages/lucid/man1/convert.1.html