mint-dropbox is broken - I have the fix!

Questions about applications and software
Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
anderigs
Level 2
Level 2
Posts: 71
Joined: Mon Dec 28, 2009 5:54 am

mint-dropbox is broken - I have the fix!

Post by anderigs »

Hi
I just started messing around with mint-dropbox (like the idea of dumping my nautilus/nautilus-dropbox dependencies).
But there is a bug in mint-dropbox whereby it tries to keep downloading the 64bit version of the dropbox daemon. I took a look into /usr/bin/dropbox script and just found the problem (missing spaces!!!!):
was:
if [ "$ARCH"="x86_64" ] ...
should be:
if [ "$ARCH" = "x86_64" ] ...
Is this enough to register it here or where do I register bugs?
With this simple hack the mint-dropbox seems to be working.
The only things I see missing from the thunar+mint-dropbox combination compared to nautilus+nautilus-dropbox version are:
- right click and the context submenu for dropbox - here I only miss the public link as this was the only one I used
- the little mini-icon to show synchronisation status at file level (the tray icon shows the complete status).
If anybody knows how to get these working (if at all possible) would love to hear from you!
Cheers
andE
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
anderigs
Level 2
Level 2
Posts: 71
Joined: Mon Dec 28, 2009 5:54 am

Re: mint-dropbox is broken - I have the fix!

Post by anderigs »

Hi
my questions at the end are answered (but I still wanna know how to register a bug!):
- perfect plugin for Thunar now available at:
http://www.softwarebakery.com/maato/thunar-dropbox.html
This adds all context menus for Dropbox as in nautilus and Windows.
So the only thing missing now is the little tick or syncing sign when a file is being up-/down-loaded.
Cheers,
andE
Check out all dropbox addons at:
http://wiki.dropbox.com/DropboxAddons
Kendall

Re: mint-dropbox is broken - I have the fix!

Post by Kendall »

Noted and I'll be updating the package with your fix, pending a bit of internal testing. Thanks.
mailman1175

Re: mint-dropbox is broken - I have the fix!

Post by mailman1175 »

Any progress on this? I've seen your post that said you fixed it, but the install script still has the same errors, it still fails to install, and I can't seem to get the fix above to work properly...
outdoor_ed

Re: mint-dropbox is broken - I have the fix!

Post by outdoor_ed »

Hi

Just to confirm I installed the mint version yesterday and the bug is still there. We spotted the error before finding this post, but attach the .diff again just in case.

Cheers

Ed

--- /tmp/dropbox 2010-10-22 23:34:27.873073975 +0100
+++ /usr/bin/dropbox 2010-10-22 23:31:44.571893477 +0100
@@ -7,9 +7,9 @@
(
cd
echo "15"
- if [ "$ARCH"="x86_64" ]; then
+ if [ "$ARCH" = "x86_64" ]; then
wget -O dropbox.tar.gz http://www.getdropbox.com/download?plat=lnx.x86_64 ;
- elif [ "$ARCH"="i686" ]; then
+ elif [ "$ARCH" = "i686" ]; then
wget -O dropbox.tar.gz http://www.getdropbox.com/download?plat=lnx.x86 ;
else
zenity --error --text "Unable to determine architecture."
rekik

Re: mint-dropbox is broken - I have the fix!

Post by rekik »

Thanks anderix for the tips :D
yerc

Re: mint-dropbox is broken - I have the fix!

Post by yerc »

outdoor_ed wrote: Just to confirm I installed the mint version yesterday and the bug is still there. We spotted the error before finding this post, but attach the .diff again just in case.
I installed the mint-dropbox package via Software Manager with no error message.
But dropbox won't run either from the menu or from the command line.

The fix for me was to download "dropbox-lnx.x86-1.2.0.tar.gz" from http://dl-web.dropbox.com/u/17/.
I then used it to replace ~/.dropbox-dist.

Hope someone would find this helpful. :D
Locked

Return to “Software & Applications”