967 B
967 B
title, description, published, date, tags, editor, dateCreated
| title | description | published | date | tags | editor | dateCreated |
|---|---|---|---|---|---|---|
| Calibre | Calibre server setup | true | 2024-12-22T11:03:46.862Z | calibre | markdown | 2024-12-22T10:55:43.183Z |
Calibre
Calibre is a ebook managment system. The Calibre library needed for the calibre instance is located in the external ssd * /Calibre The ebook files are located at * /eBooks
Installation
Installed through pacman
sudo pacman -S calibre
Created the calibre library and add the eBooks folder to it
calibredb add --with-library /home/lukas/Drive/Calibre -r /home/lukas/Drive/eBooks
systemd configuration
The systemd config file for the instance
[Unit]
Description=Calibre Server
After=network.target
[Service]
Type=simple
ExecStart=/usr/bin/calibre-server --port=8180 --enable-local-write /home/lukas/Drive/Calibre
Restart=on-failure
WorkingDirectory=/home/lukas/Drive/Calibre
[Install]
WantedBy=multi-user.target