Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Calibre

Notices

Reply
 
Thread Tools Search this Thread
Old 07-22-2009, 09:56 AM   #16
kovidgoyal
creator of calibre
kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.
 
kovidgoyal's Avatar
 
Posts: 43,905
Karma: 22666668
Join Date: Oct 2006
Location: Mumbai, India
Device: Various
Patches are welcome And I can either spend my time developing calibre or developing installation packages for the half a hundred linux distributions out there. Linux distributors, by failing to co-operate with each other on packaging have created an impossible situation for application developers. They (and unfortunately linux users) are going to have to live with the consequences.

As it is, for those distributions where people have stepped up and made packages, I am happy to link to them on the linux download page. I lack the time (or the motivation) to do more than that.

Quote:
Originally Posted by MarioE View Post
This would be valid if you provided just source. I have no problem building and installing from source. But you also provide your OWN installation format, the binary installer. If you provide your own specific format for installation, that format should ideally also support removal.

At the very least, why don't you just state on the download page that the binary installer will require manual removal?

As for the community packaging it for you, I will probably do this, although your pugnacious tone is no real motivation. Did you approach any users in your community about being package maintainers for their distributions?
kovidgoyal is online now   Reply With Quote
Old 07-29-2009, 04:27 AM   #17
dedo
Enthusiast
dedo doesn't litterdedo doesn't litter
 
dedo's Avatar
 
Posts: 45
Karma: 198
Join Date: May 2007
Location: Italy
Device: iRex DR800
Uninstalling calibre on Linux

For me on Ubuntu 8.04 this worked:

Code:
for i in $(cat /opt/calibre/manifest); do sudo rm "/usr/bin/$i"; done
sudo rm -rf /opt/calibre/
rm -rf ~/.config/calibre/
sudo updatedb
for i in $(locate calibre); do sudo rm -i "$i"; done

Last edited by dedo; 07-29-2009 at 06:20 AM.
dedo is offline   Reply With Quote
Advert
Old 07-29-2009, 06:07 AM   #18
Jellby
frumious Bandersnatch
Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.
 
Jellby's Avatar
 
Posts: 7,516
Karma: 18512745
Join Date: Jan 2008
Location: Spaniard in Sweden
Device: Cybook Orizon, Kobo Aura
Quote:
for i in $(locate calibre); do sudo rm "$i"; done
I would't do that last line automatically, or anything including "calibre" in its name will be removed from your system, including "informaticalibre", "calibre-backup", etc.
Jellby is offline   Reply With Quote
Old 07-29-2009, 06:18 AM   #19
dedo
Enthusiast
dedo doesn't litterdedo doesn't litter
 
dedo's Avatar
 
Posts: 45
Karma: 198
Join Date: May 2007
Location: Italy
Device: iRex DR800
Just check "locate calibre" before running it. I had nothing named *calibre* but calibre files indeed.

Edit: I added -i option to rm, so you can check before deletion.

Last edited by dedo; 07-29-2009 at 06:22 AM.
dedo is offline   Reply With Quote
Old 08-16-2009, 05:33 PM   #20
egret17
Junior Member
egret17 began at the beginning.
 
egret17's Avatar
 
Posts: 6
Karma: 10
Join Date: Apr 2009
Location: Minneapolis MN
Device: Astak EZ Reader
Last week I successfully installed calibre using the binary installer (Dell Mini 9 running Hardy). I just rebuilt the Dell from the restore cd and now do not seem to be able to install calibre using the binary installer. This is the error it throws:

Extracting files to /usr/bin/calibre ...
Extracting application files...
Creating symlinks...
Symlinking /usr/bin/calibre/fetch-ebook-metadata to /usr/bin/fetch-ebook-metadata
Symlinking /usr/bin/calibre/calibre-complete to /usr/bin/calibre-complete
Symlinking /usr/bin/calibre/lrf2lrs to /usr/bin/lrf2lrs
Symlinking /usr/bin/calibre/ebook-convert to /usr/bin/ebook-convert
Symlinking /usr/bin/calibre/pdfmanipulate to /usr/bin/pdfmanipulate
Symlinking /usr/bin/calibre/lrfviewer to /usr/bin/lrfviewer
Symlinking /usr/bin/calibre/ebook-meta to /usr/bin/ebook-meta
Symlinking /usr/bin/calibre/markdown-calibre to /usr/bin/markdown-calibre
Traceback (most recent call last):
File "/tmp/init.py", line 45, in <module>
File "/home/kovid/work/calibre/src/calibre/linux.py", line 348, in binary_install
OSError: [Errno 21] Is a directory: '/usr/bin/calibre'

