1
0
mirror of https://github.com/ciromattia/kcc synced 2026-02-15 00:31:37 +00:00

Moving the MOBI conversion issue to the FAQ section and improving the Flatpak installation guides

Carlos Ferreira
2025-01-14 22:54:31 -03:00
parent ad0f6a4e74
commit f0ad3e4c66

@@ -1,3 +1,4 @@
## 7-Zip
This is an optional requirement as of KCC 6.1.0. You only need to install it if 1) are using Windows 10 (2017) or earlier, 2) need to use an older KCC version, 3) you are using metadata editor, or 4) you are using particular problematic files, usually rar or cbr.
@@ -37,11 +38,23 @@ You can find `kindlegen.exe` by:
5) Copy `kindlegen.exe` next to `KCC.exe`
### Linux
For [flatpak](https://flathub.org/apps/io.github.ciromattia.kcc) version, download `kindlegen_linux_2.6_i386_v2.9` and move the executable `kindlegen` to `~/.var/app/io.github.ciromattia.kcc/data/`
For [Flatpak](https://flathub.org/apps/io.github.ciromattia.kcc) version, download `kindlegen_linux_2.6_i386_v2.9` and move the executable `kindlegen` to `~/.var/app/io.github.ciromattia.kcc/data/`:
**If MOBI conversion gets stuck please use flatseal and add host filesystem permission.**
```bash
$ wget https://archive.org/download/kindlegen_linux_2_6_i386_v2_9/kindlegen_linux_2.6_i386_v2_9.tar.gz | tar xvzf kindlegen
```
```bash
$ cp -R kindlegen ~/.var/app/io.github.ciromattia.kcc/data/ && sudo chmod a+x ~/.var/app/io.github.ciromattia.kcc/data/kindlegen
```
For AppImage place `kindlegen` in `/usr/local/bin` or `~/.local/bin`.
For **AppImage** place `kindlegen` in `/usr/local/bin` or `~/.local/bin`:
```bash
$ wget https://archive.org/download/kindlegen_linux_2_6_i386_v2_9/kindlegen_linux_2.6_i386_v2_9.tar.gz | tar xvzf kindlegen
```
```bash
$ sudo cp -R kindlegen /usr/local/bin && sudo chmod a+x /usr/local/bin/kindlegen
```
## DOWNLOADS
You can find the latest binary at the following link:
@@ -94,7 +107,19 @@ $ sudo apt-get install qt5dxcb-plugin
```
### FLATPAK
to use `kcc-c2e` or `kcc-c2p`, use this command
Install KCC from flathub: https://flathub.org/apps/details/io.github.ciromattia.kcc
After installation, download `kindlegen` and move the executable to `~/.var/app/io.github.ciromattia.kcc/data/`:
```bash
$ wget https://archive.org/download/kindlegen_linux_2_6_i386_v2_9/kindlegen_linux_2.6_i386_v2_9.tar.gz | tar xvzf kindlegen
```
```bash
$ cp -R kindlegen ~/.var/app/io.github.ciromattia.kcc/data/ && sudo chmod a+x ~/.var/app/io.github.ciromattia.kcc/data/kindlegen
```
To use `kcc-c2e` or `kcc-c2p`, use this command
```bash