How do I convert epub to mobi using calibre?

56,320

Solution 1

Yes, Calibre package contains a script called ebook-convert to convert ebooks between formats. You can install Calibre with

sudo apt-get install calibre

then

ebook-convert "book.epub" "book.mobi"

NB: Other formats are supported, too:

ebook-convert "book.azw3" "book.pdf"

Solution 2

I found a script for batch conversion:

for book in *.epub; do echo "Converting $book"; ebook-convert "$book" "$(basename "$book" .epub).mobi"; done

It works good for me, but the process is pretty slow.

Solution 3

Install calibre. Works with any arbitrary folder depth.

find . -name '*.epub' -type f -exec bash -c 'ebook-convert "$0" "${0%.epub}.mobi" --prefer-author-sort --output-profile=kindle --linearize-tables --smarten-punctuation --enable-heuristics' {} \;

Solution 4

You can also do this without installing Calibre. This would be really handy on a Chromebook, for example. There is a free, online site called EPUB Converter that will let you upload the epub and it lets you then download the mobi equivalent.

Solution 5

Yes, you can use Calibre for epub to mobi conversion. They declare mobi as supported output format in their FAQ.

I don’t think there’s anything Ubuntu-specific in the question, so it would probably belong somewhere else.

Share:
56,320

Related videos on Youtube

Nickolai Leschov
Author by

Nickolai Leschov

Updated on September 18, 2022

Comments

  • Nickolai Leschov
    Nickolai Leschov almost 2 years

    How do I convert epub to mobi using Calibre for this?

  • m0j0
    m0j0 over 9 years
    I think this question is relevant because I wasn't aware that Calibre was available for Ubuntu. For some reason I thought it was like Scrivener and Windows/Mac only.
  • kjprice
    kjprice over 8 years
    FWIW, the quotes aren't strictly necessary.
  • Raymond Yee
    Raymond Yee over 8 years
    To get an epub->pdf conversion to run, I had to make have xvfb installed and then run the ebook-convert command using: xvfb-run ebook-convert book.epub book.pdf