Any idea what's wrong? Thanks.
egret17 is offline   Reply With Quote
Advert
Old 08-16-2009, 05:41 PM   #21
kovidgoyal
creator of calibre
kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.
 
kovidgoyal's Avatar
 
Posts: 43,905
Karma: 22666668
Join Date: Oct 2006
Location: Mumbai, India
Device: Various
sudo rm /usr/bin/calibre

and do that for every file it throws an error for
kovidgoyal is online now   Reply With Quote
Old 08-16-2009, 05:46 PM   #22
egret17
Junior Member
egret17 began at the beginning.
 
egret17's Avatar
 
Posts: 6
Karma: 10
Join Date: Apr 2009
Location: Minneapolis MN
Device: Astak EZ Reader
Quote:
Originally Posted by kovidgoyal View Post
sudo rm /usr/bin/calibre

and do that for every file it throws an error for
That's actually a directory - are you saying I should sudo rm -rf this directory?

Was the actual problem that I chose /usr/bin/calibre as the install directory when asked to choose a directory? Can't remember which directory I chose last week when it worked...

Thanks! I love using calibre on my Windows Vista box and am hoping to get it going on the Linux box...
egret17 is offline   Reply With Quote
Old 08-16-2009, 05:56 PM   #23
kovidgoyal
creator of calibre
kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.
 
kovidgoyal's Avatar
 
Posts: 43,905
Karma: 22666668
Join Date: Oct 2006
Location: Mumbai, India
Device: Various
Yes delete it. And don't choose to install things under /usr/bin it's bad practice no linux, choose either /opt or /usr/local
kovidgoyal is online now   Reply With Quote
Old 01-09-2010, 10:39 AM   #24
GrAfFiT
Junior Member
GrAfFiT began at the beginning.
 
GrAfFiT's Avatar
 
Posts: 3
Karma: 10
Join Date: Mar 2005
Device: Google Nexus One
For the benefit of the others, here's is the complete list of files and directories installed by calibre 0.6.32 with the binary installer found using a chroot setup:

Code:
/etc/bash_completion.d/calibre
/lib/udev/rules.d/95-calibre.rules
/opt/calibre/*
/opt/calibre
/usr/share/calibre/*
/usr/share/calibre
/usr/bin/ebook-device
/usr/bin/ebook-viewer
/usr/bin/markdown-calibre
/usr/bin/calibredb
/usr/bin/calibre-uninstall
/usr/bin/librarything
/usr/bin/calibre-debug
/usr/bin/ebook-convert
/usr/bin/fetch-ebook-metadata
/usr/bin/lrf2lrs
/usr/bin/calibre-smtp
/usr/bin/calibre-server
/usr/bin/ebook-meta
/usr/bin/calibre-customize
/usr/bin/calibre-parallel
/usr/bin/lrs2lrf
/usr/bin/lrfviewer
/usr/bin/web2disk
/usr/bin/pdfmanipulate
/usr/bin/calibre
/usr/local/share/applications/calibre-ebook-viewer.desktop
/usr/local/share/applications/defaults.list
/usr/local/share/applications/calibre-gui.desktop
/usr/local/share/applications/calibre-lrfviewer.desktop
/usr/local/share/mime/packages/calibre-mimetypes
/usr/local/share/icons/hicolor/128x128/mimetypes/gnome-mime-application-lrf.png
/usr/local/share/icons/hicolor/128x128/mimetypes/gnome-mime-text-lrs.png
/usr/local/share/icons/hicolor/128x128/mimetypes/application-lrf.png
/usr/local/share/icons/hicolor/128x128/mimetypes/text-lrs.png
/usr/local/share/icons/hicolor/128x128/apps/calibre-gui.png
/usr/local/share/icons/hicolor/128x128/apps/calibre-viewer.png
They can all be safely deleted.
GrAfFiT is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Uninstall problem? Stinger Sigil 1 06-22-2010 07:28 PM
uninstall MAS100 Calibre 4 12-19-2009 01:58 PM
Hacks Can't Uninstall UFHack tolovana Amazon Kindle 1 11-27-2009 01:29 AM
Uninstall Calibre jamesj350 Calibre 0 04-12-2009 12:13 PM
How to uninstall unbrickable ragdoll iRex 2 01-22-2008 03:20 PM


All times are GMT -4. The time now is 11:17 PM.


MobileRead.com is a privately owned, operated and funded community.