Calibre gui configuration: Difference between revisions

From wikinotes
No edit summary
 
(One intermediate revision by the same user not shown)
Line 3: Line 3:
<blockquote>
<blockquote>
Sharing a library (ex: NFS) isn't officially supported.<br>
Sharing a library (ex: NFS) isn't officially supported.<br>
Use the calibre web server instead.
You used to be able to mount it like this:


http://james.jamesandkristin.net/2012/04/22/accessing-your-ebook-collection-managed-by-calibre-without-calibre-server
You used to be able to work around it, and mount it like this.
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
//192.168.1.111/books  /mnt/books  cifs auto,_netdev,users,nobrl,dir_mode=0777,file_mode=0664,gid=smbshare,x-systemd.automount 0 0
//192.168.1.111/books  \
  /mnt/books  cifs     \
  auto,_netdev,users,nobrl,dir_mode=0777,file_mode=0664,gid=smbshare,x-systemd.automount \
  0 0
</syntaxhighlight>
</syntaxhighlight>
</blockquote><!-- Sharing Library -->
</blockquote><!-- Sharing Library -->

Latest revision as of 01:24, 9 September 2021

Sharing Library

Sharing a library (ex: NFS) isn't officially supported.
You used to be able to mount it like this:

//192.168.1.111/books  \
  /mnt/books  cifs     \
  auto,_netdev,users,nobrl,dir_mode=0777,file_mode=0664,gid=smbshare,x-systemd.automount \
  0 0