How to read cbr in linux?OCR on Linux systemsExport from KWD (old KWord/KOffice document format) to anything...
How do I tell my girlfriend she's been buying me books by the wrong author for the last nine months?
Checkmate in 1 on a Tangled Board
How can this fractal shape perfectly cover a certain platonic solid?
Why will we fail creating a self sustaining off world colony?
Does "boire un jus" tend to mean "coffee" or "juice of fruit"?
What is the meaning of "it" in "as luck would have it"?
Why should I allow multiple IP addresses on a website for a single session?
How useful would a hydroelectric power plant be in the post-apocalypse world?
Identifying positions of the last TRUEs in a sequence of TRUEs and FALSEs
iMac 2019: Can I mix the old modules with the new ones when upgrading RAM?
What's the point of stochastic volatiliy models if you can use local volatility?
Five 5-cent coins touching each other
"in 60 seconds or less" or "in 60 seconds or fewer"?
A quine of sorts
Two palindromes are not enough
Any Tips On Writing Extended Recollection In A Novel
Are you required to spend hit dice to take a short rest?
What was the point of separating stdout and stderr?
How to stop QGIS from looking for the wrong PostgreSQL host address in an existing workproject?
LaTeX Make Word Appear
Is it beneficial to use a crop sensor camera with a full frame telezoom?
Why didn't Caesar move against Sextus Pompey immediately after Munda?
What happens if a caster is surprised while casting a spell with a long casting time?
How to count the number of bytes in a file, grouping the same bytes?
How to read cbr in linux?
OCR on Linux systemsExport from KWD (old KWord/KOffice document format) to anything elseHow do I convert a '.pages' file to something unix-y?Is there a linux equivalent of the Mac OS X command “textutil”?How to split each page of a djvu file?Linux PPTX presentation ViewerHow to convert .txt or .html files to multipages .DOCX file?Linux Document ManagementSafely handling PDFs and other ebook formats on Linux
I tried mcomix to read .cbr but it says archive format not supported. Calibre isn't working either, any idea on how to open .cbr files under linux ?
documents cbr
bumped to the homepage by Community♦ 51 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I tried mcomix to read .cbr but it says archive format not supported. Calibre isn't working either, any idea on how to open .cbr files under linux ?
documents cbr
bumped to the homepage by Community♦ 51 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Does Okular/Evince work? Is the .cbr file a comic book? Some website online says calibre should be able to open that (linuxaria.com/recensioni/comic-book-viewers-for-linux)
– hamster on wheels
Sep 29 '16 at 18:58
Install libunrar and rar, mcomix should work and calibre is definitively not meant for reading comics.
– cylgalad
Sep 30 '16 at 7:33
add a comment |
I tried mcomix to read .cbr but it says archive format not supported. Calibre isn't working either, any idea on how to open .cbr files under linux ?
documents cbr
I tried mcomix to read .cbr but it says archive format not supported. Calibre isn't working either, any idea on how to open .cbr files under linux ?
documents cbr
documents cbr
edited Sep 29 '16 at 22:51
Gilles
561k134 gold badges1157 silver badges1663 bronze badges
561k134 gold badges1157 silver badges1663 bronze badges
asked Sep 29 '16 at 18:51
ChiseledAbsChiseledAbs
8993 gold badges14 silver badges34 bronze badges
8993 gold badges14 silver badges34 bronze badges
bumped to the homepage by Community♦ 51 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 51 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Does Okular/Evince work? Is the .cbr file a comic book? Some website online says calibre should be able to open that (linuxaria.com/recensioni/comic-book-viewers-for-linux)
– hamster on wheels
Sep 29 '16 at 18:58
Install libunrar and rar, mcomix should work and calibre is definitively not meant for reading comics.
– cylgalad
Sep 30 '16 at 7:33
add a comment |
Does Okular/Evince work? Is the .cbr file a comic book? Some website online says calibre should be able to open that (linuxaria.com/recensioni/comic-book-viewers-for-linux)
– hamster on wheels
Sep 29 '16 at 18:58
Install libunrar and rar, mcomix should work and calibre is definitively not meant for reading comics.
– cylgalad
Sep 30 '16 at 7:33
Does Okular/Evince work? Is the .cbr file a comic book? Some website online says calibre should be able to open that (linuxaria.com/recensioni/comic-book-viewers-for-linux)
– hamster on wheels
Sep 29 '16 at 18:58
Does Okular/Evince work? Is the .cbr file a comic book? Some website online says calibre should be able to open that (linuxaria.com/recensioni/comic-book-viewers-for-linux)
– hamster on wheels
Sep 29 '16 at 18:58
Install libunrar and rar, mcomix should work and calibre is definitively not meant for reading comics.
– cylgalad
Sep 30 '16 at 7:33
Install libunrar and rar, mcomix should work and calibre is definitively not meant for reading comics.
– cylgalad
Sep 30 '16 at 7:33
add a comment |
1 Answer
1
active
oldest
votes
On linux you can open CBR with evince
. But for a better experience portability PDF is recomanded. calibre
can convert it to pdf. Unfortunately calibre
changes the image, which is very important to CBR and CBZ, so to have minimal loss of quality, practically using the original jpg
inside the CBR(CBZ) you need to use img2pdf
, I use this commands:
First need to install this:
sudo apt install img2pdf p7zip-full
1) This to make a pdf
file out of every jpg
image without loss of either resolution or quality:
ls -1 ./*jpg | xargs -L1 -I {} img2pdf {} -o {}.pdf
2) This to concatenate the pdf
pages into one:
pdftk *.pdf cat output combined.pdf
I made this batch files (github here)
./cbr2pdf.sh:
#!/bin/bash
set -xev
ORIGINAL_FOLDER=`pwd`
JPEGS=`mktemp -d`
cp "$1" "$JPEGS"
cd "$JPEGS"
7z e "$1"
ls -1 ./*jpg | xargs -L1 -I {} img2pdf {} -o {}.pdf
pdftk *.pdf cat output combined.pdf
cp "$JPEGS/combined.pdf" "$ORIGINAL_FOLDER/$1.pdf"
cat cbz2pdf.sh
#!/bin/bash
#set -xev
ORIGINAL_FOLDER=`pwd`
JPEGS=`mktemp -d`
unzip "$1" -d "$JPEGS"
cd "$JPEGS"
ls -1 ./*jpg | xargs -L1 -I {} img2pdf {} -o {}.pdf
pdftk *.pdf cat output combined.pdf
cp "$JPEGS/combined.pdf" "$ORIGINAL_FOLDER/$1.pdf"
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f313258%2fhow-to-read-cbr-in-linux%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
On linux you can open CBR with evince
. But for a better experience portability PDF is recomanded. calibre
can convert it to pdf. Unfortunately calibre
changes the image, which is very important to CBR and CBZ, so to have minimal loss of quality, practically using the original jpg
inside the CBR(CBZ) you need to use img2pdf
, I use this commands:
First need to install this:
sudo apt install img2pdf p7zip-full
1) This to make a pdf
file out of every jpg
image without loss of either resolution or quality:
ls -1 ./*jpg | xargs -L1 -I {} img2pdf {} -o {}.pdf
2) This to concatenate the pdf
pages into one:
pdftk *.pdf cat output combined.pdf
I made this batch files (github here)
./cbr2pdf.sh:
#!/bin/bash
set -xev
ORIGINAL_FOLDER=`pwd`
JPEGS=`mktemp -d`
cp "$1" "$JPEGS"
cd "$JPEGS"
7z e "$1"
ls -1 ./*jpg | xargs -L1 -I {} img2pdf {} -o {}.pdf
pdftk *.pdf cat output combined.pdf
cp "$JPEGS/combined.pdf" "$ORIGINAL_FOLDER/$1.pdf"
cat cbz2pdf.sh
#!/bin/bash
#set -xev
ORIGINAL_FOLDER=`pwd`
JPEGS=`mktemp -d`
unzip "$1" -d "$JPEGS"
cd "$JPEGS"
ls -1 ./*jpg | xargs -L1 -I {} img2pdf {} -o {}.pdf
pdftk *.pdf cat output combined.pdf
cp "$JPEGS/combined.pdf" "$ORIGINAL_FOLDER/$1.pdf"
add a comment |
On linux you can open CBR with evince
. But for a better experience portability PDF is recomanded. calibre
can convert it to pdf. Unfortunately calibre
changes the image, which is very important to CBR and CBZ, so to have minimal loss of quality, practically using the original jpg
inside the CBR(CBZ) you need to use img2pdf
, I use this commands:
First need to install this:
sudo apt install img2pdf p7zip-full
1) This to make a pdf
file out of every jpg
image without loss of either resolution or quality:
ls -1 ./*jpg | xargs -L1 -I {} img2pdf {} -o {}.pdf
2) This to concatenate the pdf
pages into one:
pdftk *.pdf cat output combined.pdf
I made this batch files (github here)
./cbr2pdf.sh:
#!/bin/bash
set -xev
ORIGINAL_FOLDER=`pwd`
JPEGS=`mktemp -d`
cp "$1" "$JPEGS"
cd "$JPEGS"
7z e "$1"
ls -1 ./*jpg | xargs -L1 -I {} img2pdf {} -o {}.pdf
pdftk *.pdf cat output combined.pdf
cp "$JPEGS/combined.pdf" "$ORIGINAL_FOLDER/$1.pdf"
cat cbz2pdf.sh
#!/bin/bash
#set -xev
ORIGINAL_FOLDER=`pwd`
JPEGS=`mktemp -d`
unzip "$1" -d "$JPEGS"
cd "$JPEGS"
ls -1 ./*jpg | xargs -L1 -I {} img2pdf {} -o {}.pdf
pdftk *.pdf cat output combined.pdf
cp "$JPEGS/combined.pdf" "$ORIGINAL_FOLDER/$1.pdf"
add a comment |
On linux you can open CBR with evince
. But for a better experience portability PDF is recomanded. calibre
can convert it to pdf. Unfortunately calibre
changes the image, which is very important to CBR and CBZ, so to have minimal loss of quality, practically using the original jpg
inside the CBR(CBZ) you need to use img2pdf
, I use this commands:
First need to install this:
sudo apt install img2pdf p7zip-full
1) This to make a pdf
file out of every jpg
image without loss of either resolution or quality:
ls -1 ./*jpg | xargs -L1 -I {} img2pdf {} -o {}.pdf
2) This to concatenate the pdf
pages into one:
pdftk *.pdf cat output combined.pdf
I made this batch files (github here)
./cbr2pdf.sh:
#!/bin/bash
set -xev
ORIGINAL_FOLDER=`pwd`
JPEGS=`mktemp -d`
cp "$1" "$JPEGS"
cd "$JPEGS"
7z e "$1"
ls -1 ./*jpg | xargs -L1 -I {} img2pdf {} -o {}.pdf
pdftk *.pdf cat output combined.pdf
cp "$JPEGS/combined.pdf" "$ORIGINAL_FOLDER/$1.pdf"
cat cbz2pdf.sh
#!/bin/bash
#set -xev
ORIGINAL_FOLDER=`pwd`
JPEGS=`mktemp -d`
unzip "$1" -d "$JPEGS"
cd "$JPEGS"
ls -1 ./*jpg | xargs -L1 -I {} img2pdf {} -o {}.pdf
pdftk *.pdf cat output combined.pdf
cp "$JPEGS/combined.pdf" "$ORIGINAL_FOLDER/$1.pdf"
On linux you can open CBR with evince
. But for a better experience portability PDF is recomanded. calibre
can convert it to pdf. Unfortunately calibre
changes the image, which is very important to CBR and CBZ, so to have minimal loss of quality, practically using the original jpg
inside the CBR(CBZ) you need to use img2pdf
, I use this commands:
First need to install this:
sudo apt install img2pdf p7zip-full
1) This to make a pdf
file out of every jpg
image without loss of either resolution or quality:
ls -1 ./*jpg | xargs -L1 -I {} img2pdf {} -o {}.pdf
2) This to concatenate the pdf
pages into one:
pdftk *.pdf cat output combined.pdf
I made this batch files (github here)
./cbr2pdf.sh:
#!/bin/bash
set -xev
ORIGINAL_FOLDER=`pwd`
JPEGS=`mktemp -d`
cp "$1" "$JPEGS"
cd "$JPEGS"
7z e "$1"
ls -1 ./*jpg | xargs -L1 -I {} img2pdf {} -o {}.pdf
pdftk *.pdf cat output combined.pdf
cp "$JPEGS/combined.pdf" "$ORIGINAL_FOLDER/$1.pdf"
cat cbz2pdf.sh
#!/bin/bash
#set -xev
ORIGINAL_FOLDER=`pwd`
JPEGS=`mktemp -d`
unzip "$1" -d "$JPEGS"
cd "$JPEGS"
ls -1 ./*jpg | xargs -L1 -I {} img2pdf {} -o {}.pdf
pdftk *.pdf cat output combined.pdf
cp "$JPEGS/combined.pdf" "$ORIGINAL_FOLDER/$1.pdf"
edited Feb 5 at 9:33
answered Feb 13 '18 at 4:04
Eduard FlorinescuEduard Florinescu
3,74610 gold badges39 silver badges57 bronze badges
3,74610 gold badges39 silver badges57 bronze badges
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f313258%2fhow-to-read-cbr-in-linux%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Does Okular/Evince work? Is the .cbr file a comic book? Some website online says calibre should be able to open that (linuxaria.com/recensioni/comic-book-viewers-for-linux)
– hamster on wheels
Sep 29 '16 at 18:58
Install libunrar and rar, mcomix should work and calibre is definitively not meant for reading comics.
– cylgalad
Sep 30 '16 at 7:33