Calibre: Difference between revisions

From Han Wiki
Jump to navigation Jump to search
mNo edit summary
Tag: visualeditor
No edit summary
 
Line 1: Line 1:
Create groups and users for Calibre
Create groups and users for Calibre


<source lang="bash">
<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
</source>
</syntaxhighlight>


Manager users
Manager users


<source lang="bash">
<syntaxhighlight lang="bash">
$ calibre-server --manage-users
$ calibre-server --manage-users
</source>Add a book to existing library (-a author -i ISBN -l language -S seriesnumber -t title)<source lang="bash">
</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"
$ calibredb add --with-library http://localhost:8080#korean -a 공자 -i 9788997876068 -l ko -S 1 -t 한글논어 --username cj --password mypasswordhere "Korean/01.한글논어.pdf"
</source>
</syntaxhighlight>


== References ==
== 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]
[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 08: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