cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Announcements
Want to learn some quick and useful tips to make your day easier? Check out how Calvin uses Replay to get feedback from other teams at Dropbox here.

View, download, and export

Need support with viewing, downloading, and exporting files and folders from your Dropbox account? Find help from the Dropbox Community.

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Syncing is stuck on my Linux devices, what can I do?

Syncing is stuck on my Linux devices, what can I do?

holf
Helpful | Level 6
Go to solution

It seems I have the same problem as mentioned in above posts. I am running Dropbox on a pc and laptop, both having Linux-Lubuntu as the os. After a "one time update" on both systems, Dropbox is stuck indexing/uploading/downloading a small number of files. In addition, I noticed that when I rename a file on my hard disk, the name of that file is not always changed in the cloud. I tried the two fix options and did a complete reinstall of the dropbox client, but no success. I would appreciate any help.

1 Accepted Solution

Accepted Solutions

Здравко
Legendary | Level 20
Go to solution

Hi @holf,

At the beginning you can try fix possible permission errors:

sudo chown -R "$USER" "$HOME/Dropbox"
sudo chattr -R -i "$HOME/Dropbox"
chmod -R u+rw ~/Dropbox

Also, existing symbolic links could be found using:

ls -alR ~/Dropbox | grep " -> "

If no any change, check the needs for watchable entries:

i=0; IFS=$'\n'; for a in `ls -R1 ~/Dropbox`; do ((++i)); done; echo $i

The above will give you some estimation. The current upper border could be received using:

sysctl fs.inotify.max_user_watches

If the estimation above don't fit in last result, try extend the border using something like:

sudo sysctl -w fs.inotify.max_user_watches=100000

Tune the value according your needs (with some reserve, of course).

If nothing helps yet, try to find out the exact files making troubles (which will give you chance investigate further), using something like:

(IFS=$'\n';for i in `ls -R1 ~/Dropbox`; do if [[ "$i" =~ ":" ]]; then cd `echo "$i" | sed "y/:/\//"`; echo -n "In folder: "; pwd; dropbox filestatus; fi; done) | grep -vi "up to date" | grep -vi ".dropbox:" | grep -vi ".dropbox.cache:"

Last command assume you have installed properly 'dropbox' command, either using debian package or by hand. Otherwise "command not found" will be signaled. Will be enumerated all folders in Dropbox and signaled problematic files inside, if any. Be patient, could take some time, depending on your content size. Once found out problematic entries, you can use different techniques for investigate, like see current file's classic attributes (the simplest one):

ls -l ~/Dropbox/Troublesome/file.ext

Good luck. :wink:

View solution in original post

53 Replies 53

Daphne
Dropbox Staff
Go to solution

Hi there @holf, thanks for reaching out to us here on the Community!

I've moved your post to it's own thread as you're currently using a different OS (Linux rather than Windows) to those on the thread you originally posted in here.

I'd love to troubleshoot with you and keep this separate to avoid any confusion. 

Since you've already tried a few steps, could you let me know if you currently have any symlinks within your Dropbox folder? You can use the steps here in point 7 to check.

If you are, could you try moving them outside the Dropbox folder or replacing them with the actual file to see if that helps syncing to progress?

Let me know what you find and we'll go from there!


Daphne
Community Moderator @ Dropbox
dropbox.com/support


Heart Did this post help you? If so, please give it a Like below.
:arrows_counterclockwise: Still stuck? Ask me a question!
:pushpin: Tips & Tricks Find new ways to stay in flow or share your tips on how you work smarter with Dropbox.

holf
Helpful | Level 6
Go to solution

Thank you. I will try out your suggestions and have a look at the other thread.

Здравко
Legendary | Level 20
Go to solution

Hi @holf,

At the beginning you can try fix possible permission errors:

sudo chown -R "$USER" "$HOME/Dropbox"
sudo chattr -R -i "$HOME/Dropbox"
chmod -R u+rw ~/Dropbox

Also, existing symbolic links could be found using:

ls -alR ~/Dropbox | grep " -> "

If no any change, check the needs for watchable entries:

i=0; IFS=$'\n'; for a in `ls -R1 ~/Dropbox`; do ((++i)); done; echo $i

The above will give you some estimation. The current upper border could be received using:

