Calibre: Difference between revisions
mNo edit summary Tag: visualeditor |
No edit summary |
||
(5 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
Create groups and users for Calibre | Create groups and users for Calibre | ||
< | <syntaxhighlight lang="bash"> | ||
# groupadd -g 4101 calibre | # groupadd -g 4101 calibre | ||
# useradd -g calibre -M -r -u 4101 -s /bin/bash calibre | # useradd -g calibre -M -r -u 4101 -s /bin/bash calibre | ||
</ | </syntaxhighlight> | ||
Manager users | |||
<syntaxhighlight lang="bash"> | |||
$ calibre-server --manage-users | |||
</syntaxhighlight>Add a book to existing library (-a author -i ISBN -l language -S seriesnumber -t title)<syntaxhighlight lang="bash"> | |||
$ calibredb add --with-library http://localhost:8080#korean -a 공자 -i 9788997876068 -l ko -S 1 -t 한글논어 --username cj --password mypasswordhere "Korean/01.한글논어.pdf" | |||
</syntaxhighlight> | |||
== References == | |||
[https://www.digitalocean.com/community/tutorials/how-to-create-a-calibre-ebook-server-on-ubuntu-20-04 How To Create a calibre Ebook Server on Ubuntu 20.04 | DigitalOcean] |
Latest revision as of 07:49, 31 August 2023
Create groups and users for Calibre
# groupadd -g 4101 calibre
# useradd -g calibre -M -r -u 4101 -s /bin/bash calibre
Manager users
$ calibre-server --manage-users
Add a book to existing library (-a author -i ISBN -l language -S seriesnumber -t title)
$ calibredb add --with-library http://localhost:8080#korean -a 공자 -i 9788997876068 -l ko -S 1 -t 한글논어 --username cj --password mypasswordhere "Korean/01.한글논어.pdf"
References
How To Create a calibre Ebook Server on Ubuntu 20.04 | DigitalOcean