Convert PDF to JPEG on Linux

There is a small tool called Imagemagick that helps to convert PDF file into JPEG. Just install it:

# aptitude update
# aptitude install imagemagick

Then run the command "convert":

$ convert abc.pdf abc.jpg

That's it. Very simple.