sysctl fs.inotify.max_user_watches

If the estimation above don't fit in last result, try extend the border using something like:

sudo sysctl -w fs.inotify.max_user_watches=100000

Tune the value according your needs (with some reserve, of course).

If nothing helps yet, try to find out the exact files making troubles (which will give you chance investigate further), using something like:

(IFS=$'\n';for i in `ls -R1 ~/Dropbox`; do if [[ "$i" =~ ":" ]]; then cd `echo "$i" | sed "y/:/\//"`; echo -n "In folder: "; pwd; dropbox filestatus; fi; done) | grep -vi "up to date" | grep -vi ".dropbox:" | grep -vi ".dropbox.cache:"

Last command assume you have installed properly 'dropbox' command, either using debian package or by hand. Otherwise "command not found" will be signaled. Will be enumerated all folders in Dropbox and signaled problematic files inside, if any. Be patient, could take some time, depending on your content size. Once found out problematic entries, you can use different techniques for investigate, like see current file's classic attributes (the simplest one):

ls -l ~/Dropbox/Troublesome/file.ext

Good luck. :wink:

Здравко
Legendary | Level 20
Go to solution

Hi @holf,

I have try putting some guides here, but seems Dropbox forum don't like my post. Let's hope @Daphne will get my post out from the trash.

Walter
Dropbox Staff
Go to solution

Thanks for reporting this @Здравко!

As @Daphne just got out of the office, I went ahead and fished your comment out of the Community's spam folder.

As mentioned in the past, this was probably caught due ot its lenght and/or for containing code blocks and commands.

In any case, I hope this help and see you around the Community!

@holf: I hope @Здравко's suggestions help with the issue you've reported so please keep us posted on your findings! 


Walter
Community Moderator @ Dropbox
dropbox.com/support


Heart Did this post help you? If so, give it a Like below to let us know.
:arrows_counterclockwise: Need help with something else? Ask me a question!
:pushpin: Find Tips & Tricks Discover more ways to use Dropbox here!
:arrows_counterclockwise: Interested in Community Groups? Click here to join

holf
Helpful | Level 6
Go to solution

Hi

 
 
I've gone through your suggestions one by one and the one where a list of troublesome folders/files is generated eventually allowed me to solve the problem.
I have a folder in which I keep setup files of some specific programs (e.g.,  windows programs for communication with dataloggers; I run these in virtualbox) in case I need to reinstall the operating system. That folder was marked as "unsyncable" and removing it from Dropbox solved the problem. It has always been in Dropbox without a problem, but apparantly became "unsyncable" after the recent update.
I will try to find out which files are causing the problems.
 Thank you very much for your help.

draylson
Helpful | Level 5
Go to solution
Hi,
 
I was having a similar problem and the @Здравко's solutions worked temporarily for me. When I restarted my computer the problem started again.
 
While I was waiting for a proper solution by Dropbox support, I've been studying the @Здравко's solutions and I found out the command below is the one which worked temporarily:
sudo sysctl -w fs.inotify.max_user_watches=100000
 
Then, I found out more information about this fs.inotify.max_user_watches property at the following address:
 
According to the instructions in the page, the above command, in fact, sets the property temporarily. In order to get it permanently, the commands would be:
sudo sysctl fs.inotify.max_user_watches=100000
sudo sysctl -p
 
I tried them and Dropbox is working fine on my computer until now. Even if I restarted it.
 
In summary, the problem is solved, but I'm really curious to know what exactly is this property and why Dropbox was not working fine until I set it with a higher number. Could someone explain to me?
 
Anyway, thank you very much for all attention and assistance.
 
Kind regards,
Draylson

jpaschoal
New member | Level 2
Go to solution

OMG you are a legend, in my case what solved was raising that "max_user_watches" limit.
I also managed to make it persistent using draylson's instructions.

I was struggling with this problem for ages, thank you very much!

ipejasinovic
New member | Level 2
Go to solution

I've suffered same issue, when I upgraded my Ubuntu to latest version few days ago. Changing max_user_watches solved problem. Thanks guys.

Need more support?
Who's talking

Top contributors to this post

  • User avatar
    Здравко Legendary | Level 20
  • User avatar
    silvacarl Explorer | Level 4
What do Dropbox user levels mean?