Skip to main content

File converters

Updated Nov 02, 2024 ·

epub to pdf

I installed calibre on WSL2 on my Windows 10 machine.

sudo apt-get install -y calibre 

To convert epub to pdf:

ebook-convert file.epub file.pdf --enable-heuristics 

Notes:

  • There might be issue on th eimages, especially the cover or front page of the book after conversion

Other options:

  • pandoc:

    sudo apt install pandoc
    pandoc -f epub -t pdf infile.epub -o outfile.pdf
  • epub2pdf

    • Download zip file from SOFTPEDIA

    • Unzip and make it executable

      chmod +x ./epub2pdf.sh 
    • Run the file:

      ./epub2pdf.sh <path-to-epub-file> 

File readers